/* Cybersecurity Page Specific Styles */

/* Override the about-crowdstrike section background to white for cybersecurity page only */
.about-crowdstrike {
    background: #ffffff;
    color: #333333;
}

.about-crowdstrike::before {
    background: none;
}

/* Ensure text remains readable on white background */
.about-crowdstrike h2,
.about-crowdstrike h3,
.about-crowdstrike h4,
.about-crowdstrike p,
.about-crowdstrike li {
    color: #333333;
}

/* Adjust service cards for white background */
.about-crowdstrike .service-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    color: #333333;
}

.about-crowdstrike .service-card:hover {
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* Ensure service card text is dark */
.about-crowdstrike .service-card h4,
.about-crowdstrike .service-card p,
.about-crowdstrike .service-card li {
    color: #333333;
}

/* Fix CTA button styling in cybersecurity page */
.about-crowdstrike .platform-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 0 auto;
    padding-top: 20px;
    width: 100%;
    grid-column: 1 / -1; /* Span full width if in grid */
    text-align: center;
}

.about-crowdstrike .platform-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #a11d33 !important;
    color: white !important;
    border: none;
    box-shadow: 0 4px 15px rgba(161, 29, 51, 0.4);
}

.about-crowdstrike .platform-cta .btn:hover {
    background: #8b1a2c !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(161, 29, 51, 0.5);
    color: white !important;
}

.about-crowdstrike .platform-cta .btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
}

/* Mobile-specific improvements for cybersecurity page */
@media (max-width: 768px) {
    .cybersecurity-features .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        max-width: 100% !important;
    }
    
    .features-content {
        overflow-x: visible;
    }
    
    .section-header {
        text-align: center;
        margin-bottom: 20px;
    }
    
    .platform-services-grid {
        padding: 0 5px;
    }
    
    .platform-service-card {
        width: 100%;
        box-sizing: border-box;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cybersecurity-features .container {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    
    .platform-services-grid {
        padding: 0;
        gap: 10px;
    }
    
    .platform-service-card {
        margin: 0;
    }
}

/* Ensure no horizontal scrolling */
.cybersecurity-features,
.cybersecurity-features * {
    box-sizing: border-box;
}

.cybersecurity-features .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}
