@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.header {
    background: #F7F9F8;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 18px;
    font-weight: 600;
    color: #3F6F8F;
}

.logo-subtitle {
    font-size: 14px;
    color: #3F6F8F;
}

.nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.3s;
}

.nav a:hover {
    color: #3F6F8F;
}

.btn-contact {
    background: #3F6F8F;
    color: white !important;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-contact:hover {
    background: #335a73;
    color: white !important;
}

/* Hero Section */
.hero {
    background: #F7F9F8;
    padding: 80px 0;
    text-align: center;
}

.hero-title {
    font-size: 42px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 16px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.btn-primary {
    background: #3F6F8F;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background: #335a73;
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #F7F9F8;
}

.section-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 60px;
    line-height: 1.3;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.stat-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

/* Features Section */
.features {
    background: linear-gradient(135deg, #3F6F8F 0%, #4d88a8 100%);
    padding: 80px 0;
    color: white;
}

.features-title {
    text-align: center;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 80px;
    line-height: 1.3;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.feature-row.reverse {
    grid-template-columns: 1.5fr 1fr;
}

.feature-row.reverse .feature-content {
    order: -1;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon-img {
    height: auto;
}

.feature-icon-img-1 {
    max-width: 400px;
}

.feature-icon-img-2 {
    max-width: 400px;
}

.feature-icon-img-3 {
    max-width: 200px;
}

.feature-content h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.3;
}

.feature-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.95;
}

.feature-content p:last-child {
    margin-bottom: 0;
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background: #F7F9F8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.benefit-card {
    background: rgba(127, 183, 164, 0.4);
    padding: 40px;
    border-radius: 12px;
}

.benefit-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    text-align: center;
}

.benefit-card p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 12px;
}

.benefit-card p:last-child {
    margin-bottom: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #3F6F8F 0%, #4d88a8 100%);
    padding: 80px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    color: white;
}

.contact-info h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 24px;
    line-height: 1.3;
}

.contact-info p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.95;
}

.contact-form {
    background: #F7F9F8;
    padding: 40px;
    border-radius: 8px;
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3F6F8F;
}

.form-group textarea {
    resize: vertical;
}

[data-netlify-recaptcha="true"] {
    margin: 24px 0;
}

.btn-submit {
    background: #3F6F8F;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-submit:hover {
    background: #335a73;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #335a73 0%, #3F6F8F 100%);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.logo-img-footer {
    height: 80px;
    width: auto;
}

.footer-logo .logo-text {
    color: white;
}

.footer-logo .logo-name,
.footer-logo .logo-subtitle {
    color: white;
}

.footer-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    margin-bottom: 24px;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.footer-section a:hover {
    opacity: 1;
}

.footer-section p {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.btn-footer {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-footer:hover {
    background: #F7F9F8;
    color: #3F6F8F;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    transition: background 0.3s;
}

.social-links a:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* About Page */
.about-hero {
    background: #F7F9F8;
    padding: 80px 0 60px;
    text-align: center;
}

.about-title {
    font-size: 48px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.about-subtitle {
    font-size: 18px;
    color: #666;
    font-weight: 400;
}

.about-content {
    background: #F7F9F8;
    padding: 40px 0 80px;
}

.about-text {
    max-width: 900px;
    margin: 0 auto;
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 24px;
    text-align: left;
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Team Section */
.team-section {
    background: #F7F9F8;
    padding: 60px 0 100px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.team-member {
    text-align: center;
}

.team-member-photo {
    width: 200px;
    height: 250px;
    background: #C4C4C4;
    border-radius: 0;
    margin: 0 auto 24px;
    overflow: hidden;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.team-member-name {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.team-member-role {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Thank You Page */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F7F9F8;
    padding: 80px 0;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thank-you-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.thank-you-text {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.thank-you-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-secondary {
    background: transparent;
    color: #3F6F8F;
    border: 2px solid #3F6F8F;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background: #3F6F8F;
    color: white;
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: #3F6F8F;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: block;
}

.burger-menu.active {
    justify-content: center;
}

.burger-menu.active span {
    position: absolute;
    top: 50%;
    left: 0;
}

.burger-menu.active span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
    }

    .feature-row.reverse .feature-content {
        order: 0;
    }

    .feature-icon {
        order: -1;
        margin-bottom: 20px;
    }

    .feature-icon-img {
        max-width: 100% !important;
        height: auto;
    }

    .feature-icon-img-1,
    .feature-icon-img-2 {
        max-width: 280px !important;
    }

    .feature-icon-img-3 {
        max-width: 150px !important;
    }

    .feature-content h3 {
        text-align: center;
    }

    .feature-content p {
        text-align: left;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-wrapper {
        position: relative;
    }

    .burger-menu {
        display: flex;
        margin-left: auto;
    }

    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: #F7F9F8;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 24px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
    }

    .nav.active {
        right: 0;
    }

    .nav a {
        font-size: 18px;
        padding: 12px 0;
        border-bottom: 1px solid #ddd;
    }

    .btn-contact {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-title,
    .features-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 42px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .about-title {
        font-size: 36px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .feature-content h3 {
        font-size: 20px;
        text-align: center;
        line-height: 1.4;
    }

    .feature-content p {
        font-size: 14px;
        text-align: left;
    }

    .feature-icon-img-1,
    .feature-icon-img-2 {
        max-width: 240px !important;
    }

    .feature-icon-img-3 {
        max-width: 120px !important;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 28px;
        text-align: center;
    }

    .contact-info p {
        text-align: center;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .contact-form h3 {
        font-size: 20px;
        text-align: center;
    }
}