/* Privacy Policy Page Styles */
.privacy-wrapper {
    width: 100%;
    min-height: 100vh;
    background: #f8f9fa;
}

/* Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #00b590 0%, #006905 100%);
    color: white;
    padding: 4rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 60vh;
    position: relative;
    overflow: hidden;
}

.privacy-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="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.privacy-hero-content {
    z-index: 2;
    position: relative;
}

.privacy-hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: white;
}

.privacy-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.privacy-hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.95;
    margin-bottom: 2rem;
}

.privacy-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    position: relative;
}

.privacy-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Main Content */
.privacy-main-content {
    padding: 4rem 0;
}

.privacy-section {
    margin-bottom: 4rem;
}

.privacy-section-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.privacy-section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.privacy-section-header p {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Content Cards */
.privacy-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.privacy-content-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.privacy-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #00b590 0%, #006905 100%);
}

.privacy-content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.privacy-content-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-content-card h3 i {
    color: #00b590;
    font-size: 1.25rem;
}

.privacy-content-card p {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.privacy-content-card ul {
    color: #6c757d;
    line-height: 1.7;
    padding-left: 1.5rem;
}

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

/* Highlight Box */
.privacy-highlight-box {
    background: linear-gradient(135deg, #e8f5e8 0%, #d4edda 100%);
    border: 1px solid #c3e6cb;
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.privacy-highlight-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #00b590 0%, #006905 100%);
}

.privacy-highlight-box h3 {
    color: #155724;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.privacy-highlight-box h3 i {
    color: #00b590;
}

.privacy-highlight-box p {
    color: #155724;
    line-height: 1.7;
    margin: 0;
}

/* Contact Section */
.privacy-contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    padding: 3rem;
    margin: 3rem 0;
    text-align: center;
}

.privacy-contact-section h2 {
    color: #2c3e50;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.privacy-contact-info {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    display: inline-block;
    text-align: left;
    margin-top: 1.5rem;
}

.privacy-contact-info p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.privacy-contact-info p:last-child {
    margin-bottom: 0;
}

.privacy-contact-info strong {
    color: #2c3e50;
    min-width: 80px;
    display: inline-block;
}

.privacy-contact-info i {
    color: #00b590;
    width: 20px;
    text-align: center;
}

/* Call to Action */
.privacy-cta-section {
    background: linear-gradient(135deg, #00b590 0%, #006905 100%);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
    border-radius: 20px;
    margin: 3rem 0;
}

.privacy-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-cta-section p {
    font-size: 1.1rem;
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.privacy-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.privacy-btn-primary {
    background: white;
    color: #00b590;
    border-color: white;
}

.privacy-btn-primary:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
}

.privacy-btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.privacy-btn-outline:hover {
    background: white;
    color: #00b590;
    transform: translateY(-2px);
}

.privacy-btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1rem;
        min-height: 50vh;
        gap: 2rem;
    }
    
    .privacy-hero-title {
        font-size: 2.5rem;
    }
    
    .privacy-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-section-content {
        padding: 0 1rem;
    }
    
    .privacy-section-header h2 {
        font-size: 2rem;
    }
    
    .privacy-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .privacy-content-card {
        padding: 1.5rem;
    }
    
    .privacy-contact-section {
        padding: 2rem 1rem;
    }
    
    .privacy-cta-section {
        padding: 3rem 1rem;
    }
    
    .privacy-cta-section h2 {
        font-size: 2rem;
    }
    
    .privacy-cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .privacy-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 2rem 1rem;
        min-height: 45vh;
    }
    
    .privacy-hero-title {
        font-size: 2rem;
    }
    
    .privacy-section-content {
        padding: 0 0.75rem;
    }
    
    .privacy-content-card {
        padding: 1.25rem;
    }
    
    .privacy-contact-info {
        padding: 1.5rem;
    }
}
