/* ========== About page ========== */

.page-about-main {
    padding-top: 72px;
}

.about-intro {
    padding-top: 64px;
    padding-bottom: 64px;
}

.about-intro-inner {
    max-width: 720px;
}

.about-intro .section-heading {
    margin-bottom: 24px;
}

.about-content {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.7;
}

.about-content p {
    margin-bottom: 1em;
}

.about-content p:last-child {
    margin-bottom: 0;
}

.about-values {
    padding-top: 64px;
    padding-bottom: 80px;
}

.about-values .section-heading-center {
    margin-bottom: 40px;
}

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

.about-value-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.35s ease,
                border-color 0.35s ease,
                box-shadow 0.35s ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(207, 173, 101, 0.3);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.about-value-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(207, 173, 101, 0.2);
    color: #CFAD65;
    font-size: 1.25rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
                background 0.35s ease,
                color 0.35s ease;
}

.about-value-card:hover .about-value-icon {
    transform: scale(1.08);
    background: #CFAD65;
    color: #000000;
}

.about-value-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 12px;
}

.about-value-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-values-grid {
        grid-template-columns: 1fr;
    }
}
