/* Global Styles & Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #0088cc;
    --primary-dark: #006699;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-dark: #0a1a2a;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    font-weight: 300;
    line-height: 1.8;
    color: var(--text-medium);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    color: var(--text-dark);
    line-height: 1.3;
    letter-spacing: -0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Modern Navigation Bar - 专业设计，始终可见 */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #ffffff;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid rgba(0, 136, 204, 0.1);
}

.navbar.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.18);
    padding: 1rem 0;
}

.navbar .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand img {
    height: 75px;
    transition: transform 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-center {
    display: flex;
    flex: 1;
    justify-content: center;
}

.navbar-nav {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-item > a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-item > a:hover {
    color: var(--primary-color);
}

/* Dropdown - 隐藏下拉菜单功能 */
.nav-item.has-dropdown > a::after {
    content: '';
    display: none;
}

.dropdown-menu {
    display: none !important;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.btn-login {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: var(--text-dark) !important;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    border: none;
    margin-right: 0.5rem;
}

.btn-login:hover {
    background: rgba(0, 136, 204, 0.1);
    color: var(--primary-color) !important;
}

.btn-get-started {
    padding: 0.75rem 1.75rem;
    background: var(--primary-color);
    color: white !important;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 2px solid var(--primary-color);
}

.btn-get-started:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.navbar-lang {
    display: flex;
    gap: 0.5rem;
    padding-left: 1.5rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.lang-btn {
    padding: 0.5rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    background: transparent;
    color: var(--text-dark);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    min-height: 85vh;
    padding-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 26, 42, 0.95) 0%, rgba(0, 50, 100, 0.9) 100%),
                url('../images/hero-bg.jpg') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

.hero .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    padding: 0 4rem;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
}

.hero p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    margin-bottom: 1.5rem;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Sections */
.section-full-width {
    width: 100%;
}

.section-spacing {
    padding: 120px 0;
}

.section-bg-light {
    background: var(--bg-light);
}

.section-bg-white {
    background: white;
}

.section-bg-dark {
    background: linear-gradient(135deg, #0a1a2a 0%, #1a3a5a 100%);
    color: white;
}

.section-bg-dark h2, .section-bg-dark h3, .section-bg-dark p {
    color: white;
}

/* Content Split */
.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.content-split.reverse {
    direction: rtl;
}

.content-split.reverse > * {
    direction: ltr;
}

.content-image img {
    width: 100%;
    height: auto;
    min-height: 350px;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.overview-list li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.overview-list li i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Grids */
.value-grid, .capabilities-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.value-item, .capability-item, .feature-item {
    padding: 3rem 2rem;
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.value-item:hover, .capability-item:hover, .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.value-icon, .capability-icon, .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    background: rgba(0, 136, 204, 0.05);
    border-radius: 50%;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
}

.testimonial-item {
    padding: 3rem;
    background: white;
    border-left: 3px solid var(--primary-color);
}

.testimonial-content p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author h4 {
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: white;
    text-align: center;
    padding: 120px 0;
}

.cta h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.cta p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a1a2a 0%, #000510 100%);
    color: rgba(255, 255, 255, 0.8);
    padding: 100px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 4rem;
}

.footer-brand h3, .footer-links h4, .footer-contact h4 {
    color: white;
    margin-bottom: 1.5rem;
}

.footer-brand .tagline {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links ul, .footer-contact ul {
    list-style: none;
}

.footer-links li, .footer-contact li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.6);
}

.footer-contact li i {
    color: var(--primary-color);
    min-width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 4rem;
    padding-right: 4rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal-links {
    display: flex;
    gap: 2rem;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.4);
    transition: color 0.3s ease;
}

.footer-legal-links a:hover {
    color: var(--primary-color);
}

/* Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.form-group input, .form-group textarea, .form-group select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: white;
    font-size: 1rem;
    font-family: inherit;
    border-radius: 4px;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
}

/* Responsive */
@media (max-width: 968px) {
    .navbar-nav {
        flex-direction: column;
        gap: 1rem;
    }

    .navbar .container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .content-split {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .navbar .container,
    .content-split,
    .value-grid,
    .footer-content {
        padding: 0 1.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Animations */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   MODERN CASE STUDY CARDS - REDESIGNED
   ============================================ */
.case-study-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.case-study-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), #00b4d8);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.case-study-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 70px rgba(0, 136, 204, 0.25);
}

.case-study-card:hover::before {
    opacity: 1;
}

.case-study-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-card:hover img {
    transform: scale(1.08);
}

.case-study-content {
    padding: 2.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: white;
}

.industry-tag {
    display: inline-block;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--primary-color), #00b4d8);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.case-study-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.case-study-content > p {
    color: var(--text-medium);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.case-study-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(0, 136, 204, 0.1);
}

.stat {
    text-align: center;
    padding: 1rem 0;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.03), rgba(0, 180, 216, 0.03));
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat:hover {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.08), rgba(0, 180, 216, 0.08));
    transform: translateY(-3px);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for case study cards */
@media (max-width: 968px) {
    .case-study-card img {
        height: 250px;
    }

    .case-study-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat {
        padding: 0.8rem 0;
    }
}

@media (max-width: 640px) {
    .case-study-content {
        padding: 2rem 1.5rem;
    }

    .case-study-content h3 {
        font-size: 1.5rem;
    }

    .stat-value {
        font-size: 1.6rem;
    }
}

/* ============================================
   PLATFORM PAGE - MODERN REDESIGN
   ============================================ */

/* Platform Hero Section */
.platform-hero {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #0a1929 0%, #1a3a52 50%, #0d2d45 100%);
}

.platform-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 136, 204, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 180, 216, 0.1) 0%, transparent 50%);
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.7rem 1.5rem;
    background: rgba(0, 136, 204, 0.15);
    border: 1px solid rgba(0, 136, 204, 0.3);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-label i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.hero-subtitle-large {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem) !important;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95) !important;
    margin-bottom: 1rem !important;
}

.btn-large {
    padding: 1.2rem 3rem !important;
    font-size: 1.1rem !important;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.btn-large i {
    font-size: 1rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ffffff, #00b4d8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

/* Section Badges */
.section-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(0, 180, 216, 0.1));
    border: 1px solid rgba(0, 136, 204, 0.2);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 1rem auto 0;
}

/* Platform Features Grid */
.platform-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.platform-feature-card {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.platform-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00b4d8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.platform-feature-card:hover::before {
    transform: scaleX(1);
}

.platform-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 136, 204, 0.15);
    border-color: rgba(0, 136, 204, 0.2);
}

.platform-feature-card.featured {
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.03), rgba(0, 180, 216, 0.02));
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.platform-feature-card.featured:hover {
    transform: translateY(-8px) scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, var(--primary-color), #00b4d8);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.3);
}

.feature-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-card-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 136, 204, 0.1), rgba(0, 180, 216, 0.08));
    border-radius: 16px;
    font-size: 2rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.platform-feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, var(--primary-color), #00b4d8);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.feature-card-badge {
    padding: 0.4rem 1rem;
    background: rgba(0, 136, 204, 0.08);
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.platform-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.platform-feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.feature-highlights {
    list-style: none;
    padding: 1.5rem 0 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.feature-highlights li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.6rem 0;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.feature-highlights li i {
    color: var(--primary-color);
    font-size: 0.9rem;
    background: rgba(0, 136, 204, 0.1);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Responsive adjustments for platform page */
@media (max-width: 968px) {
    .platform-hero {
        min-height: 70vh;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .platform-features-grid {
        grid-template-columns: 1fr;
        padding: 0 2rem;
    }

    .platform-feature-card.featured {
        transform: scale(1);
    }

    .platform-feature-card.featured:hover {
        transform: translateY(-8px) scale(1);
    }
}

@media (max-width: 640px) {
    .hero-stats {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .btn-large {
        padding: 1rem 2rem !important;
        font-size: 1rem !important;
    }
}

/* Legal Pages Content Styling - 不要全宽 */
.privacy-content,
.terms-content,
.cookie-content,
.sla-content,
.dpa-content {
    padding: 80px 0;
    background: #fff;
}

.privacy-content .container,
.terms-content .container,
.cookie-content .container,
.sla-content .container,
.dpa-content .container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-content .content-container,
.terms-content .content-container,
.cookie-content .content-container,
.sla-content .content-container,
.dpa-content .content-container {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

.privacy-content h2,
.terms-content h2,
.cookie-content h2,
.sla-content h2,
.dpa-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.privacy-content h2:first-child,
.terms-content h2:first-child,
.cookie-content h2:first-child,
.sla-content h2:first-child,
.dpa-content h2:first-child {
    margin-top: 0;
}

.privacy-content ul,
.terms-content ul,
.cookie-content ul,
.sla-content ul,
.dpa-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding-left: 1rem;
}

.privacy-content li,
.terms-content li,
.cookie-content li,
.sla-content li,
.dpa-content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.privacy-content .last-updated,
.terms-content .last-updated,
.cookie-content .last-updated,
.sla-content .last-updated,
.dpa-content .last-updated {
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
    color: var(--text-light);
    font-size: 0.9rem;
    font-style: italic;
}
