:root {
    --color-primary: #ff7e5f;
    --color-secondary: #feb47b;
    --color-text-dark: #374151;
    --color-text-light: #d1d5db;
    --color-background-light: #ffffff;
    --color-background-dark: #1f2937;
    --color-accent-pink: #f4cedd;
    --color-accent-green: #e1ffdf;
    --font-main: 'Inter', sans-serif;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background-color: var(--color-background-light);
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 40px;
    padding-right: 40px;
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

/* CSS from section:header */
.site-header {
    background-color: var(--color-background-light);
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    padding: 16px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-logo img {
    height: 46px;
    display: block;
}

.main-navigation ul {
    display: flex;
    gap: 40px;
}

.main-navigation a {
    font-size: 16px;
    color: var(--color-text-dark);
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--color-primary);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.btn.btn-primary {
    background: linear-gradient(90deg, #ff7e5f 0%, #feb47b 100%);
    box-shadow: 0px 4px 15px 0px rgba(255, 126, 95, 0.4);
    color: var(--color-background-light);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: 9999px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 20px 0px rgba(255, 126, 95, 0.5);
}

.login-link {
    font-size: 16px;
    color: var(--color-text-dark);
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .main-navigation, .header-actions {
        display: none;
    }
    .mobile-nav-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .mobile-nav-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background-color: var(--color-text-dark);
    }
}

/* CSS from section:hero */
.hero-section {
    background-image: url('../img/about.jpg');
    background-size: cover;
    background-position: center;
    height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    color: var(--color-background-light);
}

.hero-content {
    position: relative;
    padding-bottom: 40px; /* Space for the divider */
}

.hero-title {
    font-size: 60px;
    font-weight: 400;
    line-height: 1.2;
    margin: auto;
}

.hero-divider {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    transform: translateY(-20%);
    width: 3px;
    height: 150px;
    background-color: #448c8c;
}

@media (max-width: 768px) {
    .hero-section {
        height: 50vh;
        min-height: 400px;
    }
    .hero-title {
        font-size: 48px;
    }
    .hero-divider {
        height: 120px;
    }
    .hero-content {
        padding-bottom: 140px;
    }
}

/* CSS from section:story */
.story-section {
    padding: 100px 0;
}

.breadcrumbs {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 60px;
}

.story-heading {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    margin: 0 auto 60px;
    max-width: 600px;
}

.story-content {
    max-width: 1200px;
    margin: 0 auto;
}

.story-content p {
    font-size: 20px;
    line-height: 2;
    margin: 0 0 2em 0;
    color: #333;
}

.story-content p:last-child {
    margin-bottom: 0;
}

.story-content strong {
    font-weight: 700;
    color: #000;
}

@media (max-width: 768px) {
    .story-section {
        padding: 60px 0;
    }
    .story-heading {
        font-size: 32px;
        margin-bottom: 40px;
    }
    .story-content p {
        font-size: 18px;
    }
}

/* CSS from section:features */
.features-section {
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 30px;
}

.feature-text-wrapper {
    flex: 1;
    padding: 60px;
}

.feature-image-wrapper {
    flex: 1;
}

.feature-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
}

.feature-subscription .feature-text-wrapper {
    background-color: var(--color-accent-pink);
}

.feature-values .feature-text-wrapper {
    background-color: var(--color-accent-green);
}

.feature-title {
    font-size: 40px;
    font-weight: 400;
    line-height: 1.3;
    margin: 0 0 24px 0;
}

.feature-description {
    font-size: 20px;
    line-height: 2;
    margin: 0;
}

.mission-statement {
    text-align: center;
    padding: 60px 0;
}

.mission-quote {
    font-size: 40px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 auto 40px;
    max-width: 1200px;
}

.mission-details {
    font-size: 20px;
    line-height: 1.8;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.cta-banner {
    background-image: url('../img/about-cta.png');
    background-size: cover;
    background-position: center;
    border-radius: 0px 0px 24px 24px;
    padding: 80px 40px;
    margin: 0 auto;
    width: 100%;
    max-width: 1920px;
}

.cta-content {
    text-align: center;
    color: var(--color-background-light);
}

.cta-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 16px 0;
}

.cta-subtitle {
    font-size: 24px;
    margin: 0 0 32px 0;
}

.btn.btn-cta {
    background-color: #FBBF24;
    color: var(--color-text-dark);
    font-size: 18px;
    font-weight: 600;
    padding: 16px 48px;
    border-radius: 9999px;
    transition: background-color 0.3s ease;
}

.btn.btn-cta:hover {
    background-color: #F59E0B;
}

@media (max-width: 1024px) {
    .feature-item {
        flex-direction: column;
    }
    .feature-values {
        flex-direction: column-reverse;
    }
    .feature-text-wrapper {
        padding: 40px;
        text-align: center;
    }
    .mission-details {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
        gap: 60px;
    }
    .feature-title, .mission-quote {
        font-size: 32px;
    }
    .feature-description {
        font-size: 16px;
    }
    .cta-title {
        font-size: 36px;
    }
    .cta-subtitle {
        font-size: 18px;
    }
}

/* CSS from section:footer */
.site-footer {
    background-color: var(--color-background-dark);
    color: var(--color-text-light);
    padding: 80px 0;
    border-radius: 24px 24px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column {
    font-size: 14px;
    line-height: 1.6;
}

.footer-heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-background-light);
    margin: 0 0 20px 0;
}

.quick-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quick-links a:hover {
    text-decoration: underline;
}

.contact-us p {
    margin: 0 0 20px 0;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    display: block;
    width: 24px;
    height: 24px;
}
.social-links svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-text-light);
}

@media (max-width: 768px) {
    .site-footer {
        padding: 60px 0;
    }
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    .quick-links ul {
        align-items: center;
    }
    .social-links {
        justify-content: center;
    }
}
