/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.about-hero {
    background-color: #1a1a1a;
    padding: 55px 40px;
    display: flex;
    align-items: center;
    min-height: 280px;
}

.about-hero h1 {
    font-size: 46px;
    font-weight: 800;
    color: #c8a84b;
    margin-bottom: 12px;
}

.about-hero p {
    font-size: 18px;
    color: #dddddd;
    line-height: 1.7;
    max-width: 500px;
}

.about-section {
    padding: 60px 20px;
}

.about-section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    border-left: 5px solid #c8a84b;
    padding-left: 14px;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 16px;
}

.about-feature-card {
    background-color: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 10px;
    padding: 30px 24px;
    text-align: center;
    margin-bottom: 20px;
    transition: box-shadow 0.2s, border-color 0.2s;
}

.about-feature-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.10);
    border-color: #c8a84b;
}

.about-feature-card i {
    font-size: 38px;
    color: #c8a84b;
    margin-bottom: 16px;
}

.about-feature-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.about-feature-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

.about-cta {
    background-color: #c8a84b;
    padding: 50px 30px;
    text-align: center;
    margin-top: 20px;
}

.about-cta h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.about-cta p {
    font-size: 17px;
    color: #2a2a2a;
    margin-bottom: 22px;
}

.btn-about-call {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 19px;
    font-weight: 700;
    padding: 14px 40px;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.btn-about-call:hover {
    background-color: #3a3a3a;
    color: #fff;
}

@media only screen and (max-width: 768px) {
    .about-hero { padding: 40px 20px; min-height: 200px; }
    .about-hero h1 { font-size: 30px; }
    .about-hero p { font-size: 16px; }
    .about-section { padding: 40px 15px; }
    .about-cta { padding: 35px 20px; }
    .about-cta h2 { font-size: 22px; }
}
