/* Import base styles from main site */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2A4B8D;
}

h3 {
    font-size: 1.5rem;
    color: #2A4B8D;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    text-align: center;
    vertical-align: middle;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, #2A4B8D 0%, #1D9A9A 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(42, 75, 141, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 75, 141, 0.4);
}

.btn-secondary {
    background: white;
    color: #2A4B8D;
    border: 2px solid #2A4B8D;
}

.btn-secondary:hover {
    background: #2A4B8D;
    color: white;
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Header */
header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #2A4B8D;
}

/* Privacy Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 120px 0 60px;
    text-align: center;
}

.privacy-header h1 {
    color: #2A4B8D;
    margin-bottom: 1rem;
}

.privacy-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    color: #666;
    font-size: 0.9rem;
}

.last-updated i {
    color: #2A4B8D;
}

/* Privacy Content */
.privacy-content {
    padding: 60px 0;
}

.privacy-content .container {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
}

/* Navigation Sidebar */
.privacy-navigation {
    position: sticky;
    top: 120px;
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.privacy-navigation h3 {
    color: #2A4B8D;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.privacy-navigation ul {
    list-style: none;
}

.privacy-navigation li {
    margin-bottom: 0.5rem;
}

.privacy-navigation a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    display: block;
    padding: 0.25rem 0;
}

.privacy-navigation a:hover {
    color: #2A4B8D;
}

/* Main Content */
.privacy-main {
    max-width: none;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.privacy-section h2 i {
    color: #1D9A9A;
    font-size: 1.5rem;
}

.privacy-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-section ul {
    margin: 1rem 0 1rem 2rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

/* Subsections */
.subsection {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2A4B8D;
}

.subsection h3 {
    margin-bottom: 1rem;
}

/* Use Categories */
.use-category {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
}

.use-category h3 {
    color: #2A4B8D;
    margin-bottom: 1rem;
}

/* Sharing Policy */
.sharing-policy {
    background: linear-gradient(135deg, #2A4B8D 0%, #1D9A9A 100%);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: center;
}

.sharing-policy h3 {
    color: white;
    margin-bottom: 1rem;
}

.sharing-item {
    margin: 2rem 0;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sharing-item h4 {
    color: #2A4B8D;
    margin-bottom: 1rem;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.security-item i {
    font-size: 2rem;
    color: #1D9A9A;
    margin-bottom: 1rem;
}

.security-item h4 {
    color: #2A4B8D;
    margin-bottom: 0.5rem;
}

.security-item p {
    font-size: 0.9rem;
    color: #666;
}

/* Cookie Types */
.cookie-type {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #1D9A9A;
}

.cookie-type h4 {
    color: #2A4B8D;
    margin-bottom: 1rem;
}

/* Compliance Grid */
.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.compliance-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    border-left: 4px solid #2A4B8D;
}

.compliance-item h4 {
    color: #2A4B8D;
    margin-bottom: 1rem;
}

.compliance-item p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.right-item i {
    font-size: 1.5rem;
    color: #1D9A9A;
    margin-top: 0.25rem;
}

.right-item h4 {
    color: #2A4B8D;
    margin-bottom: 0.5rem;
}

.right-item p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

/* Contact Privacy Info */
.contact-privacy-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-method i {
    font-size: 1.5rem;
    color: #2A4B8D;
    margin-top: 0.25rem;
}

.contact-method h4 {
    color: #2A4B8D;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.response-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-top: 1rem;
}

.response-time i {
    color: #1D9A9A;
}

.response-time p {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
}

/* Privacy CTA */
.privacy-cta {
    background: linear-gradient(135deg, #2A4B8D 0%, #1D9A9A 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.privacy-cta h2 {
    color: white;
    margin-bottom: 1rem;
}

.privacy-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-logo-section {
    display: flex;
    align-items: center;
}

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

.footer-description p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-column h4 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #1D9A9A;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.8rem;
    margin: 0;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .privacy-content .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .privacy-navigation {
        position: static;
        order: 2;
    }
    
    .privacy-main {
        order: 1;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .security-grid {
        grid-template-columns: 1fr;
    }
    
    .compliance-grid {
        grid-template-columns: 1fr;
    }
    
    .rights-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .subsection {
        padding: 1rem;
    }
    
    .use-category {
        padding: 1rem;
    }
    
    .sharing-item {
        padding: 1rem;
    }
    
    .security-item {
        padding: 1rem;
    }
    
    .right-item {
        padding: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
}

