
.about-page {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 20px;
}


.about-hero {
    text-align: center;
    margin-bottom: 50px;
}

.about-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-subtitle {
    color: #8a96a3;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}


.about-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.section-text {
    color: #8a96a3;
    margin-bottom: 12px;
    line-height: 1.6;
}

.about-list {
    list-style: none;
    margin-top: 10px;
}

.about-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
    color: #8a96a3;
}

.about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #2f8cff;
}

.about-blocks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.about-block {
    background: #0d1117;
    padding: 18px;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.05);
    transition: 0.2s;
}

.about-block:hover {
    transform: translateY(-3px);
    border-color: rgba(47, 140, 255, 0.4);
}

.about-block h3 {
    margin-bottom: 8px;
}

.about-cta {
    margin-top: 60px;
    text-align: center;
    padding: 30px;
    background: #0d1117;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.about-cta h2 {
    margin-bottom: 10px;
}

.about-cta p {
    color: #8a96a3;
    margin-bottom: 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 20px;
    background: #2f8cff;
    border-radius: 10px;
    color: #fff;
    transition: 0.2s;
}

.btn-primary:hover {
    background: #1f6fe0;
}

@media (max-width: 700px) {

    .about-page {
        padding: 15px 12px 100px;
    }

    .about-title {
        font-size: 26px;
    }

    .about-subtitle {
        font-size: 13px;
    }

    .section-title {
        font-size: 18px;
    }

    .about-blocks {
        grid-template-columns: 1fr;
    }

}