/* Sage Serenity Color Palette */
:root {
    --sage-green-light: #B2C8B2;
    --sage-green: #A8B8A0;
    --slate-gray: #6C757D;
    --slate-dark: #4E5452;
    --light-gray: #E8E8E8;
    --white: #FFFFFF;
}

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

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--light-gray);
    color: var(--slate-dark);
    line-height: 1.6;
}

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

/* Navbar */
.navbar {
    background-color: #E8E8E8;
    padding: 20px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.navbar-leaf {
    height: 50px;
    width: auto;
}

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

.nav-links a {
    color: var(--slate-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--sage-green);
}

/* Hero Section */
.hero-section {
    background-color: #E8E8E8;
    padding: 80px 0;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-logo-container {
    flex: 0 0 auto;
}

.hero-logo {
    max-width: 450px;
    height: auto;
    display: block;
}

.hero-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-subtitle {
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--sage-green);
}

.hero-description p {
    font-size: 1.2rem;
    color: var(--slate-dark);
    line-height: 1.8;
}

/* About Section */
.about-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--slate-dark) 0%, var(--slate-gray) 100%);
}

.about-section .section-header h2 {
    color: var(--white);
}

.about-section .divider {
    background: var(--sage-green-light);
}

.about-section .content-block h3 {
    color: var(--white);
}

.about-section .content-block p {
    color: var(--light-gray);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--slate-dark);
    margin-bottom: 15px;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--sage-green);
    margin: 0 auto;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.content-block h3 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--slate-dark);
    margin-bottom: 20px;
}

.content-block p {
    font-size: 1.1rem;
    color: var(--slate-gray);
    line-height: 1.8;
}

/* Strategy Section */
.strategy-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.advantages-columns {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.advantage-column {
    background-color: var(--white);
    padding: 40px 30px;
    border-radius: 10px;
    border-left: 4px solid var(--sage-green);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.advantage-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.column-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--sage-green);
    opacity: 0.3;
    margin-bottom: 20px;
    line-height: 1;
}

.advantage-column h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--slate-dark);
    margin-bottom: 15px;
}

.advantage-column p {
    font-size: 0.95rem;
    color: var(--slate-gray);
    line-height: 1.7;
}

/* Performance Section */
.performance-section {
    padding: 80px 0;
    background-color: var(--white);
}

.philosophy-content {
    max-width: 900px;
    margin: 40px auto 0;
}

.philosophy-content p {
    font-size: 1.15rem;
    color: var(--slate-gray);
    line-height: 1.8;
    margin-bottom: 25px;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--sage-green) 0%, var(--sage-green-light) 100%);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.cta-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.cta-card h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-dark);
    margin-bottom: 15px;
}

.cta-card p {
    font-size: 1.1rem;
    color: var(--slate-gray);
    margin-bottom: 30px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: var(--slate-dark);
    color: var(--white);
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: var(--slate-gray);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
    background-color: #E8E8E8;
    color: var(--slate-dark);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 30px;
    align-items: center;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 40px;
}

.footer-logo-section {
    display: flex;
    align-items: center;
}

.footer-logo {
    max-width: 280px;
    height: auto;
}

.footer-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.footer-info p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    color: var(--slate-dark);
}

.footer-info a {
    color: var(--sage-green);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: var(--slate-dark);
}

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--slate-gray);
    line-height: 1.6;
    display: flex;
    align-items: center;
}

.disclaimer-text {
    font-style: italic;
}

.footer-bottom {
    border-top: 1px solid var(--slate-gray);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--slate-gray);
}

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

    .advantages-columns {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .hero-logo {
        max-width: 350px;
    }

    .hero-subtitle {
        font-size: 1.8rem;
    }

    .hero-description p {
        font-size: 1.1rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .content-block h3 {
        font-size: 1.5rem;
    }

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

    .nav-links {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .navbar {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 50px 0;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-description p {
        font-size: 1rem;
    }

    .hero-logo {
        max-width: 280px;
    }

    .navbar {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .cta-card {
        padding: 35px 25px;
    }

    .footer-logo {
        max-width: 200px;
    }
}
