  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: 'Montserrat', sans-serif; /* or any preferred font */
    background-color: #ffffff;
    margin: 0;
  }

  /* Hero Container */
  .hero {
    display: flex;
    min-height: 90vh; /* Adjust as needed */
    background-color: #0E2F56; /* Navy/dark blue color */
    color: #fff;
  }

  /* Left side with text */
  .hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
    width: 70%;
  }

  .hero-left h1 {
    font-size: 4rem;
    font-family: "Playfair Display", serif;
    font-weight: bold;
    color: rgb(255, 255, 255);
    font-style: bold;
    margin-left: 5rem;
    margin-bottom: 0.5rem;
  }

  .hero-left p {
    font-family: "Montserrat", sans-serif;
    font-size: 1.4rem;
    margin-left: 5rem;
    color: rgb(255, 255, 255);
    margin-bottom: 1.5rem;
  }

  /* Contact Info (phone & email) */
  .contact-info {
    margin-left: 5rem;
    margin-top: 2rem;
    line-height: 2;
  }

  .contact-info .info-item {
    font-size: 1.2rem;
    font-family: "Montserrat", sans-serif;
    margin: 0.5rem 0;
  }

  /* Right side with image */
  .hero-right {
    flex: 1;
    background-color: #fff; /* White background behind the photo */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
  }

  .hero-right img {
    max-width: 70%;
    max-height: 100%;
    top: 6rem;
    height: auto;
    object-fit: cover;
  }

  @media (max-width: 480px) {

    .hero-left h1 {
      font-size: 1.8rem;
    }
    .hero-left p {
      font-size: 0.9rem;
    }
    .hero-right img {
      max-width: 90%;
    }
  }

  .hero-2 {
    /* Full‐screen background image */
    background: url('../img/switzerland.jpg') center center / cover no-repeat;
    position: relative;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center; /* Vertically center content */
    justify-content: center; /* Horizontally center content */
  }

  /* Dark translucent overlay occupying the entire hero */
  .overlay-2 {
    position: absolute;
    top: 0; 
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Adjust opacity as needed */
    z-index: 1;
  }

  /* Main content container, above the overlay */
  .content-2 {
    position: relative;
    font-family: "Montserrat", sans-serif;
    z-index: 2;                 /* Ensure text/form is above the overlay */
    max-width: 1200px;          /* Constrain overall width if desired */
    width: 100%;
    display: flex;
    flex-direction: column;     /* Stack items vertically */
    align-items: center;        /* Center horizontally */
    justify-content: center;    /* Center vertically */
    padding: 2rem;
    gap: 1.25rem;
  }

  /* Left content: Name, subheading, social icons */
  .intro-2 {
    flex: 1;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 250px; /* ensure some min width */
  }
  .intro-2 h1 {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 0.5rem;
  }
  .intro-2 p {
    font-size: 1.2rem;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 1rem;
    font-weight: 300;
  }

  .social-icons-2 {
    display: flex;
    gap: 1rem;
  }

  .social-icons-2--center {
    justify-content: center;
    width: 100%;
  }

  .social-icons-2 a img {
    width: 34px;
    height: 34px;
    display: block;
    border-radius: 6px;
  }

  /* Right content: The translucent form container */
  .form-container-2 {
    width: min(720px, 92%);
    background-color: rgba(23, 36, 66, 0.573); /* Green background */
    padding: 3rem;
    border-radius: 14px;
    font-family: "Montserrat", sans-serif;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
  }

  /* Form heading */
  .form-container-2 h2 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
  }

  /* Labels and inputs */
  .form-group-2 {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
  }
  .form-group-2 label {
    color: #fff;
    font-weight: 600;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
  }
  .form-group-2 input,
  .form-group-2 textarea {
    padding: 0.75rem;
    border: none;
    font-family: "Montserrat", sans-serif;
    font-size: 1rem;
    outline: none;
    border-radius: 3px;
    font-family: 'Montserrat', sans-serif;
    /* Light background for contrast on dark area */
    background-color: rgba(255, 255, 255, 0.9);
  }
  .form-group-2 textarea {
    resize: none;
    font-family: "Montserrat", sans-serif;
    min-height: 100px;
  }

  /* Submit button */
  .submit-btn-2 {
    background-color: #fff;
    color: #000;
    border: none;
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.2s ease;
    font-weight: 600;
  }
  .submit-btn-2:hover {
    background-color: #ddd;
  }

  /* The message area that shows success or error feedback */
  #my-form-status,
  #form-status {
    margin-top: 1rem;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
  }

  /* Responsiveness for smaller screens */
  @media (max-width: 768px) {
    .content {
      flex-direction: column;
      align-items: flex-start;
    }
    .intro h1 {
      font-size: 2.2rem;
    }
    .intro p {
      font-size: 1rem;
    }
    .form-container {
      max-width: 100%;
    }
  }


  .calendly-container {
    border: 8px solid #0c3a66; /* Thick blue border */
    padding: 1rem;            /* Spacing inside the border */
    background-color: #fff;   /* Optional background behind widget */
    margin-top: 2rem;
    border-radius: 0px;       /* Slightly rounded corners, optional */
  }

  .schedule-widget{
    font-family: "Montserrat", sans-serif;
    text-align: center;
    color: #000;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
