html {
    scrollbar-gutter: stable;
    overflow-y: scroll;
}

::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #090A0A;
}

::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid #090A0A;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Space Grotesk', -apple-system, sans-serif;
    background: #090A0A;
    color: white;
    min-height: 100vh;
    padding: 40px 0;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.95);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.header {
    background: linear-gradient(135deg, #4361ee 0%, #3451db 100%);
    color: white;
    padding: 60px 40px;
    text-align: center;
}

.content {
    padding: 60px 50px;
}

h1 {
    font-size: 2.8em;
    font-weight: 600;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.effective-date {
    font-size: 1.1em;
    opacity: 0.9;
    font-weight: 500;
}

.intro {
    font-size: 1.1em;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border-left: 4px solid #4361ee;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

h2 {
    color: white;
    font-size: 1.8em;
    font-weight: 600;
    margin: 50px 0 25px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #4361ee;
    position: relative;
}

h2::before {
    content: counter(section);
    counter-increment: section;
    background: #4361ee;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9em;
    font-weight: bold;
    margin-right: 15px;
    position: relative;
    top: -2px;
}

.content {
    counter-reset: section;
}

p {
    margin-bottom: 20px;
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

ul {
    margin: 20px 0;
    padding-left: 0;
}

li {
    margin-bottom: 12px;
    padding-left: 30px;
    position: relative;
    font-size: 1.05em;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

li::before {
    content: "→";
    color: #4361ee;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2em;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

thead {
    background: rgba(67, 97, 238, 0.2);
}

th {
    color: white;
    padding: 20px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 1.1em;
}

td {
    padding: 18px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    vertical-align: top;
    color: rgba(255, 255, 255, 0.8);
}

tbody tr:nth-child(even) {
    background: rgba(255, 255, 255, 0.02);
}

tbody tr:hover {
    background: rgba(67, 97, 238, 0.1);
    transition: background 0.3s ease;
}

.contact-section {
    background: linear-gradient(135deg, #4361ee, #3451db);
    color: white;
    margin: 50px -50px -60px -50px;
    padding: 40px 50px;
    text-align: center;
}

.contact-section h2 {
    color: white;
    border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 30px;
}

.contact-section h2::before {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.contact-info {
    font-size: 1.1em;
    line-height: 1.8;
}

.contact-info strong {
    display: block;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.back-to-home {
    position: fixed;
    top: 30px;
    left: 30px;
    background: #4361ee;
    color: white;
    padding: 12px 20px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
    z-index: 100;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.back-to-home:hover {
    background: #3451db;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 97, 238, 0.4);
}

section {
    margin-bottom: 40px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }
    
    .container {
        border-radius: 16px;
        margin: 0 10px;
    }
    
    .header {
        padding: 40px 30px;
    }
    
    .content {
        padding: 40px 30px;
    }
    
    h1 {
        font-size: 2.2em;
    }
    
    h2 {
        font-size: 1.5em;
        margin: 35px 0 20px 0;
    }
    
    .intro {
        padding: 20px;
        margin-bottom: 30px;
    }
    
    table {
        font-size: 0.9em;
    }
    
    th, td {
        padding: 12px 10px;
    }
    
    .contact-section {
        margin: 40px -30px -40px -30px;
        padding: 30px;
    }
    
    .back-to-home {
        top: 20px;
        left: 20px;
        padding: 10px 16px;
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 30px 20px;
    }
    
    .content {
        padding: 30px 20px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.3em;
    }
    
    .contact-section {
        margin: 30px -20px -30px -20px;
        padding: 25px 20px;
    }
} 