.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero {
    background: linear-gradient(135deg, #3730a3 0%, #7c3aed 100%);
    color: #fff;
    padding: 80px 0 72px;
    text-align: center;
}

.hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 18px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    opacity: .85;
    max-width: 560px;
    margin: 0 auto;
}

.about-section {
    padding: 72px 0;
    background: #f8fafc;
}

.about-intro {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.about-intro h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.about-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px 28px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.about-card:hover {
    box-shadow: 0 8px 24px rgba(79, 82, 200, 0.1);
}

.about-card .icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.about-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.about-card p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.contact-section {
    padding: 72px 0 88px;
    background: #fff;
}

.contact-section h2 {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    color: #1e293b;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 24px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
}

.contact-item .label {
    font-size: 13px;
    font-weight: 600;
    color: #7c3aed;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 8px;
}

.contact-item .value {
    font-size: 15px;
    color: #475569;
}

.contact-item a {
    color: #4f52c8;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 32px; }
    .about-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}
