.hero-section {
    background: url('../img/hero-bg.jpg') no-repeat center top;
    background-size: cover;
    background-attachment: fixed; /* Parallax effect */
    padding: 120px 0;
    text-align: center;
    color: #FFFFFF;
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden; /* Prevent background from leaking */
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
}

.hero-section h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.hero-section p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    margin-bottom: 40px;
    color: #FFFFFF;
    line-height: 1.6;
}

.cta-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background-color: var(--color-accent, #CF912A);
    color: #FFFFFF;
}

.btn-primary:hover {
    background-color: color-mix(in srgb, var(--color-accent, #CF912A) 85%, black 15%);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.btn-accent:hover {
    background-color: color-mix(in srgb, var(--color-accent) 85%, black 15%);
    transform: translateY(-2px);
}

/* Origins Section */
.origins-section {
    padding: 80px 0;
}

.origins-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

.origins-text h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 20px;
    font-weight: 700;
}

.origins-text p {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: var(--color-text);
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Pillars Section */
.pillars-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.pillar-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pillar-icon {
    font-size: 40px;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.pillar-card p {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    color: var(--color-text);
    line-height: 1.6;
}

/* Mission CTA Section */
.mission-cta-section {
    background-color: var(--color-primary);
    padding: 60px 0;
    text-align: center;
}

.mission-content p {
    font-family: 'Montserrat', sans-serif;
    font-size: 24px;
    color: white;
    margin-bottom: 30px;
    line-height: 1.5;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-accent {
    background-color: var(--color-accent);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    border: none;
    font-size: 18px;
    cursor: pointer;
}

.btn-accent:hover {
    background-color: color-mix(in srgb, var(--color-accent) 85%, black 15%);
    transform: translateY(-2px);
}

/* Mobile responsiveness */
/* Tablet Responsiveness */
@media (max-width: 1024px) {
    .hero-section {
        background-attachment: scroll; /* Disable parallax on tablets for performance */
        background-position: center 15%; /* Maintain proper framing */
        padding: 80px 0;
    }
}

@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll; /* Disable parallax on mobile for performance */
        background-position: center 15%; /* Maintain proper framing */
        padding: 80px 0;
    }

    .hero-section h1 {
        font-size: 32px;
    }

    .hero-section p {
        font-size: 16px;
    }

    .cta-container {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Origins Section Mobile */
    .origins-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .origins-text h2 {
        font-size: 28px;
    }

    .origins-text p {
        font-size: 16px;
    }

    /* Pillars Section Mobile */
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mission CTA Section Mobile */
    .mission-content p {
        font-size: 20px;
    }

    .btn-accent {
        font-size: 16px;
        padding: 12px 30px;
    }
}