.about-container {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #ffffff;
    background-color: #000000;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.about-subtitle {
    font-size: 18px;
    color: #a0a0a0;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    color: #4ade80;
    position: relative;
    padding-bottom: 12px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #4ade80;
}

.section-content {
    font-size: 16px;
    line-height: 1.7;
    color: #e0e0e0;
}

.section-content p {
    margin-bottom: 20px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

.cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background-color: rgba(74, 222, 128, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(74, 222, 128, 0.2);
}

.cta-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.cta-text {
    font-size: 16px;
    color: #a0a0a0;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #4ade80;
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.cta-button:hover {
    background-color: #22c55e;
}

@media (max-width: 768px) {
    .about-title {
        font-size: 30px;
    }

    .about-subtitle {
        font-size: 16px;
    }

    .section-title {
        font-size: 22px;
    }

    .cta-section {
        padding: 30px 20px;
    }
}