/* Application Continuity Management - Typography and Layout Improvements */

/* Hero Section */
.acm-hero {
    background: linear-gradient(135deg, #163d8f, #2665de);
    padding: 120px 0 80px;
    color: #fff;
}

.acm-hero h1,
.acm-hero p {
    color: #fff;
}

/* Eyebrow Label */
.acm-eyebrow {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.13em;
    font-weight: 800;
    color: #9dc1ff;
}

/* Section Spacing */
.acm-section {
    padding: 70px 0;
}

/* Cards - Match Homepage Style */
.acm-card {
    height: 100%;
    padding: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.acm-card i {
    font-size: 2rem;
    color: #2665de;
    margin-bottom: 1rem;
}

/* Fit Items */
.fit-item {
    padding: 18px 20px;
    border-left: 4px solid #2665de;
    background: #f7f9fc;
    margin-bottom: 14px;
}

/* Decision Box */
.decision {
    background: #edf4ff;
    border-radius: 18px;
    padding: 38px;
}

/* Proof Section */
.proof {
    background: #102c66;
    color: #fff;
}

.proof h2,
.proof p {
    color: #fff;
}

/* CTA Section */
.cta-acm {
    background: #2665de;
    color: #fff;
}

.cta-acm h2,
.cta-acm p {
    color: #fff;
}

/* Base text size increase to 15-16px */
.acm-section {
    font-size: 16px !important;
    padding: 70px 0 !important;
}

/* Increase body text sizes for readability */
.acm-card p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

.acm-card h3 {
    font-size: 1.2rem !important;
    margin-bottom: 0.75rem !important;
    font-weight: 600 !important;
}

.fit-item {
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

.decision h3 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
}

/* Hero CTA */
.acm-hero .btn {
    font-size: 1.1rem !important;
    padding: 16px 40px !important;
    font-weight: 600 !important;
}

/* Improve testimonial presentation */
.proof blockquote {
    font-size: 1.2rem !important;
    line-height: 1.75 !important;
}

.proof footer {
    font-size: 1.05rem !important;
}

.proof .lead {
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
}

/* Table improvements */
.table td, .table th {
    font-size: 1rem !important;
    padding: 1.25rem !important;
    line-height: 1.7 !important;
}

.table th {
    font-weight: 600 !important;
}

.table td {
    font-size: 0.95rem !important;
}

/* Responsibility boundary lists */
.acm-section ul li {
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

/* Lead paragraphs */
.acm-section .lead {
    font-size: 1.2rem !important;
    line-height: 1.7 !important;
}

/* Responsive adjustments - Bootstrap handles grid, we just adjust spacing/text */

@media (max-width: 767px) {
    /* Reduce padding on mobile */
    .acm-section {
        padding: 50px 0 !important;
    }
    
    .acm-hero {
        padding: 80px 0 50px !important;
    }
    
    /* Smaller text on mobile */
    .acm-card p {
        font-size: 0.95rem !important;
    }
    
    .fit-item {
        font-size: 0.95rem !important;
    }
}

/* Prevent horizontal overflow */
body {
    overflow-x: hidden !important;
}

.container {
    padding-left: 15px !important;
    padding-right: 15px !important;
}

