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

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

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #000;
    color: #94a3b8;
    /* Removed overflow:hidden to allow the global scrollbar to work */
    min-height: 100vh;
}

.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.35;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0) 0%, #000 85%);
    z-index: 2;
}

.page-container {
    position: relative;
    z-index: 3;
    width: 100%;
}

.main-header {
    width: 100%;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon svg {
    width: 32px;
    height: 32px;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.brand-text {
    font-weight: 700;
    font-size: 24px;
    color: #fff;
    letter-spacing: -0.5px;
}

.back-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.back-btn:hover {
    background: #3b82f6;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.4);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 60px 120px;
}

.section {
    margin-bottom: 80px;
    position: relative;
    padding-left: 30px;
}

.section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 60px;
    background: #3b82f6;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

.page-title {
    font-size: 64px;
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 40px;
}

.section-label {
    color: #3b82f6;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

h2 {
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    line-height: 1.8;
    color: #94a3b8;
}

.address-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 24px;
}

.address-card h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 20px;
}

.footer-nav {
    text-align: center;
    margin-top: 80px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav p {
    font-size: 12px;
    opacity: 0.4;
}
