@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 30px;
    background: #fff;
  }

	.header-left {
	    font-family: "Montserrat", sans-serif;
	    font-weight: 700;
	    font-size: 40px;
	    color: #f4989c;
	}

  .header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .header-right a {
	 font-family: "Montserrat", sans-serif;
    text-decoration: none;
    font-size: 16px;
    color: #fff;
  }

  .header-right a:hover {
    color: #fff;
    text-decoration: none;
}

  .email {
    color: #f4989c;
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .email i {
    color: #ec008c;
    text-decoration: ;
  }

  .call-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .call-btn {
    padding: 8px 14px;
    border-radius: 3px;
    color: #fff;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
  }

  .call-btn i {
	    /*font-family: "Montserrat", sans-serif;*/
    font-size: 15px;
    color: #fff;
    text-decoration: none;
  }

  .blue {
    background: #6108B2;
  }

  .pink {
    background: #ec008c;
  }

@media only screen and (max-width:960px){

  	.header {
    justify-content: center;
}

}

  /* ✅ Mobile Responsive */
  @media (max-width: 768px) {
    .header {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 10px;
    }

    .header-right {
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }

    .call-buttons {
      justify-content: center;
    }

    .header-left {
      font-size: 22px;
    }
  }

  @media (max-width: 600px) {
    .header-left {
        font-size: 36px;
    }

    .email {
    display: block;
}

.header {
    padding: 15px 0px;
}

}