/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #000000;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    padding-top: 0;
}

/* Background effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 20%, rgba(74,222,128,0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59,130,246,0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(168,85,247,0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: -1;
}

/* ---------------------------------------------------------
   Navbar & Header Styles (Integrated from navbar.css)
--------------------------------------------------------- */
/* Global header styling */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(0,0,0,0.98);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(65,246,129,0.1);
    transition: all 0.3s ease;
    padding: 18px 0;
    height: 95px;
}

/* Navbar container */
.navbar {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
}

/* Navbar navigation */
.navbar-nav {
    display: flex;
    align-items: center;
    flex-wrap: nowrap; /* prevent line break */
    gap: 20px;
}

/* Navbar links */
.navbar-nav .nav-item a {
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #ffffff !important;
}

/* Talk button styling */
.navbar-nav .nav-item .talk_btn {
    background: linear-gradient(90deg, #4461F2 0%, #41F68A 100%);
    padding: 7px 20px !important;
    border-radius: 30px !important;
    color: #ffffff !important;
    font-weight: 600;
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-left: auto;
}

/* Dropdown menu styling */
.dropdown-menu {
    background-color: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(65,246,129,0.1);
    padding: 10px 0;
    min-width: 200px;
    border-radius: 8px;
    margin-top: 10px;
}

.drop-down-pages {
    display: flex;
    flex-direction: column;
}

.dropdown-menu .nav-item {
    width: 100%;
}

.dropdown-menu .nav-link {
    padding: 10px 20px !important;
    transition: all 0.3s ease;
    color: #ffffff !important;
    background: none;
}

.dropdown-menu .nav-link:hover {
    background: none !important;
    color: #41F68A !important;
}

.dropdown-item {
    color: #ffffff;
    padding: 8px 20px;
}

.dropdown-item:hover {
    background-color: rgba(65,246,129,0.1);
}

/* Responsive Navbar Styles */
@media (max-width: 991px) {
    header {
        position: static;
    }
    .navbar-collapse {
        position: fixed;
        top: 95px;
        left: 0;
        width: 100%;
        height: calc(100vh - 95px);
        background-color: rgba(0,0,0,0.98);
        padding: 20px 0;
        z-index: 999;
    }
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        padding: 20px;
    }
    .navbar-nav .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(65,246,129,0.1);
    }
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    .navbar-nav .nav-item a,
    .dropdown-menu .nav-link {
        padding: 15px !important;
        width: 100%;
        display: block;
        color: #ffffff !important;
    }
    .dropdown-menu {
        width: 100%;
        position: static;
        background: transparent;
        border: none;
        padding: 0;
        margin: 0;
    }
    .dropdown-menu .nav-item {
        padding-left: 20px;
    }
    .navbar-nav .nav-item .talk_btn {
        margin: 15px;
        width: fit-content;
        border: none;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* ---------------------------------------------------------
   Terms Page Specific Overrides & Main Content Styles
--------------------------------------------------------- */
body.terms-page .navbar-brand img,
body.terms-page .header-logo {
    max-height: 95px; /* match header height */
    height: auto;
    width: auto;
}

/* Optional: if using a surrounding banner container */
body.terms-page .sub-banner-section-outer {
    position: relative;
    background-color: rgba(0,0,0,0.98);
    overflow: hidden;
}

/* Main content wrapper */
.main-content {
    margin-top: 80px ;
    /* margin-top: 100px;  */
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    position: relative;
    z-index: 1;
}
header .container {
  padding: 0 20px;    /* keep the left/right gutters, but remove the 60px top/bottom */
  height: 100%;       /* make sure it fills the header’s 95px height */
  display: flex;      /* so you can vertically center the <nav> if you like */
  align-items: center; 
}

/* Header section inside page content */
.header-section {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.core-values-tag {
    display: inline-block;
    color: #4ade80;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 24px;
    position: relative;
}

.core-values-tag::before,
.core-values-tag::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: #4ade80;
}

.core-values-tag::before {
    left: -60px;
}

.core-values-tag::after {
    right: -60px;
}

.main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 32px;
    background: linear-gradient(135deg, #ffffff 0%, #a8a8a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.main-subtitle {
    font-size: 1.25rem;
    color: #a8a8a8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Content sections */
.content-section {
    margin-bottom: 60px;
    opacity: 1;
    transform: translateY(0);
}

.section-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #ffffff;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #4ade80, #3b82f6);
    border-radius: 2px;
}

.section-content {
    color: #a8a8a8;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.subsection {
    margin: 32px 0;
    padding-left: 24px;
    border-left: 2px solid rgba(74,222,128,0.3);
}

.subsection-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.list-item {
    margin: 16px 0;
    padding-left: 24px;
    position: relative;
    color: #a8a8a8;
    font-size: 1.1rem;
    line-height: 1.8;
}

.list-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: bold;
    font-size: 1.2rem;
}

.highlight-box {
    background: rgba(74,222,128,0.1);
    border: 1px solid rgba(74,222,128,0.3);
    border-radius: 12px;
    padding: 24px;
    margin: 32px 0;
    position: relative;
    overflow: hidden;
}

.highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #4ade80, #3b82f6);
}

.contact-info {
    background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.3);
    border-radius: 12px;
    padding: 32px;
    margin-top: 60px;
    text-align: center;
}

.contact-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.contact-link {
    color: #4ade80;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #22c55e;
    text-decoration: underline;
}

.last-updated {
    text-align: center;
    color: #6b7280;
    font-size: 0.9rem;
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-content {
        margin-top: 80px;
    }
    .container {
        padding: 40px 16px;
    }
    .core-values-tag::before,
    .core-values-tag::after {
        display: none;
    }
    .section-title {
        font-size: 1.5rem;
        padding-left: 16px;
    }
    .section-title::before {
        width: 3px;
        height: 24px;
    }
    .section-content {
        font-size: 1rem;
    }
    .list-item {
        font-size: 1rem;
        padding-left: 20px;
    }
    .subsection {
        padding-left: 16px;
    }
    .highlight-box,
    .contact-info {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .main-content {
        margin-top: 70px;
    }
    .container {
        padding: 30px 12px;
    }
    .main-title {
        font-size: 2rem;
    }
    .main-subtitle {
        font-size: 1rem;
    }
    .section-title {
        font-size: 1.3rem;
    }
    .subsection-title {
        font-size: 1.2rem;
    }
}

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional Spacing for Readability */
.section-content p {
    margin-bottom: 16px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* Focus States for Accessibility */
.contact-link:focus {
    outline: 2px solid #4ade80;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Print Styles */
@media print {
    body::before {
        display: none;
    }
    .main-content {
        margin-top: 0;
        margin-bottom: 0;
    }
    .container {
        padding: 20px 0;
    }
    .highlight-box,
    .contact-info {
        border: 1px solid #333;
        background: transparent;
    }
}
body {
  padding-top: 95px !important;
}