/* NebulaEdgeStream - Main Stylesheet
-------------------------------------------------- */

:root {
    /* Primary Colors */
    --primary: #2B3990;
    --secondary: #00A0E3;
    --accent: #FF5C35;
    
    /* Gradient Colors */
    --gradient-color-1: #2B3990;
    --gradient-color-2: #00A0E3;
    --gradient-color-3: #9945FF;
    --gradient-color-4: #FF5C35;
    --gradient-color-5: #14F1D9;
    --gradient-color-6: #3CAEA3;
    
    /* Text Colors */
    --text-dark: #333333;
    --text-medium: #666666;
    --text-light: #FFFFFF;
    
    /* UI Elements */
    --bg-light: #F8F9FA;
    --bg-card: #E9ECEF;
    --border-color: #DEE2E6;
    
    /* Spacing */
    --section-padding: 5rem;
    --section-padding-sm: 3rem;
    
    /* Typography */
    --font-primary: 'Roboto', sans-serif;
    --font-monospace: 'Fira Code', monospace;
}

/* Base Styles
-------------------------------------------------- */
body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: #fff;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary);
}

.section-padding {
    padding: var(--section-padding) 0;
}

@media (max-width: 991.98px) {
    .section-padding {
        padding: var(--section-padding-sm) 0;
    }
}

.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-primary:hover {
    background-color: #223077;
    border-color: #223077;
}

.btn-outline-primary {
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-primary:hover {
    background-color: var(--primary);
    border-color: var(--primary);
}

.btn-outline-light:hover {
    color: var(--primary);
}

img {
    max-width: 100%;
}

.img-fluid {
    border-radius: 0.5rem;
}

/* Mesh Gradient Background
-------------------------------------------------- */
.mesh-gradient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 10% 20%, var(--gradient-color-1), transparent 40%),
                radial-gradient(circle at 80% 30%, var(--gradient-color-2), transparent 40%),
                radial-gradient(circle at 40% 70%, var(--gradient-color-3), transparent 40%),
                radial-gradient(circle at 90% 80%, var(--gradient-color-4), transparent 40%),
                radial-gradient(circle at 60% 10%, var(--gradient-color-5), transparent 40%),
                radial-gradient(circle at 20% 90%, var(--gradient-color-6), transparent 40%);
    opacity: 0.1;
}

/* Header & Navigation
-------------------------------------------------- */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    padding: 1rem 0;
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

.navbar-brand img {
    height: 40px;
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-dark .navbar-nav .nav-link:hover,
.navbar-dark .navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-dark .navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-dark .navbar-nav .nav-link:hover::after,
.navbar-dark .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Navigation Preview Dropdown */
.nav-item.dropdown {
    position: relative;
}

.nav-preview {
    position: absolute;
    top: 100%;
    left: 0;
    width: 350px;
    background-color: #fff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    padding: 1rem;
    display: none;
    z-index: 1001;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-item.dropdown:hover .nav-preview,
.nav-item.dropdown:focus-within .nav-preview {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.nav-preview ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-preview ul li {
    margin-bottom: 0.5rem;
}

.nav-preview ul li a {
    color: var(--text-dark);
    display: block;
    padding: 0.5rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-preview ul li a:hover {
    background-color: var(--bg-light);
    color: var(--primary);
    text-decoration: none;
}

/* Page Header
-------------------------------------------------- */
.page-header {
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    color: var(--text-light);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Carousel
-------------------------------------------------- */
#hero-carousel {
    position: relative;
}

.hero-slide {
    position: relative;
    height: 600px;
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    display: flex;
    align-items: center;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.hero-content .lead {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    margin-bottom: 2rem;
}

.stat {
    margin-right: 2rem;
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

@media (max-width: 767.98px) {
    .hero-slide {
        height: 500px;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
    }
    
    .stat {
        margin-right: 1.5rem;
        margin-bottom: 1rem;
    }
}

/* Section Headers
-------------------------------------------------- */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.section-header.text-center h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-header .lead {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Cards
-------------------------------------------------- */
.feature-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card .icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.75rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Architecture Section
-------------------------------------------------- */
.architecture-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.architecture-content h3 {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.architecture-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.architecture-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.architecture-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

.architecture-list li:last-child {
    border-bottom: none;
}

.architecture-list li span {
    font-weight: 500;
    color: var(--primary);
    margin-right: 0.5rem;
}

.protocol-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.protocol-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--bg-light);
    border-radius: 50px;
    font-family: var(--font-monospace);
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Feature Blocks
-------------------------------------------------- */
.feature-block {
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border-color);
}

.feature-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.feature-image {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.feature-content p {
    margin-bottom: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0 0;
}

.feature-list li {
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
}

.feature-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-right: 0.75rem;
    color: var(--accent);
}

/* DRM Systems */
.drm-systems {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.drm-system {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    flex: 1;
    margin: 0 0.5rem;
}

.drm-system i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.drm-system span {
    display: block;
    font-weight: 500;
}

.security-features {
    background-color: var(--bg-light);
    border-radius: 8px;
    padding: 1.5rem;
}

.security-features h4 {
    margin-bottom: 1rem;
}

.security-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.security-feature:last-child {
    margin-bottom: 0;
}

.security-feature i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary);
}

.security-feature h5 {
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.security-feature p {
    margin-bottom: 0;
    color: var(--text-medium);
}

/* Use Cases
-------------------------------------------------- */
.use-case-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.use-case-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.use-case-content {
    padding: 2rem;
}

.use-case-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.use-case-content h4 {
    font-size: 1.25rem;
    margin: 1.5rem 0 0.75rem;
}

.use-case-content p {
    color: var(--text-medium);
}

.use-case-content ul {
    padding-left: 1.5rem;
    margin-bottom: 0;
}

.use-case-content ul li {
    margin-bottom: 0.5rem;
}

.use-case-content ul li:last-child {
    margin-bottom: 0;
}

/* Contact Form
-------------------------------------------------- */
.contact-form-container {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-label {
    font-weight: 500;
}

.form-control {
    padding: 0.75rem 1rem;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

.form-control:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 0.25rem rgba(0, 160, 227, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.iti {
    width: 100%;
}

/* Footer
-------------------------------------------------- */
.footer {
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    color: var(--text-light);
    padding: 5rem 0 2rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
}

.footer a:hover {
    color: #fff;
}

.footer h5 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.footer-contact p i {
    margin-right: 0.75rem;
    width: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li a {
    position: relative;
    padding-left: 1rem;
    transition: padding 0.3s ease;
}

.footer-links li a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateX(-10px);
}

.footer-links li a:hover {
    padding-left: 1.5rem;
}

.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-cta {
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    color: rgba(255, 255, 255, 0.7);
}

hr {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0;
}

/* Modal Styling
-------------------------------------------------- */
.modal-content {
    border: none;
    border-radius: 8px;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    color: #fff;
    border-bottom: none;
    padding: 1.5rem;
}

.modal-body {
    padding: 2rem;
}

.modal-footer {
    border-top: none;
    padding: 1.5rem;
}

.btn-close {
    color: #fff;
    opacity: 0.8;
}

.btn-close:hover {
    opacity: 1;
}

/* Cookie Consent
-------------------------------------------------- */
.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.1);
    z-index: 1050;
    padding: 1.5rem 0;
    display: none;
}

.cookie-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.cookie-categories {
    margin: 1.5rem 0;
}

.cookie-category {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category label {
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
}

.cookie-category label span {
    margin-left: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-medium);
    font-weight: normal;
}

.cookie-category p {
    margin-bottom: 0;
    color: var(--text-medium);
    font-size: 0.9rem;
    margin-left: 1.75rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-settings-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1040;
}

.cookie-settings-button button {
    background-color: #fff;
    border: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.cookie-settings-button button:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.cookie-settings-button i {
    margin-right: 0.5rem;
}

/* Corporate Responsibility Page
-------------------------------------------------- */
.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.section-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.section-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.section-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.section-content p {
    margin-bottom: 1rem;
}

.image-container {
    position: relative;
}

.stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.stat-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.stat-value {
    font-size: 2rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-medium);
    font-size: 0.9rem;
}

.accessibility-features {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.accessibility-feature {
    display: flex;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.accessibility-feature:last-child {
    margin-bottom: 0;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* SLA & Guarantees Page
-------------------------------------------------- */
.note-box {
    background-color: var(--bg-light);
    border-left: 4px solid var(--secondary);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.sla-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
    overflow: hidden;
}

.sla-header {
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    color: #fff;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sla-header h3 {
    margin-bottom: 0;
    font-size: 1.5rem;
}

.sla-value {
    font-size: 1.75rem;
    font-weight: 600;
    background-color: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 50px;
}

.sla-content {
    padding: 1.5rem;
}

.sla-content p {
    margin-bottom: 1rem;
}

.sla-content ul {
    margin-bottom: 1.5rem;
}

.sla-formula {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 4px;
    font-family: var(--font-monospace);
    text-align: center;
    margin: 1rem 0;
}

.important-note {
    background-color: rgba(var(--accent-rgb), 0.1);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
}

.sla-table-container,
.severity-table-container,
.sla-credit-table-container,
.cookie-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.sla-table,
.severity-table,
.sla-credit-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
}

.sla-table th,
.severity-table th,
.sla-credit-table th,
.cookie-table th {
    background-color: var(--primary);
    color: #fff;
    padding: 1rem;
    text-align: left;
}

.sla-table td,
.severity-table td,
.sla-credit-table td,
.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.sla-table tr:last-child td,
.severity-table tr:last-child td,
.sla-credit-table tr:last-child td,
.cookie-table tr:last-child td {
    border-bottom: none;
}

.severity-table .severity-p1 {
    background-color: rgba(255, 92, 53, 0.1);
}

.severity-table .severity-p2 {
    background-color: rgba(255, 153, 0, 0.1);
}

.severity-table .severity-p3 {
    background-color: rgba(255, 204, 0, 0.1);
}

.severity-table .severity-p4 {
    background-color: rgba(0, 160, 227, 0.1);
}

.latency-optimization-note {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.latency-optimization-note h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.latency-optimization-note ul {
    margin-bottom: 0;
}

.monitoring-card {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    height: 100%;
}

.monitoring-card .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.75rem;
}

.monitoring-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.security-item {
    display: flex;
    align-items: flex-start;
}

.security-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    color: #fff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.security-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.security-content p {
    color: var(--text-medium);
    margin-bottom: 0;
}

/* Contact Page
-------------------------------------------------- */
.contact-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-card .icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.75rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-card p {
    margin-bottom: 0.5rem;
}

.contact-card p:last-of-type {
    margin-bottom: 1.5rem;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.contact-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-departments h3 {
    position: relative;
}

.contact-departments h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.department-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.department-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.department-card h4 i {
    margin-right: 0.75rem;
    color: var(--primary);
}

.department-card p {
    margin-bottom: 0.75rem;
}

.location-details {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.location-details h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.address {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.address i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: var(--primary);
}

.address p {
    margin-bottom: 0.25rem;
}

.location-info h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.location-info p {
    margin-bottom: 1rem;
}

.map-container {
    height: 100%;
    min-height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
    height: 100%;
    width: 100%;
    border: none;
}

.hours-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.hours-card.highlight {
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    color: #fff;
}

.hours-card .icon-container {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.75rem;
}

.hours-card.highlight .icon-container {
    background: rgba(255, 255, 255, 0.2);
}

.hours-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
    text-align: left;
}

.hours-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.hours-card.highlight .hours-list li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span {
    font-weight: 500;
}

.hours-card .note {
    font-size: 0.9rem;
    color: var(--text-medium);
}

.hours-card.highlight .note {
    color: rgba(255, 255, 255, 0.8);
}

.time-zones h3 {
    position: relative;
}

.time-zones h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.timezone-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.timezone-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.timezone-card p {
    margin-bottom: 0.5rem;
}

.timezone-card p:last-child {
    margin-bottom: 0;
}

/* Legal Pages (Privacy, Terms, Cookie Policy)
-------------------------------------------------- */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.legal-section h3 {
    font-size: 1.35rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section p {
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    margin-bottom: 0.5rem;
}

.contact-info {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

/* Thank You Page
-------------------------------------------------- */
.thanks-section {
    text-align: center;
}

.thanks-icon {
    font-size: 5rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.thanks-section h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.thanks-message {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-message p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.next-step-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-color-1), var(--gradient-color-2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #fff;
    font-size: 1.5rem;
}

.next-step-card h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-align: center;
}

.next-step-card p {
    color: var(--text-medium);
    margin-bottom: 0;
}

.explore-card {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.explore-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.explore-content {
    padding: 1.5rem;
}

.explore-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.explore-content p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

/* Responsive Adjustments
-------------------------------------------------- */
@media (max-width: 1199.98px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 991.98px) {
    .nav-preview {
        width: 100%;
        left: 0;
    }
    
    .hero-content h1 {
        font-size: 2.25rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .feature-block .row {
        flex-direction: column-reverse;
    }
    
    .feature-block .order-lg-0 {
        order: 0 !important;
    }
    
    .feature-block .order-lg-1 {
        order: 1 !important;
    }
    
    .feature-image {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        margin-bottom: 0.5rem;
    }
    
    .drm-systems {
        flex-direction: column;
    }
    
    .drm-system {
        margin: 0 0 1rem 0;
    }
    
    .thanks-icon {
        font-size: 4rem;
    }
    
    .thanks-section h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 575.98px) {
    .hero-content h1 {
        font-size: 1.75rem;
    }
    
    .hero-slide {
        height: 450px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .sla-header {
        flex-direction: column;
    }
    
    .sla-value {
        margin-top: 1rem;
    }
    
    .thanks-cta {
        flex-direction: column;
    }
    
    .thanks-cta .btn {
        margin: 0.5rem 0;
    }
    
    .thanks-cta .ms-3 {
        margin-left: 0 !important;
    }
}

/* Animation Keyframes
-------------------------------------------------- */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.slide-in-up {
    animation: slideInUp 0.6s ease forwards;
}

/* Print Styles
-------------------------------------------------- */
@media print {
    .navbar,
    .cookie-consent-banner,
    .cookie-settings-button,
    .footer {
        display: none !important;
    }
    
    body {
        background-color: #fff;
        color: #000;
        font-size: 12pt;
    }
    
    .container {
        max-width: 100%;
        width: 100%;
    }
    
    a {
        color: #000;
        text-decoration: underline;
    }
    
    .page-header {
        background: none;
        color: #000;
        padding: 1rem 0;
    }
    
    .page-header h1 {
        color: #000;
    }
    
    .legal-content {
        max-width: 100%;
    }
}