.ccas-body {
    background-color: #ffffff;
    color: #111111;
}

.page-wrapper {
    max-width: 1200px;
}

.hero-section {
    position: relative;
    border-radius: 24px;
    padding: 3rem;
    background: #111111;
    color: #f7f7f7;
    overflow: hidden;
    box-shadow: 0 30px 65px rgba(0, 0, 0, 0.35);
}

.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12), transparent 55%),
                radial-gradient(circle at 80% 10%, rgba(255, 255, 255, 0.08), transparent 60%);
    pointer-events: none;
}

.hero-copy {
    position: relative;
    z-index: 1;
}

.hero-eyebrow {
    font-size: 0.9rem;
    letter-spacing: 0.35rem;
    color: rgba(247, 247, 247, 0.75);
    margin-bottom: 0.75rem;
}

.hero-title {
    font-size: clamp(2.4rem, 3vw + 1rem, 3.6rem);
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-subtext {
    font-size: 1.15rem;
    color: rgba(247, 247, 247, 0.85);
    margin-bottom: 1.75rem;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-badge i {
    color: #f7f7f7;
}

.hero-emblem {
    position: relative;
    z-index: 1;
}

.emblem-circle {
    width: 220px;
    height: 220px;
    margin: 0 auto 1.5rem auto;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(17, 17, 17, 0.65));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 30px 60px rgba(0, 0, 0, 0.45);
}

.emblem-circle i {
    font-size: 3.5rem;
    color: #ffffff;
}

.emblem-caption {
    color: rgba(247, 247, 247, 0.8);
    font-size: 0.95rem;
}

.content-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border: 1px solid #ededed;
}

.section-label {
    font-size: 0.85rem;
    letter-spacing: 0.25rem;
    text-transform: uppercase;
    color: #5a5a5a;
    margin-bottom: 1.5rem;
}

.service-card {
    background: #f8f8f8;
    border-radius: 18px;
    padding: 2rem 1.75rem;
    border: 1px solid #e6e6e6;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0;
}

.service-card p {
    margin-bottom: 0;
    color: #333333;
}

.service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: #111111;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.value-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: #f2f2f2;
    border: 1px solid #e2e2e2;
    font-weight: 600;
}

.value-pill i {
    color: #111111;
}

.callout-section {
    border-radius: 24px;
    padding: 2.75rem;
    background: #f7f7f7;
    border: 1px solid #e4e4e4;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.callout-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 2.4rem;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.04em;
    border: 2px solid transparent;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
}

.cta-button:hover {
    transform: translateY(-4px);
    border-color: #e0e0e0;
    box-shadow: 0 24px 45px rgba(0, 0, 0, 0.2);
    color: #ffffff;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 1rem;
    color: #2b2b2b;
}

.checklist-item i {
    color: #111111;
    font-size: 1.15rem;
    margin-top: 0.15rem;
}

@media (max-width: 767px) {
    .hero-section {
        padding: 2.25rem;
    }

    .emblem-circle {
        width: 180px;
        height: 180px;
    }

    .callout-section {
        text-align: center;
    }

    .callout-section .cta-button {
        margin-top: 1.5rem;
    }
}
