.about-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 2rem;
}

.about-section {
    background: #1E1E1E;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.section-header h2 {
    font-size: 1.8rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section-header h2 i {
    color: #DAA520;
}

.section-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #E0E0E0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.feature-card {
    background: #282828;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2rem;
    color: #DAA520;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #FFFFFF;
    margin-bottom: 0.75rem;
    font-size: 1.2rem;
}

.feature-card p {
    color: #E0E0E0;
    font-size: 0.95rem;
}

.target-groups {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 1rem;
}

.target-group {
    background: #282828;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.target-group i {
    font-size: 2.5rem;
    color: #DAA520;
    margin-bottom: 1rem;
}

.target-group h3 {
    color: #FFFFFF;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.target-group ul {
    text-align: left;
    list-style: none;
    padding: 0;
}

.target-group ul li {
    color: #E0E0E0;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.target-group ul li:before {
    content: "•";
    color: #DAA520;
    position: absolute;
    left: 0;
}

.contact-content {
    text-align: center;
}

.contact-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #E0E0E0;
}

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #282828;
    color: #FFFFFF;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.2s;
}

.contact-button:hover {
    background: #333333;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 768px) {
    .about-section {
        padding: 1.5rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

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

    .target-groups {
        grid-template-columns: 1fr;
    }
}
