@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700;800&family=Roboto:wght@400;500;700;900&display=swap');

:root {
    /* Pure Corporate Palette (OVH / Ionos Style) */
    --corporate-navy: #00185A;  /* Deep Navy Blue */
    --corporate-blue: #0050D2;  /* Standard Blue Action */
    --corporate-light-blue: #EAF0FA; /* Background highlights */
    --corporate-gray-bg: #F5F7FA;
    --corporate-border: #D1D5DB;
    --corporate-success: #10B981;
    --corporate-warning: #F59E0B;
    
    --primary: var(--corporate-blue);
    --secondary: var(--corporate-navy);

    /* Backgrounds */
    --bg-main: var(--corporate-gray-bg);
    --bg-white: #FFFFFF;
    
    /* Text */
    --text-dark: #111827;
    --text-body: #4B5563;
    --text-muted: #6B7280;
    
    --font-heading: 'Roboto', sans-serif;
    --font-body: 'Open Sans', sans-serif;
    
    --radius-card: 6px;   /* Very strict but elegant */
    --radius-btn: 6px;    /* Rectangular buttons with a micro-curve */
    --transition: all 0.2s ease-in-out;
    
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background-color: var(--bg-main);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--secondary);
    font-weight: 700;
}

/* =========================================
   HEADER & NAVIGATION
========================================= */
.navigation-bar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--corporate-border);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-bar::before {
    content: '';
    display: block;
    height: 4px;
    width: 100%;
    background: var(--corporate-navy);
    position: absolute;
    top: 0;
    left: 0;
}

.navigation-bar .container {
    padding-top: 15px;
    padding-bottom: 15px;
}

.logo img {
    height: 35px;
    width: auto;
}

.navbar-nav .nav-item-link {
    color: var(--secondary) !important;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    padding: 20px 25px !important;
    transition: var(--transition);
}

.navbar-nav .nav-item-link:hover {
    color: var(--primary) !important;
    background: var(--corporate-light-blue);
}

/* Dropdown */
.nav-item-dropdown:hover .dropdown-content {
    display: block;
}
.nav-item-dropdown { position: relative; }

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 250px;
    box-shadow: var(--shadow-hover);
    border: 1px solid var(--corporate-border);
    border-top: none;
    padding: 0;
    z-index: 1100;
}

.dropdown-content a {
    color: var(--text-dark) !important;
    padding: 15px 25px;
    text-decoration: none;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #f3f4f6;
    transition: var(--transition);
}

.dropdown-content a i {
    width: 20px;
    margin-right: 15px;
    color: var(--primary);
    font-size: 16px;
}

.dropdown-content a:hover {
    background: var(--corporate-light-blue);
    color: var(--primary) !important;
}

.btn-client {
    background: var(--bg-white);
    color: var(--primary) !important;
    border: 1px solid var(--primary);
    padding: 8px 20px !important;
    border-radius: var(--radius-btn);
    font-weight: 600;
    margin-left: 20px;
    transition: var(--transition);
    text-decoration: none !important;
}

.btn-client:hover {
    background: var(--primary);
    color: var(--bg-white) !important;
}

/* ==========================================
   HERO SECTIONS
========================================== */
.hero-index, .hero-kb, .hero-web {
    background: linear-gradient(135deg, var(--corporate-navy) 0%, #002888 100%);
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(135deg, var(--corporate-navy) 0%, #002888 100%);
    background-size: 20px 20px, 100% 100%;
    color: var(--bg-white);
    padding: 100px 0;
    text-align: left;
    border-bottom: 4px solid var(--primary);
}

.hero-title, .dynamic-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--bg-white);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 30px;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
}

.btn-primary-custom, .btn-hero {
    background: var(--primary);
    color: var(--bg-white) !important;
    padding: 14px 35px;
    border-radius: var(--radius-btn);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
    border: none;
}

.btn-primary-custom:hover, .btn-hero:hover {
    background: #0040A8; /* Darker blue */
}

/* =========================================
   QUICK LINKS (Directly below hero)
========================================= */
.quick-links-container {
    background: var(--bg-white);
    border-bottom: 1px solid var(--corporate-border);
    padding: 30px 0 10px;
}
.ql-card {
    background: var(--bg-white);
    border: 1px solid var(--corporate-border);
    border-radius: var(--radius-card);
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: var(--transition);
    text-decoration: none !important;
    height: 100%;
}
.ql-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-soft);
}
.ql-card i {
    font-size: 30px;
    color: var(--primary);
    margin-bottom: 15px;
}
.ql-card span {
    font-weight: 600;
    color: var(--secondary);
    font-size: 14px;
    text-transform: uppercase;
}

/* =========================================
   DOMAIN SEARCH
========================================= */
.domain-search-sec {
    background: var(--corporate-navy);
    padding: 50px 0;
    color: var(--bg-white);
}

.domain-search-sec .section-title {
    color: var(--bg-white);
}

.domain-input-group {
    border-radius: var(--radius-btn);
    overflow: hidden;
    background: var(--bg-white);
    display: flex;
    padding: 4px;
}

.domain-input-group input {
    border: none;
    padding: 15px 20px;
    font-size: 18px;
    font-family: var(--font-body);
    color: var(--text-dark);
    flex-grow: 1;
    box-shadow: none !important;
}

.domain-input-group input:focus { outline: none; }

.btn-search {
    background: var(--primary);
    color: var(--bg-white);
    font-weight: 700;
    padding: 0 40px;
    border-radius: var(--radius-btn);
    font-size: 16px;
    border: none;
    transition: var(--transition);
}

.btn-search:hover {
    background: #0040A8;
}

.tld-pricing {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
}

.tld-item {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}
.tld-item span {
    color: var(--bg-white);
    font-weight: 700;
    font-size: 16px;
}

/* =========================================
   PRODUCTS GRID & CARDS
========================================= */
.products-sec {
    padding: 60px 0;
}

.section-title, .ext-section-title {
    font-weight: 800;
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 40px;
    text-align: center;
}

.product-box, .news-card, .plan-card, .main-card, .ambition-card, .cgv-main-card, .annonce-card, .app-card, .secu-card, .game-card, .info-card {
    background: var(--bg-white);
    border: 1px solid var(--corporate-border);
    border-radius: var(--radius-card);
    padding: 40px 30px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none !important;
}

.product-box:hover, .news-card:hover, .plan-card:hover, .main-card:hover, .ambition-card:hover, .cgv-main-card:hover, .annonce-card:hover, .app-card:hover, .secu-card:hover, .game-card:hover, .info-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}

.product-box h3, .news-card h3, .plan-card h3, .main-card h3, .ambition-card h3, .cgv-main-card h3, .annonce-card h3, .app-card h3, .secu-card h3, .game-card h3, .info-card h3,
.product-box h2, .news-card h2, .plan-card h2, .main-card h2, .ambition-card h2, .cgv-main-card h2, .annonce-card h2, .app-card h2, .secu-card h2, .game-card h2, .info-card h2 {
    font-weight: 700;
    font-size: 20px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.product-box p, .news-card p, .plan-card p, .main-card p, .ambition-card p, .cgv-main-card p, .annonce-card p, .app-card p, .secu-card p, .game-card p, .info-card p {
    font-size: 15px;
    color: var(--text-body);
}

.link-arrow {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
}

.product-box:hover .link-arrow, .news-card:hover .link-arrow {
    text-decoration: underline;
}

/* Icons inside cards */
.plan-icon i, .ambition-icon i, .author-work-icon i, .slide-icon i, .feat-icon i, .offer-icon i, .tech-icon i {
    font-size: 35px;
    color: var(--primary);
    margin-bottom: 20px;
}

/* =========================================
   PRICING CARDS
========================================= */
.plan-card {
    text-align: center;
    position: relative;
    padding: 0;
}

.plan-card.recommended {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-hover);
    z-index: 10;
}

.best-val-label {
    background: var(--primary);
    color: var(--bg-white);
    font-weight: 700;
    padding: 6px 0;
    font-size: 12px;
    text-transform: uppercase;
    display: block;
}

.plan-name {
    color: var(--secondary);
    font-size: 22px;
    font-weight: 700;
    padding-top: 20px;
}

.price-box {
    background: var(--corporate-gray-bg);
    padding: 20px;
    margin: 20px 0;
    border-top: 1px solid var(--corporate-border);
    border-bottom: 1px solid var(--corporate-border);
}

.price-big {
    color: var(--secondary);
    font-size: 40px;
    font-weight: 800;
}

.feat-list {
    padding: 0 20px;
    list-style: none;
    margin-bottom: 20px;
}
.feat-list li {
    color: var(--text-dark);
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #e5e7eb;
    text-align: left;
    display: flex;
    align-items: center;
}
.feat-list li i {
    color: var(--corporate-success);
    margin-right: 15px;
    font-size: 16px;
}

.btn-choose {
    display: block;
    margin: 0 20px 20px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    padding: 12px 0;
}
.btn-choose.btn-blue {
    background: var(--bg-white);
    color: var(--primary) !important;
    border: 1px solid var(--primary);
}
.btn-choose.btn-blue:hover {
    background: var(--corporate-light-blue);
}
.btn-choose.btn-red {
    background: var(--primary);
    color: var(--bg-white) !important;
    border: 1px solid var(--primary);
}
.btn-choose.btn-red:hover {
    background: #0040A8;
}

/* =========================================
   FAQ / ACCORDION
========================================= */
.kb-search-box {
    background: var(--bg-white);
    border: 1px solid var(--corporate-border);
    padding: 4px;
    border-radius: var(--radius-btn);
    display: flex;
}

.kb-search-box input {
    background: transparent;
    border: none;
    color: var(--text-dark);
    padding: 12px 20px;
    flex-grow: 1;
    font-size: 16px;
}
.kb-search-box input:focus { outline: none; }

.kb-search-box button {
    background: var(--secondary);
    border-radius: var(--radius-btn);
    padding: 0 30px;
    color: var(--bg-white);
    font-weight: 600;
    border: none;
}

.accordion .card {
    background: var(--bg-white);
    border: 1px solid var(--corporate-border);
    border-radius: var(--radius-card) !important;
    margin-bottom: 10px;
}

.accordion .card-header {
    background: var(--corporate-gray-bg);
    padding: 0;
    border-bottom: 1px solid var(--corporate-border);
}

.accordion .btn-link {
    color: var(--secondary);
    font-weight: 600;
    font-size: 16px;
    padding: 15px 20px;
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none !important;
}

.accordion .btn-link:hover, .accordion .btn-link[aria-expanded="true"] {
    text-decoration: underline !important;
}

.accordion .card-body {
    color: var(--text-body);
    padding: 20px;
    font-size: 15px;
}

/* =========================================
   FOOTER & TRUST
========================================= */
.trust-bar {
    background: var(--corporate-gray-bg);
    border-top: 1px solid var(--corporate-border);
    padding: 50px 0;
}

.trust-item {
    text-align: center;
    padding: 10px;
}
.trust-item h4 {
    color: var(--secondary);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}
.trust-item p {
    color: var(--text-body);
    font-size: 14px;
}
.trust-item i {
    font-size: 35px;
    color: var(--primary);
    margin-bottom: 15px;
}

.footer-area {
    background: var(--bg-white);
    color: var(--text-body);
    border-top: 1px solid var(--corporate-border);
    padding: 60px 0 20px;
}

.footer-title {
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 16px;
}

.footer-links-list { list-style: none; padding: 0; }
.footer-links-list li { margin-bottom: 10px; }
.footer-links-list a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    font-size: 14px;
}

.footer-links-list a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid var(--corporate-border);
    margin-top: 40px;
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 13px;
}

/* =========================================
   GENERIC HERO (Subpages)
========================================= */
.hero-vps, .hero-status, .hero-kb, .hero-web, .hero-team, .hero-about, .hero-cgv, .hero-annonces, .hero-cloud, .hero-ptero, .hero-gaming, .hero-reseller, .hero-announcement, .hero-secu, .hero-doc, .hero-mail, .hero-bot, .hero-contact {
    background: linear-gradient(135deg, var(--corporate-navy) 0%, #002888 100%);
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px), linear-gradient(135deg, var(--corporate-navy) 0%, #002888 100%);
    background-size: 20px 20px, 100% 100%;
    color: var(--bg-white);
    padding: 100px 0;
    text-align: center;
    border-bottom: 4px solid var(--primary);
}

.hero-vps p, .hero-status p, .hero-kb p, .hero-web p, .hero-team p, .hero-about p, .hero-cgv p, .hero-annonces p, .hero-cloud p, .hero-ptero p, .hero-gaming p, .hero-reseller p, .hero-announcement p, .hero-secu p, .hero-doc p, .hero-mail p, .hero-bot p, .hero-contact p {
    font-size: 18px;
    max-width: 700px;
    margin: 20px auto 0;
    color: rgba(255,255,255,0.9);
}

.hero-vps h1, .hero-status h1, .hero-kb h1, .hero-web h1, .hero-team h1, .hero-about h1, .hero-cgv h1, .hero-annonces h1, .hero-cloud h1, .hero-ptero h1, .hero-gaming h1, .hero-reseller h1, .hero-announcement h1, .hero-secu h1, .hero-doc h1, .hero-mail h1, .hero-bot h1, .hero-contact h1 {
    color: #ffffff !important;
}

/* =========================================
   VPS CARDS & TECH BOXES
========================================= */
.pricing-area, .tech-features {
    padding: 60px 0;
}

.vps-card {
    background: var(--bg-white);
    border: 1px solid var(--corporate-border);
    border-radius: var(--radius-card);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.vps-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-hover);
}
.vps-card.recommended {
    border: 2px solid var(--primary);
    box-shadow: var(--shadow-hover);
}
.popular-badge {
    background: var(--primary);
    color: var(--bg-white);
    font-weight: 700;
    padding: 6px 0;
    font-size: 12px;
    text-transform: uppercase;
    position: absolute;
    top: 0; left: 0; width: 100%;
}
.offer-icon {
    font-size: 40px;
    color: var(--primary);
    margin: 20px 0;
}
.vps-card.recommended .offer-icon {
    width: 80px; height: 80px;
    line-height: 80px;
    background: var(--corporate-light-blue);
    border-radius: 50%;
    margin: 30px auto 20px;
    font-size: 35px;
}
.vps-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
}
.price-suffix {
    font-size: 14px;
    color: var(--text-muted);
    display: block;
}
.vps-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}
.vps-specs li {
    padding: 10px 0;
    border-bottom: 1px solid var(--corporate-gray-bg);
    font-size: 14px;
    display: flex;
    align-items: center;
}
.vps-specs li i {
    width: 20px;
    color: var(--corporate-success);
    margin-right: 10px;
}
.btn-order {
    margin-top: auto;
    display: block;
    padding: 12px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: var(--transition);
}
.btn-outline {
    border: 1px solid var(--primary);
    color: var(--primary) !important;
}
.btn-outline:hover {
    background: var(--corporate-light-blue);
}
.btn-solid {
    background: var(--primary);
    color: var(--bg-white) !important;
}
.btn-solid:hover {
    background: #0040A8;
}

.tech-box {
    display: flex;
    background: var(--bg-white);
    border: 1px solid var(--corporate-border);
    padding: 30px;
    border-radius: var(--radius-card);
    height: 100%;
    transition: var(--transition);
}
.tech-box:hover {
    box-shadow: var(--shadow-soft);
}
.tech-icon {
    font-size: 35px;
    color: var(--primary);
    margin-right: 20px;
}
.tech-content h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary);
}
.tech-content p {
    font-size: 14px;
    margin: 0;
}

/* =========================================
   STATUS PAGE
========================================= */
.status-area {
    padding: 60px 0;
}
.status-global {
    background: rgba(255,255,255,0.1);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    border: 1px solid rgba(255,255,255,0.2);
}
.status-dot {
    display: inline-block;
    width: 12px; height: 12px;
    background: var(--corporate-success);
    border-radius: 50%;
    margin-right: 10px;
}
.category-card {
    background: var(--bg-white);
    border: 1px solid var(--corporate-border);
    border-radius: var(--radius-card);
    margin-bottom: 30px;
}
.category-header {
    background: var(--corporate-gray-bg);
    padding: 15px 20px;
    border-bottom: 1px solid var(--corporate-border);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.category-header h3 {
    margin: 0;
    font-size: 16px;
    display: flex;
    align-items: center;
}
.category-header h3 i {
    width: 25px;
}
.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border-bottom: 1px solid var(--corporate-gray-bg);
}
.service-item:last-child {
    border-bottom: none;
}
.service-info {
    display: flex;
    align-items: center;
}
.service-info i {
    width: 30px;
    font-size: 20px;
    color: var(--text-muted);
}
.service-name {
    display: block;
    font-weight: 600;
    color: var(--secondary);
}
.service-link {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
}
.status-badge {
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    color: var(--bg-white);
}
.bg-online {
    background: var(--corporate-success);
}
.bg-offline {
    background: #EF4444; /* Red */
}

/* =========================================
   ANIMATIONS
========================================= */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes floatUpDown {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.hero-floating-img {
    animation: floatUpDown 4s ease-in-out infinite;
}

.product-box, .news-card, .plan-card, .vps-card, .tech-box, .category-card, .ql-card, .main-card, .ambition-card, .cgv-main-card, .annonce-card, .app-card, .secu-card, .game-card, .info-card {
    animation: fadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* Staggered cascading delays for grid items */
.row > div:nth-child(1) .product-box, .row > div:nth-child(1) .news-card, .col-lg-4:nth-child(1) .vps-card, .col-lg-6:nth-child(1) .tech-box, .col-6:nth-child(1) .ql-card { animation-delay: 0.05s; }
.row > div:nth-child(2) .product-box, .row > div:nth-child(2) .news-card, .col-lg-4:nth-child(2) .vps-card, .col-lg-6:nth-child(2) .tech-box, .col-6:nth-child(2) .ql-card { animation-delay: 0.1s; }
.row > div:nth-child(3) .product-box, .row > div:nth-child(3) .news-card, .col-lg-4:nth-child(3) .vps-card, .col-lg-6:nth-child(3) .tech-box, .col-6:nth-child(3) .ql-card { animation-delay: 0.15s; }
.row > div:nth-child(4) .product-box, .col-lg-6:nth-child(4) .tech-box, .col-6:nth-child(4) .ql-card { animation-delay: 0.2s; }
.row > div:nth-child(5) .product-box { animation-delay: 0.25s; }
.row > div:nth-child(6) .product-box { animation-delay: 0.3s; }

.col-lg-6:nth-child(1) .category-card { animation-delay: 0.05s; }
.col-lg-6:nth-child(2) .category-card { animation-delay: 0.1s; }
.col-lg-6:nth-child(3) .category-card { animation-delay: 0.15s; }
.col-lg-6:nth-child(4) .category-card { animation-delay: 0.2s; }
.col-lg-6:nth-child(5) .category-card { animation-delay: 0.25s; }
.col-lg-6:nth-child(6) .category-card { animation-delay: 0.3s; }

/* Responsive fixes */
@media (max-width: 991px) {
    .hero-title { font-size: 32px; text-align: center; }
    .hero-subtitle { text-align: center; }
    .hero-index { text-align: center; padding: 50px 0; }
    .navbar-collapse {
        background: var(--bg-white);
        padding: 15px;
        border: 1px solid var(--corporate-border);
        margin-top: 10px;
    }
    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        padding-left: 15px;
        display: none;
        border-left: 2px solid var(--primary);
    }
}
/* =========================================
   SIDEBAR & CONTENT SECTIONS (Legal, FAQ, etc)
========================================= */
.cgv-area {
    padding: 60px 0;
    background: var(--bg-soft);
}

.cgv-sidebar {
    position: sticky;
    top: 100px;
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius-card);
    border: 1px solid var(--corporate-border);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.cgv-sidebar h4 {
    font-weight: 800;
    color: var(--corporate-navy);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-soft);
}

.sidebar-link {
    display: block;
    padding: 12px 15px;
    margin-bottom: 8px;
    color: var(--text-body);
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none !important;
    transition: var(--transition);
    border: 1px solid transparent;
}

.sidebar-link:hover, .sidebar-link.active {
    background: var(--primary);
    color: #fff;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(16, 185, 129, 0.2);
}

.cgv-main-card {
    background: var(--bg-white);
    border: 1px solid var(--corporate-border);
    border-radius: var(--radius-card);
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.02);
}

.cgv-section {
    margin-bottom: 40px;
}

.cgv-section h3 {
    color: var(--corporate-navy);
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bg-soft);
}

.cgv-section p, .cgv-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 15px;
}

.cgv-section ul {
    padding-left: 20px;
    margin-bottom: 20px;
}
