/* Party Happy Games - Gaming Theme */

:root {
    /* Party/Gaming colors */
    --primary-color: #FF6B35;
    --secondary-color: #F7931E;
    --accent-color: #FFD23F;
    --purple: #9B59B6;
    --pink: #E91E63;
    --blue: #3498DB;
    --green: #2ECC71;
    
    /* Neutral colors */
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray-medium: #E9ECEF;
    --gray-dark: #6C757D;
    --text-primary: #212529;
    --text-secondary: #495057;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    --gradient-hero: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFD23F 100%);
    --gradient-card: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 210, 63, 0.1) 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--gray-light);
    overflow-x: hidden;
}

/* Header */
.party-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 2px solid var(--primary-color);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.party-header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-md);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo img {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    text-align: center;
}


.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: var(--spacing-md);
    color: var(--white);
}

.hero-logo-container {
    margin-bottom: 1.5rem;
}

.hero-logo {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease;
}

/* Content Sections */
.content-section {
    padding: var(--spacing-xl) 0;
    position: relative;
}

.content-section:nth-child(even) {
    background: var(--white);
}

.content-section:nth-child(odd) {
    background: var(--gray-light);
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.section-content.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

.section-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--gradient-card);
    border-radius: 20px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: fadeInUp 0.6s ease forwards;
}

.stat-item:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-item:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-item:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 210, 63, 0.15) 100%);
}

.stat-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.stat-item:hover .stat-icon {
    transform: rotate(360deg) scale(1.2);
    filter: drop-shadow(0 6px 12px rgba(255, 107, 53, 0.4));
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.stat-item:hover h3 {
    transform: scale(1.1);
    color: var(--secondary-color);
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.stat-item p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.stat-item:hover p {
    color: var(--text-primary);
    transform: translateY(-2px);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.experience-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-medium);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: fadeInUp 0.6s ease forwards;
}

.experience-card:nth-child(1) {
    animation-delay: 0.1s;
}

.experience-card:nth-child(2) {
    animation-delay: 0.2s;
}

.experience-card:nth-child(3) {
    animation-delay: 0.3s;
}

.experience-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.experience-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.experience-card:hover::before {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

.experience-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.3);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(255, 250, 240, 1) 100%);
}

.experience-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.experience-card:hover .experience-icon {
    transform: rotate(360deg) scale(1.2);
    filter: drop-shadow(0 6px 12px rgba(255, 107, 53, 0.4));
}

.experience-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.experience-card:hover h3 {
    transform: scale(1.1);
    color: var(--secondary-color);
    text-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.experience-card p {
    color: var(--text-secondary);
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    font-weight: 400;
}

.experience-card:hover p {
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.security-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-medium);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: fadeInUp 0.6s ease forwards;
}

.security-card:nth-child(1) {
    animation-delay: 0.1s;
}

.security-card:nth-child(2) {
    animation-delay: 0.2s;
}

.security-card:nth-child(3) {
    animation-delay: 0.3s;
}

.security-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.security-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.security-card:hover::before {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

.security-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 40px rgba(46, 204, 113, 0.3);
    border-color: var(--green);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 255, 240, 1) 100%);
}

.security-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.security-card:hover .security-icon {
    transform: rotate(360deg) scale(1.2);
    filter: drop-shadow(0 6px 12px rgba(46, 204, 113, 0.4));
}

.security-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.security-card:hover h3 {
    transform: scale(1.1);
    color: #27AE60;
    text-shadow: 0 2px 8px rgba(46, 204, 113, 0.3);
}

.security-card p {
    color: var(--text-secondary);
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    font-weight: 400;
}

.security-card:hover p {
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Transparency Section */
.transparency-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.transparency-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-medium);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: fadeInUp 0.6s ease forwards;
}

.transparency-card:nth-child(1) {
    animation-delay: 0.1s;
}

.transparency-card:nth-child(2) {
    animation-delay: 0.2s;
}

.transparency-card:nth-child(3) {
    animation-delay: 0.3s;
}

.transparency-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.transparency-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.transparency-card:hover::before {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

.transparency-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 40px rgba(52, 152, 219, 0.3);
    border-color: var(--blue);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(240, 248, 255, 1) 100%);
}

.transparency-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.transparency-card:hover .transparency-icon {
    transform: rotate(360deg) scale(1.2);
    filter: drop-shadow(0 6px 12px rgba(52, 152, 219, 0.4));
}

.transparency-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.transparency-card:hover h3 {
    transform: scale(1.1);
    color: #2980B9;
    text-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.transparency-card p {
    color: var(--text-secondary);
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    font-weight: 400;
}

.transparency-card:hover p {
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Data Analysis Section */
.data-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.data-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--gray-medium);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px) scale(0.9);
    animation: fadeInUp 0.6s ease forwards;
}

.data-card:nth-child(1) {
    animation-delay: 0.1s;
}

.data-card:nth-child(2) {
    animation-delay: 0.2s;
}

.data-card:nth-child(3) {
    animation-delay: 0.3s;
}

.data-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.data-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(155, 89, 182, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.data-card:hover::before {
    opacity: 1;
    animation: pulse 2s ease-in-out infinite;
}

.data-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 10px 40px rgba(155, 89, 182, 0.3);
    border-color: var(--purple);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(250, 240, 255, 1) 100%);
}

.data-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    display: inline-block;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.data-card:hover .data-icon {
    transform: rotate(360deg) scale(1.2);
    filter: drop-shadow(0 6px 12px rgba(155, 89, 182, 0.4));
}

.data-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--purple);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.data-card:hover h3 {
    transform: scale(1.1);
    color: #8E44AD;
    text-shadow: 0 2px 8px rgba(155, 89, 182, 0.3);
}

.data-card p {
    color: var(--text-secondary);
    margin: 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    line-height: 1.6;
    font-weight: 400;
}

.data-card:hover p {
    color: var(--text-primary);
    transform: translateY(-2px);
}

/* Apps Section */
.apps-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.apps-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.apps-header {
    text-align: center;
    margin-bottom: 4rem;
}

.apps-header h2 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.apps-header p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.app-card {
    background: var(--gradient-card);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.app-card:hover::before {
    transform: scaleX(1);
}

.app-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.app-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.app-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.app-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.app-store-link {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.app-store-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    opacity: 0.9;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    padding: var(--spacing-xl) 0;
    background: var(--gray-light);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid var(--gray-medium);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 768px) {
    .contact-form .row {
        grid-template-columns: 1fr;
    }
}

/* Footer */
.party-footer {
    background: var(--text-primary);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-copyright {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-medium);
}

/* Policy Pages */
.policy-main {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--gray-light);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    margin-bottom: 3rem;
}

.policy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-medium);
}

.policy-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.policy-divider {
    height: 2px;
    background: var(--gradient-primary);
    width: 100px;
    margin: 0 auto;
}

.policy-content {
    line-height: 1.8;
    color: var(--text-primary);
}

.policy-content h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2rem 0 1rem;
}

.policy-content h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.5rem 0 1rem;
}

.policy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1.25rem 0 0.75rem;
}

.policy-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 1rem 0 0.5rem;
}

.policy-content p {
    margin-bottom: 1rem;
    text-align: justify;
}

.policy-content ul,
.policy-content ol {
    margin: 1rem 0 1rem 2rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
}

.policy-content b {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.policy-content table th {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    text-align: left;
}

.policy-content table td {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid var(--gray-medium);
}

.policy-content table tr:nth-child(even) {
    background: var(--gray-light);
}

.policy-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-content h1 {
        font-size: 2rem;
    }
    
    .apps-header h2 {
        font-size: 2rem;
    }
}


