/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    font-size: 16px;
    font-weight: 400;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo-img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s ease;
}

.logo-img:hover {
    opacity: 0.8;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: #666666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 10;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: #333333;
    transition: all 0.3s ease;
    transform-origin: 1px;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 1px solid #e5e5e5;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 5;
}

.mobile-nav-link {
    display: block;
    padding: 15px 20px;
    color: #666666;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    color: #333333;
    background-color: #f8f9fa;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

/* Main Content */
.main {
    padding: 60px 0;
    min-height: calc(100vh - 200px);
}

.privacy-policy {
    max-width: 800px;
    margin: 0 auto;
}

/* Typography - Matching Futurehook Design */
.main-title {
    font-size: 48px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 10px;
    line-height: 1.2;
}

.last-updated {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 40px;
    font-style: italic;
}

.section {
    margin-bottom: 40px;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.subsection-title {
    font-size: 24px;
    font-weight: 600;
    color: #333333;
    margin-bottom: 15px;
    margin-top: 25px;
    line-height: 1.4;
}

.section-text {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Lists */
.list {
    margin: 20px 0;
    padding-left: 20px;
}

.list li {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 10px;
    line-height: 1.6;
}

/* Contact Information */
.contact-info {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.contact-info p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 10px;
}

.contact-info strong {
    font-weight: 600;
    color: #333333;
}

/* Footer */
.footer {
    background-color: #ffffff;
    padding: 40px 0 20px;
    border-top: 1px solid #e5e5e5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 30px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-img {
    height: 30px;
    width: auto;
}

.footer-logo-text {
    font-size: 18px;
    font-weight: 500;
    color: #333333;
}

.locations-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.locations-list li {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    margin-bottom: 5px;
    line-height: 1.4;
}

.footer-right {
    display: flex;
    flex-direction: column;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-link {
    color: #333333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #666666;
}

.footer-bottom {
    border-top: 1px solid #e5e5e5;
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-email {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-icon.facebook {
    background-color: #1877f2;
    color: white;
}

.social-icon.twitter {
    background-color: #000000;
    color: white;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo-img {
        height: 35px;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-nav.active {
        display: block;
    }
    
    .main {
        padding: 40px 0;
    }
    
    .main-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .subsection-title {
        font-size: 20px;
    }
    
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        gap: 20px;
    }
    
    .footer-left {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .footer-right {
        text-align: right;
        margin-right: 0;
        padding-right: 0;
        width: auto;
        align-self: flex-start;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        width: auto;
    }
    
    .footer-links li {
        width: auto;
        text-align: right;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .subsection-title {
        font-size: 18px;
    }
    
    .section-text,
    .list li {
        font-size: 15px;
    }
    
    .nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .logo-img {
        height: 30px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer {
        display: none;
    }
    
    .main {
        padding: 0;
    }
    
    .privacy-policy {
        max-width: none;
    }
    
    .section {
        page-break-inside: avoid;
    }
    
    .section-title {
        page-break-after: avoid;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for better accessibility */
.nav-link:focus,
.footer-link:focus {
    outline: 2px solid #007BFF;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .section-text,
    .list li,
    .footer-text {
        color: #000000;
    }
    
    .nav-link,
    .footer-link {
        color: #000000;
    }
}

