body {
    font-family: sans-serif;
    margin: 0;
    color: #333;
    padding-top: 70px; /* Fixed header height */
}

.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0 15px;
}

header {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 40px;
    z-index: 10;
}

.hamburger-menu {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    z-index: 10;
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px 0;
    background: #333;
    transition: 0.4s;
}

.nav-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links ul li {
    display: inline-block;
    margin-left: 20px;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

#hero {
    background: linear-gradient(to right, rgba(106, 17, 203, 0.8), rgba(37, 117, 252, 0.8)), url('public/IMG_9431.jpg');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    position: relative;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('public/IMG_9431.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.1;
    z-index: -1;
}

#hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.cta-button {
    background: #fff;
    color: #6a11cb;
    padding: 15px 30px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}

section {
    padding: 60px 0;
}

h2 {
    text-align: center;
    margin-bottom: 40px;
}

.section-logo {
    display: block;
    margin: 20px auto;
    max-width: 100px; /* Adjust size as needed */
    opacity: 0.2; /* Adjust transparency as needed */
}

.scheme-full-image {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scheme-full-image img {
    max-width: 100%;
    height: auto;
    margin-bottom: 20px;
}

.scheme-text-content {
    max-width: 700px;
    text-align: left;
}

.scheme-text-content h3 {
    font-size: 1.8em;
    color: #6a11cb;
    margin-bottom: 20px;
}

.scheme-text-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 20px;
}

.scheme-intro {
    text-align: center;
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #555;
}

.scheme-cta {
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    color: #2575fc;
    margin-top: 30px;
}

.scheme-disclaimer {
    font-size: 0.9em;
    color: #777;
    margin-top: 20px;
    text-align: center;
}

/* About Page Styles */
.page-title {
    text-align: center;
    padding-bottom: 20px;
}

.page-title p {
    font-size: 1.2em;
    color: #666;
}

.about-features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.feature-card i {
    font-size: 3em;
    color: #6a11cb;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.feature-card p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #555;
}

.about-problem {
    background: #f0f8ff;
    padding: 60px 0;
    margin-top: 60px;
}

.about-problem h2 {
    color: #6a11cb;
}

.about-problem ul {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 30px auto;
}

.about-problem ul li {
    background: #fff;
    margin-bottom: 15px;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
}

.about-problem ul li i {
    color: #2575fc;
    margin-right: 15px;
    font-size: 1.2em;
}

.about-problem .solution {
    text-align: center;
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
}

/* Intro Section Styles */
#intro .intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

#intro .intro-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 30px;
}

.intro-points {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.point-item {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.point-item i {
    font-size: 3em;
    color: #2575fc;
    margin-bottom: 20px;
}

.point-item h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.point-item p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #555;
}

.intro-cta {
    font-size: 1.2em;
    font-weight: bold;
    color: #6a11cb;
    margin-top: 40px;
    margin-bottom: 30px;
}

/* Profile Page Styles */
.profile-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 60px;
}

.profile-section.background-section {
    background: #f0f8ff;
    padding: 40px;
    border-radius: 8px;
}

.profile-content {
    flex: 2;
    max-width: 700px; /* Added for readability */
}

.profile-content h3 {
    font-size: 1.8em;
    color: #6a11cb;
    margin-bottom: 20px;
}

.profile-content h3 i {
    margin-right: 10px;
}

.profile-content p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
}

.profile-image {
    flex: 1;
    text-align: center;
}

.profile-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.profile-image .placeholder-image {
    border: 2px dashed #ccc;
    padding: 20px;
    background-color: #f0f0f0;
}

.image-caption {
    font-size: 0.9em;
    color: #777;
    margin-top: 10px;
}

.profile-cta {
    text-align: center;
    font-size: 1.3em;
    font-weight: bold;
    color: #2575fc;
    margin-top: 30px;
}

/* Contact Page Styles */
.contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 40px;
}

.contact-info,
.contact-form-container {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 300px;
}

.contact-info h3,
.contact-form-container h3 {
    color: #6a11cb;
    margin-bottom: 25px;
    font-size: 1.6em;
}

.contact-info h3 i,
.contact-form-container h3 i {
    margin-right: 10px;
}

.contact-info p {
    font-size: 1.1em;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-info p i {
    color: #2575fc;
    margin-right: 10px;
}

.contact-info a {
    color: #2575fc;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.contact-form-container .form-group {
    margin-bottom: 20px;
}

.contact-form-container label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #555;
}

.contact-form-container input[type="text"],
.contact-form-container input[type="email"],
.contact-form-container textarea {
    width: calc(100% - 20px);
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

.contact-form-container textarea {
    resize: vertical;
}

.contact-form-container button {
    background: linear-gradient(to right, #6a11cb, #2575fc);
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.1em;
    font-weight: bold;
    transition: background 0.3s ease;
}

.contact-form-container button:hover {
    background: linear-gradient(to right, #2575fc, #6a11cb);
}

.message-area {
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.message-area.success {
    background-color: #e6ffe6;
    color: #008000;
    border: 1px solid #008000;
}

.message-area.error {
    background-color: #ffe6e6;
    color: #ff0000;
    border: 1px solid #ff0000;
}

/* FAQ Section Styles */
#faq .faq-list {
    max-width: 800px;
    margin: 40px auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    display: block;
    padding: 20px;
    font-size: 1.1em;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    position: relative;
    background: #f9f9f9;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
    content: '-';
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    padding: 20px;
    background: #fff;
    border-top: 1px solid #eee;
    font-size: 1em;
    line-height: 1.6;
    color: #555;
}

footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .hamburger-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        border-top: 1px solid #eee;
    }

    .nav-links.active {
        display: block;
    }

    .nav-links ul li {
        display: block;
        margin: 20px 0;
        text-align: center;
    }

    #hero {
        padding: 100px 0; /* Keep padding reasonable */
        min-height: 250px; /* Set a minimum height */
    }

    #hero h1 {
        font-size: 36px;
    }

    #hero::before {
        background-size: 50% auto; /* Make logo even smaller to ensure it fits */
        background-position: center center; /* Center the logo */
        opacity: 0.1; /* Keep original opacity */
    }

    .about-features,
    .intro-points,
    .profile-section,
    .contact-section {
        flex-direction: column;
        align-items: center;
    }

    .feature-card,
    .point-item,
    .profile-content,
    .profile-image,
    .contact-info,
    .contact-form-container {
        max-width: 90%;
    }

    .scheme-full-image {
        flex-direction: column;
    }

    .scheme-text-content {
        text-align: center;
    }
}