        /* Global styles */
        body {
            margin: 0;
            font-family: Arial, sans-serif;
            background-color: #FFFFFF;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        /* Header container */
        .header{
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 95%;
            max-width: 1200px;
            padding: 20px 5%;
            background-color: white;
        }

	.survey {
    	    display: block;
            justify-content: space-between;
            align-items: center;
            width: 95%;
            max-width: 1200px;
            padding: 20px 5%;
            background-color: white;
	}
        .logo img {
            height: 50px;
        }

        .nav {
            display: flex;
            gap: 25px;
            font-size: 18px;
            font-weight: bold;
            color: #004F5D;
        }
        .nav a {
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            color: #004F5D;
        }

        .nav a:hover {
            color: #008FA5;
        }

        /* Hero section */
        .hero {
            position: relative;
            width: 90%;
            max-width: 1200px;
            margin-top: 20px;
            border-radius: 20px;
            overflow: hidden;
        }

        .hero img {
            width: 100%;
            display: block;
            border-radius: 20px;
        }

.hero-content {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    color: white;
    padding: 2vw 4vw;
    border-radius: 10px;
    max-width: 80%;
    text-align: left;
}

        .hero-content h1 {
            font-size: 3vw;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .hero-content p {
            font-size: 1.5vw;
            margin-bottom: 15px;
        }


        /* Button styles */
        .survey-button {
            display: inline-block;
            width: 280px;
            height: 55px;
            background: url('images/State=Default.png') no-repeat center;
            background-size: contain;
            text-align: center;
            line-height: 55px;
            font-size: 18px;
            font-weight: bold;
            color: white;
            text-decoration: none;
        }

        .survey-button:focus {
            background: url('images/State=Focus.png') no-repeat center;
            background-size: contain;
        }

        .survey-button:hover {
            background: url('images/State=Hover.png') no-repeat center;
            background-size: contain;
        }

        .survey-button:active {
            background: url('images/State=Pressed.png') no-repeat center;
            background-size: contain;
        }

        /* Mission Section */
        .mission-section {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 90%;
            max-width: 1200px;
            margin: 50px auto;
        }

        .mission-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 20px;
        }

        .mission-content {
            max-width: 600px;
            padding-left: 40px;
        }

        .mission-content h2 {
            font-size: 32px;
            color: #004F5D;
        }

        .mission-content p {
            font-size: 18px;
            color: #333;
            line-height: 1.6;
        }

/* About Section */
.about-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows wrapping for small screens */
    width: 90%;
    max-width: 1200px;
    margin: 50px auto;
    gap: 30px;
}

/* Image Styling */
.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 15px;
}

/* Content Styling */
.about-content {
    flex: 1;
    max-width: 600px;
}

.about-content h2 {
    font-size: 28px;
    color: #004F5D;
}

.about-content p,
.about-content li {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.about-content ul {
    padding-left: 20px;
}

.about-content li {
    margin-bottom: 10px;
}

        /* Why Your Input Matters Section */
        .input-section {
            text-align: center;
            padding: 60px 5%;
            max-width: 1000px;
	    margin: 0 auto;
	    box-sizing: border-box;
        }

        .input-section h2 {
            color: #004F5D;
            font-size: 32px;
            font-weight: bold;
        }

        .input-section p {
            font-size: 18px;
            color: #333;
            margin-bottom: 40px;
        }

        .input-grid {
            display: flex;
            justify-content: center;
	    flex-wrap: nowrap;
            gap: 20px;
        }

        .input-grid img {
	    width: 30%;
            width: 320px;
            height: auto;
            border-radius: 15px;
        }

	.center-button {
    display: flex;
    justify-content: center;
    margin-top: 40px;
    width: 100%;
}
/*
        .center-button {
            margin-top: 40px;
            text-align: center;
        }
*/
        /* Contact Section */
        .contact-section {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            width: 90%;
            max-width: 1200px;
            margin: 50px auto;
            gap: 30px;
        }

        .contact-form {
            background: #FFFFFF;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
            max-width: 450px;
            width: 100%;
        }

        .contact-form h2 {
            font-size: 24px;
            margin-bottom: 15px;
            color: #000;
        }

        .contact-form input, .contact-form textarea {
            width: 100%;
            padding: 12px;
            margin-top: 10px;
            border: 1px solid #ccc;
            border-radius: 12px;
            font-size: 16px;
        }

        .contact-form .name-fields {
            display: flex;
            gap: 10px;
        }

        .contact-form .name-fields input {
            width: 48%;
        }

        .contact-form textarea {
            height: 120px;
        }

        .contact-form button {
            width: 100%;
            padding: 12px;
            margin-top: 20px;
            background: #ccc;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            cursor: pointer;
        }

        .contact-form button:hover {
            background: #bbb;
        }

        .contact-info {
            max-width: 600px;
            width: 100%;
        }

        .contact-info h2 {
            font-size: 28px;
            color: #004F5D;
        }

        .info-container {
            display: flex;
            gap: 20px;
            margin-top: 20px;
        }

        .info-box {
            padding: 10px 0;
        }

        .info-box h3 {
            color: #004F5D;
            font-size: 20px;
            margin-bottom: 10px;
        }

        .info-box p {
            font-size: 16px;
            color: #333;
            line-height: 1.6;
        }

        .info-box b {
            color: #000;
        }

	/* Survey Styles */
	    .content-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    .content-wrapper h1 {
      color: #004F5D;
    }

    .image-container {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: nowrap;
      gap: 10px;
      width: 100%;
      max-width: 1200px;
    }

    .image-caption-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 330px;
    }

    .image-caption-wrapper img {
      max-width: 100%;
      height: auto;
    }

    .caption {
      margin-top: 8px;
      font-size: 0.85rem;
      color: #333;
    }


        /* Footer Styles */
        .footer {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            max-width: 1200px;
            background-color: #004F5D;
            padding: 10px;
            border-radius: 20px;
            margin: 50px auto 0;
            box-sizing: border-box;
        }

        .footer-logo img {
            height: 50px;
        }

        .footer-nav {
            display: flex;
            gap: 20px;
        }

        .footer-nav a {
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            color: #B3DEE5;
        }

        .footer-nav a:hover {
            color: #D6F3F7;
        }

.hidden {
	position: fixed;
	bottom: 0;
	left: 0;
	pointer-events: none;
	display: none;
}


.carousel-container {
    max-width: 90%;
    margin: 40px auto;
}

.swiper {
    width: 100%;
    height: auto;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slide-content {
    background: white;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.slide-content img {
    max-width: 100%;
    height: auto;
    width: 100%; /* Ensure full width */
    object-fit: contain; /* Maintain aspect ratio */
}

    #warning {
      color: red;
      margin-top: 10px;
      display: none;
    }

/* Tool Tip */
    .tooltip-container {
      position: relative;
      display: inline-block;
      cursor: pointer;
    }

    .tooltip-icon {
      background-color: #007bff;
      color: white;
      border-radius: 50%;
      padding: 2px 6px;
      font-size: 14px;
      font-weight: bold;
    }

    .tooltip-tooltip {
      visibility: hidden;
      background-color: #333;
      color: #fff;
      text-align: left;
      padding: 8px;
      border-radius: 5px;
      position: absolute;
      bottom: -7px;
      left: 120%;
      transform: translateX(-50%);
      width: 300px;
      z-index: 1;
      opacity: 0;
      transition: opacity 0.3s;
      white-space: normal;
    }

    .tooltip-container:hover .tooltip-tooltip {
      visibility: visible;
      opacity: 1;
    }

    /*
    .tooltip-tooltip::after {
      content: "";
      position: absolute;
      top: 50%;
      left: -5px;
      transform: translateY(-50%);
      border-width: 5px;
      border-style: solid;
      border-color: #333 transparent transparent transparent;
    }
*/

    /* Responsive Design */
	@media screen and (max-width: 900px) {
    .input-grid {
        gap: 10px; /* Reduce gap to fit images better */
    }

    .input-grid img {
        width: 45%; /* Show two images on the first line, one below */
    }
}

    @media (max-width: 768px) {
        .header{
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .nav {
            flex-direction: column;
            gap: 10px;
        }

	    .hero-content {
        width: 90%;
        padding: 15px;
    }


    /*
        .hero-content {
            right: 50%;
            transform: translate(50%, -50%);
            text-align: center;
            max-width: 90%;
        }

        .hero-content h1 {
            font-size: 24px;
        }

        .hero-content p {
            font-size: 14px;
        }
*/
    .input-section {
        padding: 40px 10px; /* Less padding on small screens */
    }

    .input-grid {
        flex-direction: column; /* Stack images vertically */
        align-items: center;
    }

    .input-grid img {
        width: 90%; /* Make images take up more space on mobile */
        max-width: 400px; /* Prevent excessive stretching */
    }

    .survey-button {
        width: 40%; /* Make button more touch-friendly */
        padding: 14px;
    }

     .center-button {
        width: 100%;
        margin-top: 20px;
    }
       .mission-section {
            flex-direction: column;
            text-align: center;
        }

        .mission-content {
            padding-left: 0;
            margin-top: 20px;
        }

	.about-section {
            flex-direction: column;
            text-align: center;
        }

        .about-content {
            padding-left: 0;
            margin-top: 20px;
        }


        .contact-section {
            flex-direction: column;
            align-items: center;
        }

        .contact-info {
            padding-left: 0;
            text-align: center;
        }

        .info-container {
            flex-direction: column;
        }

      .image-container {
        flex-direction: column;
      }

      .image-caption-wrapper {
        max-width: 200px;
      }

    .footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 15px;
        width: 90%; /* Prevents it from touching screen edges */
    }

    .footer-nav {
        flex-direction: column;
        gap: 10px;
    }
 }

