/* Foundation Page Styles */
.foundation-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6rem 2rem 4rem 2rem;
    margin-top: -5px;
    text-align: center;
}

.foundation-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.foundation-hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.foundation-hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.foundation-content {
    padding: 4rem 2rem;
    background-color: #f7fafc;
}

.foundation-container {
    max-width: 800px;
    margin: 0 auto;
}

.foundation-section {
    background-color: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.foundation-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.foundation-text {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.foundation-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
}

.foundation-list-item {
    font-size: 1.1rem;
    color: #555;
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.8;
}

.foundation-list-item::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
    .foundation-hero {
        padding: 5rem 1.5rem 3rem 1.5rem;
        margin-top: -5px;
    }

    .foundation-hero-title {
        font-size: 2rem;
    }

    .foundation-hero-subtitle {
        font-size: 1.1rem;
    }

    .foundation-section {
        padding: 2rem 1.5rem;
    }
}
