:root {
    --accent-color: #3b82f6;
    --accent-dark: #2563eb;
    --dark-bg: #0f1116;
    --card-bg: #181a23;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --granite-blue: #5c7e9e;
    --granite-blue-light: #6d8dad;
    --granite-blue-dark: #4a6a87;
    --card-border: rgba(92, 126, 158, 0.15);
    --success: #10b981;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
}


header {
    backdrop-filter: blur(10px);
    background-color: rgba(15, 17, 22, 0.95);
    border-bottom: 1px solid rgba(92, 126, 158, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}


.logo-container {
    display: flex;
    align-items: center;
    position: relative;
}

.logo-orbits {
    position: relative;
    width: 40px;
    height: 40px;
    margin-right: 12px;
}

.logo-core {
    position: absolute;
    width: 16px;
    height: 16px;
    background: var(--granite-blue);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.logo-orbit {
    position: absolute;
    border: 2px solid var(--granite-blue-light);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.logo-orbit:nth-child(2) {
    width: 30px;
    height: 30px;
    opacity: 0.7;
    animation: orbit-rotate 8s linear infinite;
}

.logo-orbit:nth-child(3) {
    width: 40px;
    height: 40px;
    opacity: 0.4;
    animation: orbit-rotate 12s linear infinite reverse;
}

.logo-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--granite-blue-light);
    border-radius: 50%;
}

.logo-particle:nth-child(4) {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: particle-pulse 2s ease-in-out infinite;
}

.logo-particle:nth-child(5) {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation: particle-pulse 2s ease-in-out infinite 0.5s;
}

.logo-particle:nth-child(6) {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: particle-pulse 2s ease-in-out infinite 1s;
}

.logo-particle:nth-child(7) {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation: particle-pulse 2s ease-in-out infinite 1.5s;
}

@keyframes orbit-rotate {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes particle-pulse {
    0%, 100% {
        opacity: 0.5;
        transform: translateX(-50%) scale(1);
    }
    50% {
        opacity: 1;
        transform: translateX(-50%) scale(1.3);
    }
}


.section-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-color: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 17, 22, 0.9) 0%, rgba(15, 17, 22, 0.95) 100%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--granite-blue) 0%, transparent 70%);
    opacity: 0.2;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(92, 126, 158, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92, 126, 158, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 3;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-primary);
    padding: 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    animation: fade-in-up 1s ease-in-out forwards;
    background: linear-gradient(to right, #fff 0%, var(--granite-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 2px 10px rgba(92, 126, 158, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    animation: fade-in-up 1s ease-in-out forwards 0.2s;
    animation-fill-mode: both;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    animation: fade-in-up 1s ease-in-out forwards 0.4s;
    animation-fill-mode: both;
}


.btn-primary {
    background: linear-gradient(135deg, var(--granite-blue) 0%, var(--granite-blue-dark) 100%);
    color: white;
    padding: 1.1rem 2.2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), 0 0 25px rgba(92, 126, 158, 0.3);
    position: relative;
    overflow: hidden;
    border: none;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.6s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--granite-blue-light) 0%, var(--granite-blue) 100%);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 35px rgba(92, 126, 158, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px) scale(1.01);
}

.btn-secondary {
    border: 2px solid var(--granite-blue);
    color: var(--granite-blue-light);
    padding: 1.1rem 2.2rem;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: rgba(92, 126, 158, 0.08);
    backdrop-filter: blur(10px);
    font-size: 1.05rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-secondary:hover {
    background-color: rgba(92, 126, 158, 0.2);
    color: var(--text-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15), 0 0 20px rgba(92, 126, 158, 0.25);
    border-color: var(--granite-blue-light);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    animation: fade-in-up 1s ease-in-out forwards 0.6s;
    animation-fill-mode: both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
    background: rgba(92, 126, 158, 0.1);
    padding: 0.7rem 1.2rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

.hero-feature i {
    color: var(--granite-blue-light);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(5deg);
    }
    to {
        transform: translateY(0) rotate(0deg);
    }
}

.gradient-bg {
    background: linear-gradient(135deg, rgba(92, 126, 158, 0.1) 0%, rgba(15, 17, 22, 0.9) 100%);
}

.accent {
    color: var(--granite-blue-light);
}


.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.server-stat {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(145deg, rgba(24, 26, 35, 0.7) 0%, rgba(30, 32, 45, 0.7) 100%);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.server-stat:hover {
    border-color: rgba(92, 126, 158, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2), 0 0 20px rgba(92, 126, 158, 0.2);
}

.server-stat span:first-child {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
}

.server-stat span:last-child {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
}

.server-stat i {
    font-size: 2rem;
    color: var(--granite-blue-light);
    margin-bottom: 0.5rem;
}


.plan-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: linear-gradient(145deg, rgba(24, 26, 35, 0.9) 0%, rgba(30, 32, 45, 0.9) 100%);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.plan-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--granite-blue), var(--granite-blue-light), var(--granite-blue));
    opacity: 0.9;
    background-size: 200% 100%;
    animation: gradient-shift 3s ease infinite;
}

.plan-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
    transform: rotate(45deg);
    animation: shine 6s infinite;
    z-index: 1;
}

.plan-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 40px rgba(92, 126, 158, 0.3);
    border-color: rgba(92, 126, 158, 0.4);
}

.plan-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    color: white;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 0.5px;
}

.plan-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #fff, var(--granite-blue-light), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: text-shine 4s ease-in-out infinite;
    text-align: center;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(92, 126, 158, 0.3);
}

.plan-card .price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.plan-card ul {
    margin-bottom: 1.8rem;
    flex-grow: 1;
    position: relative;
    z-index: 2;
}

.plan-card ul li {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    padding: 0.3rem 0;
}

.plan-card ul li:hover {
    color: white;
    transform: translateX(5px);
}

.plan-card ul li i {
    margin-right: 0.7rem;
    color: var(--granite-blue-light);
    font-size: 1.1rem;
    min-width: 20px;
    text-align: center;
}

.plan-card .select-btn {
    background: transparent;
    color: white;
    padding: 0.9rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: auto;
    border: 2px solid var(--granite-blue);
    font-size: 1rem;
    position: relative;
    z-index: 2;
    letter-spacing: 0.5px;
    overflow: hidden;
    display: block;
    width: 100%;
    box-shadow: 0 0 15px rgba(92, 126, 158, 0.4);
}

.select-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--granite-blue) 0%, var(--granite-blue-dark) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
}

.Select-btn::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--granite-blue), var(--granite-blue-light));
    border-radius: 0 0 10px 10px;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: blur(8px);
}

.select-btn:hover::before {
    opacity: 1;
}

.select-btn:hover::after {
    height: 8px;
    filter: blur(12px);
    opacity: 1;
}

.select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(92, 126, 158, 0.6);
    border-color: var(--granite-blue-light);
}

@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    20% { transform: translateX(100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

@keyframes text-shine {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}


.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-align: center;
    background: linear-gradient(to right, #fff, var(--granite-blue-light), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: text-shine 4s ease-in-out infinite;
    text-shadow: 0 2px 10px rgba(92, 126, 158, 0.2);
}

.section-subtitle {
    color: var(--text-secondary);
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.2rem;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}


.cta-section {
    background: linear-gradient(135deg, rgba(92, 126, 158, 0.15) 0%, rgba(15, 17, 22, 0.95) 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 0 auto;
    max-width: 1200px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(92, 126, 158, 0.1);
}


.map-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(92, 126, 158, 0.1);
}

.map-image {
    width: 100%;
    height: auto;
    opacity: 0.5;
}

.marker-location {
    position: absolute;
    top: 45.7%;
    left: 25.8%;
}

.marker {
    width: 12px;
    height: 12px;
    background-color: var(--granite-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.marker-label {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 600;
    background: rgba(15, 17, 22, 0.8);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(92, 126, 158, 0.2);
}


.ping-card {
    background: linear-gradient(145deg, rgba(24, 26, 35, 0.9) 0%, rgba(30, 32, 45, 0.9) 100%);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 380px;
    margin: 0 auto;
}


footer {
    background: linear-gradient(180deg, rgba(24, 26, 35, 0.95) 0%, rgba(20, 22, 30, 0.95) 100%);
    border-top: 1px solid rgba(92, 126, 158, 0.1);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.15);
}

.footer-links a:hover {
    color: var(--granite-blue-light);
}

.social-icon {
    transition: all 0.3s ease;
    background: rgba(92, 126, 158, 0.1);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-icon:hover {
    color: var(--granite-blue-light);
    transform: translateY(-3px);
    background: rgba(92, 126, 158, 0.2);
}


.mobile-menu {
    position: fixed; 
    top: 0;
    left: 0;
    width: 70%;
    height: 100vh;
    background: rgba(15, 17, 22, 0.75); 
    backdrop-filter: blur(16px); 
    -webkit-backdrop-filter: blur(16px); 
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 2rem;
    padding-bottom: 2rem;
    overflow-y: auto;
}

.mobile-menu {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}


.mobile-menu ul li a {
    font-size: 0.875rem; 
    line-height: 1.5; 
}

.mobile-menu.active {
    transform: translateX(0);
}







.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--card-bg);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 1px 3px rgba(0, 0, 0, 0.08);
    z-index: 50;
    min-width: 200px;
}

.dropdown-menu.active {
    display: block;
}







.why-choose-us {
    background: linear-gradient(135deg, rgba(15, 17, 22, 0.95) 0%, rgba(20, 22, 30, 0.95) 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 0 auto 5rem;
    max-width: 1200px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(92, 126, 158, 0.1);
}

.feature-card {
    background: linear-gradient(145deg, rgba(24, 26, 35, 0.7) 0%, rgba(30, 32, 45, 0.7) 100%);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    border-color: rgba(92, 126, 158, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2), 0 0 20px rgba(92, 126, 158, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(92, 126, 158, 0.2) 0%, rgba(76, 105, 135, 0.2) 100%);
    font-size: 1.8rem;
    color: var(--granite-blue-light);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}


.faq-section {
    background: linear-gradient(135deg, rgba(15, 17, 22, 0.95) 0%, rgba(20, 22, 30, 0.95) 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin: 0 auto 5rem;
    max-width: 1200px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(92, 126, 158, 0.1);
}

.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.faq-tab {
    background: transparent;
    color: var(--granite-blue-light);
    padding: 0.9rem 1.8rem;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--granite-blue);
    font-size: 1rem;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.faq-tab.active, .faq-tab:hover {
    background: linear-gradient(135deg, var(--granite-blue) 0%, var(--granite-blue-dark) 100%);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(92, 126, 158, 0.6);
    border-color: var(--granite-blue-light);
}

.faq-item {
    background: linear-gradient(145deg, rgba(24, 26, 35, 0.7) 0%, rgba(30, 32, 45, 0.7) 100%);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}


@media (max-width: 768px) {
    .stats-item:not(:last-child)::after {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .plan-card {
        padding: 1.8rem 1.5rem;
    }
    
    .plan-card .price {
        font-size: 2.2rem;
    }
    
    .faq-tabs {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 640px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}














.gradient-bg {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.97) 0%, rgba(30, 41, 59, 0.97) 100%) !important;
    padding: 2rem 0;
}


.policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


.section-card {
    background: rgba(15, 23, 42, 0.5);
    border-radius: 16px;
    padding: 1.8rem;
    margin-bottom: 2rem;
    border-left: 4px solid #1e3c72;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.section-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gradient-bg h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #fff 0%, #1e3c72 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-bg h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 1.8rem 0 1rem;
    color: #fff;
    position: relative;
    padding-bottom: 0.5rem;
}

.gradient-bg h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #1e3c72;
    border-radius: 3px;
}

.gradient-bg p {
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #d1d5db;
}


.gradient-bg ul {
    margin: 1.2rem 0;
}

.gradient-bg li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.gradient-bg li:before {
    content: "•";
    color: #1e3c72;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
}

.gradient-bg strong {
    color: #fff;
    font-weight: 600;
}


.gradient-bg a {
    color: #f97316;
    transition: all 0.2s ease;
    text-decoration: none;
    font-weight: 500;
}

.gradient-bg a:hover {
    color: #2a5298;
    text-decoration: underline;
}


.gradient-bg p:first-of-type {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    font-style: italic;
}


.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #1e3c72;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.3);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: #2a5298;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(30, 60, 114, 0.4);
}


.toc-container {
    background: rgba(15, 23, 42, 0.8);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.toc-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.toc-item {
    padding: 0.5rem 0;
    border-left: 2px solid transparent;
    transition: all 0.2s ease;
}

.toc-item a {
    color: #d1d5db;
    text-decoration: none;
    display: block;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.toc-item a:hover {
    color: #f97316;
    background: rgba(249, 115, 22, 0.1);
}

.toc-item.active {
    border-left-color: #f97316;
}

.toc-item.active a {
    color: #f97316;
    background: rgba(249, 115, 22, 0.1);
}


@media (max-width: 768px) {
    .policy-container {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .gradient-bg h2 {
        font-size: 2rem;
    }

    .gradient-bg h3 {
        font-size: 1.3rem;
    }

    .section-card {
        padding: 1.2rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}


.gradient-bg::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(30, 60, 114, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.gradient-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(30, 60, 114, 0.1) 0%, transparent 70%);
    z-index: -1;
}


html {
    scroll-behavior: smooth;
}


footer {
    background: rgba(15, 23, 42, 0.9) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 2rem;
}



















































