.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="white" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="white" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(1deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(255, 255, 255, 0.2); }
    to { box-shadow: 0 0 30px rgba(255, 255, 255, 0.4); }
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff, #e2e8f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
    opacity: 0.9;
}

.effective-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 500;
}

/* Main Content */
.main-content {
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 10;
    border-radius: 24px 24px 0 0;
    min-height: 100vh;
    word-break: break-word;
    overflow-wrap: break-word;
}

.content-section {
    padding: 80px 0;
}

.content-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 4rem;
}

/* Sticky Navigation */
.content-nav {
    position: sticky;
    top: 110px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    max-height: calc(100vh - 130px);
    padding: 0.2rem .5rem;

    /* Keeps rounded edges clean */
    overflow: hidden;
}

.content-nav-scroll {
    max-height: calc(100vh - 140px);
    overflow-y: auto;
    padding: 2rem;
}

.content-nav-scroll {
    scrollbar-width: thin;
    scrollbar-color: #e2e8f0 transparent;
}

.content-nav-scroll::-webkit-scrollbar-thumb {
    background: #e2e8f0; /* default thumb color */
}

.content-nav-scroll::-webkit-scrollbar-thumb:hover {
    background: #718096; /* color when hovered */
}

.content-nav h3 {
    color: #1a202c;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.content-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.content-nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.content-nav a:hover {
    /* background: linear-gradient(100deg, #667eea, 75%, #764ba2); */
    background: #667eea;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.content-nav a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.content-nav a:hover::before {
    opacity: 1;
}

/* Privacy Content */
.page-content {
    background: white;
}

.section {
    margin-bottom: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.section:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid;
    border-image: linear-gradient(135deg, #667eea, #764ba2) 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin: 2rem 0 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.section h3::before {
    content: '▶';
    color: #667eea;
    font-size: 0.8rem;
}

.section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4a5568;
    font-size: 1rem;
}

.section ul, .section ol {
    margin: 1.5rem 0;
    padding-left: 0;
}

.section li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem;
  margin-bottom: 1rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #667eea;
  color: #4a5568;
  line-height: 1.7;
  overflow: hidden;
}

.section li strong {
  flex: 0 0 120px; /* fixed width label column */
  font-weight: 600;
  color: #2d3748;
}

.section li div {
  flex: 1 1 auto;   /* flexible content column */
  min-width: 0;     /* prevents overflow from long URLs */
  word-break: break-word;
}

.section li::before {
    content: '✓';
    color: #667eea;
    font-weight: bold;
    margin-top: 0.1rem;
    flex-shrink: 0;
}

/* Dropdown Section */
.dropdown-section {
    cursor: pointer;
    position: relative;
}

.dropdown-section .dropdown-content {
    display: none;
    animation: slideDown 0.3s ease;
}

.dropdown-section.active .dropdown-content {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle-arrow {
    transition: transform 0.3s ease;
    color: #667eea;
    font-size: 1.2rem;
}

.dropdown-section.active .toggle-arrow {
    transform: rotate(180deg);
}

/* Highlight Boxes */
.highlight-box {
    /* background: linear-gradient(135deg, #ebf8ff 0%, #f0fff4 100%); */
    background: #f4faff;
    border: 2px solid #bee3f8;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

/* .highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #667eea, #764ba2);
} */

.highlight-box h4 {
    color: #2b6cb0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    gap: 0.5rem;
}

/* Column Container */
.column-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.column {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.column h3 {
    color: #2d3748;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #667eea;
}

/* Links */
.external-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.external-link::after {
    content: '↗';
    margin-left: 0.25rem;
    font-size: 0.8rem;
    opacity: 0.7;
}

.external-link:hover {
    color: #5a67d8;
    text-decoration: none;
}

.external-link:hover::after {
    transform: translate(2px, -2px);
}

/* Responsive Design for Navigation Bar*/
@media (max-width: 1024px) {
    .content-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .content-nav {
        position: static;
        margin-bottom: 2rem;
    }

    .content-nav ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.5rem;
    }
}

/* Responsive Design for Columns */
@media (max-width: 900px) {
    .column-container {
        grid-template-columns: 1fr;
    }
}

/* Responsive Design for Content */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .content-container {
        padding: 0 1.5rem;
    }

    .section {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }

    .section h2 {
        font-size: 1.5rem;
    }
}

/* Responsive Design for Content in Smaller Screen */
@media (max-width: 500px) {
    .content-container {
        padding: 0 1rem;
    }

    .section {
        padding: 1rem;
    }
    
    .section li {
        padding: 0.75rem 1.5rem 1rem 1.5rem;
        flex-direction: column;   /* stack vertically */
    }

    .section li strong {
        flex: none;               /* remove fixed width */
    }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}