/* Cybersecurity Teaser Section Styles */

.cybersecurity-teaser-section {
    padding: 3rem 2rem;
    background: #000000;
    position: relative;
    margin: 2rem 0;
}

.cybersecurity-teaser-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.cybersecurity-teaser-content {
    text-align: center;
}

.cybersecurity-teaser-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: #ffffff;
    line-height: 1.3;
}

.cybersecurity-teaser-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    margin-bottom: 2rem;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    opacity: 0.9;
}

.cybersecurity-features-preview {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.cyber-feature-preview {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.cyber-feature-preview:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #f26431;
    transform: translateY(-2px);
}

.cyber-feature-preview i {
    font-size: 1.1rem;
    color: #f26431;
    flex-shrink: 0;
}

.cyber-feature-preview span {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.cybersecurity-cta-wrapper {
    text-align: center;
    margin-top: 0;
}

.cybersecurity-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    background: #f26431;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.cybersecurity-cta-button:hover {
    background: #d9531f;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(242, 100, 49, 0.4);
}

.cybersecurity-cta-button i {
    transition: transform 0.3s ease;
}

.cybersecurity-cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .cybersecurity-teaser-section {
        padding: 2rem 1.5rem;
    }
    
    .cybersecurity-teaser-text h2 {
        font-size: 1.75rem;
    }
    
    .cybersecurity-teaser-text p {
        font-size: 1rem;
    }
    
    .cybersecurity-features-preview {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cyber-feature-preview {
        justify-content: center;
    }
}

