/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    min-height: 100vh;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

/* Header Styles */
header {
    background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 80px;
}

/* Logo Container */
.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo img {
    max-height: 55px;
    width: auto;
    object-fit: contain;
    animation: pulse 2.5s infinite;
}

.logo-text {
    color: white;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    margin: 0 12px;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

.nav-link:hover {
    color: #FFD700;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: #FFD700;
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* App Download Button */
.app-download {
    background-color: #FFD700;
    color: #006666;
    padding: 10px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.app-download:hover {
    background-color: white;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1010;
}

.menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Privacy Policy Specific Styles */
.privacy-container {
    max-width: 1100px;
    margin: 40px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 2px solid #008B8B;
}

.privacy-header h1 {
    color: #006666;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.privacy-header .updated-date {
    color: #666;
    font-style: italic;
}

.privacy-content h2 {
    color: #008B8B;
    margin: 30px 0 15px;
    font-size: 1.8rem;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-content h3 {
    color: #006666;
    margin: 20px 0 10px;
    font-size: 1.4rem;
}

.privacy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.privacy-content li {
    margin-bottom: 8px;
}

.privacy-content p {
    margin-bottom: 15px;
}

.privacy-footer {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 2px solid #008B8B;
}

.privacy-footer h2 {
    color: #008B8B;
    font-size: 1.5rem;
    margin-bottom: 15px;
}



/* Animation */
@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .nav-item {
        margin: 0 8px;
    }
    
    .app-download {
        padding: 8px 12px;
        font-size: 13px;
    }
}

@media (max-width: 920px) {
    header {
        height: 70px;
    }
    
    .logo img {
        max-height: 45px;
    }
    
    .logo-text {
        font-size: 20px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .app-download {
        font-size: 12px;
        padding: 8px 10px;
    }

    .privacy-header h1 {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    header {
        height: 70px;
        padding: 0 4%;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 270px;
        height: 100vh;
        background: linear-gradient(135deg, #008B8B 0%, #006666 100%);
        flex-direction: column;
        padding: 80px 20px 30px;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        z-index: 1005;
        justify-content: flex-start;
        align-items: flex-start;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-item {
        margin: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .nav-link {
        padding: 12px 0;
    }
    
    .app-download {
        padding: 8px 10px;
        font-size: 12px;
    }
    
    .app-download span {
        display: none;
    }
    
    .app-download i {
        margin: 0;
    }
    
    .menu-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .privacy-header h1 {
        font-size: 1.8rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }

    .privacy-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 0 3%;
        height: 60px;
    }
    
    .logo img {
        max-height: 35px;
    }
    
    .logo-text {
        font-size: 18px;
    }
    
    .app-download {
        padding: 6px 8px;
    }
    
    .menu-toggle {
        width: 24px;
        height: 18px;
    }

    .privacy-container {
        padding: 15px;
        margin: 20px auto;
    }

    .privacy-header h1 {
        font-size: 1.5rem;
    }
}
