.about-us {
    padding: 60px 20px;
    background-color: #fafafa;
}

.about-us h1 {
    font-size: 2.5em;
    margin-bottom: 1rem;
    color: #333;
    text-align: center;
}

.about-us .lead {
    font-size: 1.3em;
    font-style: italic;
    color: #6759c3;
    text-align: center;
    margin-bottom: 3rem;
}

.about-us .intro {
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.1em;
    line-height: 1.6;
    color: #555;
    text-align: center;
}

/* Goals Section */
.goals-section {
    max-width: 1200px;
    margin: 0 auto 4rem;
}

.goals-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.goals {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 20px;
}

.goal {
    background: linear-gradient(135deg, white, rgba(103, 89, 195, 0.1));
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(103, 89, 195, 0.08);
    border: 1px solid rgba(103, 89, 195, 0.1);
    border-top: 4px solid #6759c3;
}

.goal-icon {
    font-size: 2em;
    margin-bottom: 1rem;
}

.goal h3 {
    color: #6759c3;
    margin-bottom: 1rem;
}

.goal p {
    color: #555;
    line-height: 1.6;
}

/* Story Section */
.story-section {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.story-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.story-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.story-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.achievements {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.achievements h3 {
    color: #333;
    margin-bottom: 1.5rem;
}

.achievements-list {
    list-style: none;
    padding: 0;
}

.achievements-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 1rem;
    line-height: 1.6;
    color: #555;
}

.achievements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #6759c3;
    font-weight: bold;
}

/* Future Section */
.future-section {
    max-width: 800px;
    margin: 0 auto;
}

.future-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.future-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.future-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.future-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.future-content ul li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.5rem;
    line-height: 1.6;
    color: #555;
}

.future-content ul li::before {
    content: '•';
    position: absolute;
    left: 0.5rem;
    color: #6759c3;
}

.future-content .cta {
    font-size: 1.2em;
    font-style: italic;
    color: #6759c3;
    text-align: center;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .about-us {
        padding: 40px 20px;
    }

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

    .story-content,
    .achievements,
    .future-content {
        padding: 1.5rem;
    }
}
