/* Privacy Page Specific Styles */

/* Privacy Hero Section */
.privacy-hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #fff5e6 0%, #ffe4b3 100%);
    text-align: center;
}

.privacy-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    color: #d35400;
    margin-bottom: 1.5rem;
}

.privacy-hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.last-updated {
    font-size: 1rem;
    color: #e67e22;
    margin-top: 1.5rem;
}

/* Privacy Overview */
.privacy-overview {
    padding: 5rem 0;
    background: white;
}

.privacy-overview h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e67e22;
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.overview-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 1.5rem;
}

.overview-text h3 {
    color: #d35400;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.overview-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.overview-text li {
    color: #666;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.overview-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.overview-text strong {
    color: #e67e22;
}

.overview-image {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.overview-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Information Collection */
.info-collection {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
}

.info-collection h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e67e22;
}

.collection-card {
    transition: all 0.3s ease;
}

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

.collection-card h3 {
    color: #e67e22;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.collection-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.collection-card li {
    color: #666;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.collection-card:first-child li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.collection-card:last-child li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.collection-card strong {
    color: #e67e22;
}

.note {
    background: #e8f5e8;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    font-style: italic;
    color: #2c3e50;
    font-size: 0.95rem;
}

/* Data Usage */
.data-usage {
    padding: 5rem 0;
    background: white;
}

.data-usage h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e67e22;
}

.usage-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: flex-start;
}

.usage-image {
    display: flex;
    justify-content: center;
}

.usage-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.usage-text h3 {
    color: #e67e22;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.usage-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.usage-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
}

.usage-item h4 {
    color: #d35400;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.usage-item p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Cookies Section */
.cookies-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
}

.cookies-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e67e22;
}

.cookies-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.cookies-text h3 {
    color: #e67e22;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.cookies-text h4 {
    color: #d35400;
    font-size: 1.2rem;
    margin: 2rem 0 1rem;
}

.cookies-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cookies-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.cookies-text li {
    color: #666;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.cookies-text li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
    font-size: 1.2rem;
}

.cookies-text strong {
    color: #e67e22;
}

.cookies-image {
    display: flex;
    justify-content: center;
}

.cookies-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Data Security */
.data-security {
    padding: 5rem 0;
    background: white;
}

.data-security h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e67e22;
}

.security-content h3 {
    color: #e67e22;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.security-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.security-card {
    text-align: center;
    transition: all 0.3s ease;
}

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

.security-card h4 {
    color: #e67e22;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.security-card p {
    color: #666;
    line-height: 1.6;
}

/* User Rights */
.user-rights {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
}

.user-rights h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e67e22;
}

.rights-content h3 {
    color: #e67e22;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
}

.rights-content > p {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.rights-card {
    transition: all 0.3s ease;
}

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

.rights-card h4 {
    color: #e67e22;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.rights-card p {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: white;
}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e67e22;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: flex-start;
}

.contact-text h3 {
    color: #e67e22;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-text > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-method {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #f39c12;
}

.contact-method h4 {
    color: #d35400;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

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

.contact-method strong {
    color: #e67e22;
}

.response-time {
    font-style: italic;
    color: #27ae60;
    margin-top: 1.5rem;
    font-size: 0.95rem;
}

.contact-image {
    display: flex;
    justify-content: center;
}

.contact-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Policy Updates */
.policy-updates {
    padding: 5rem 0;
    background: linear-gradient(135deg, #fef9f3 0%, #fff5e6 100%);
}

.policy-updates h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #e67e22;
}

.updates-content h3 {
    color: #e67e22;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.updates-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.updates-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.updates-content li {
    color: #666;
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.updates-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
    font-size: 1.2rem;
}

.updates-content strong {
    color: #e67e22;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .overview-content,
    .usage-content,
    .cookies-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .usage-content {
        grid-template-columns: 1fr;
    }
    
    .collection-grid,
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .security-measures {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 2rem 0;
    }
    
    .privacy-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-overview,
    .info-collection,
    .data-usage,
    .cookies-section,
    .data-security,
    .user-rights,
    .contact-section,
    .policy-updates {
        padding: 3rem 0;
    }
    
    .privacy-overview h2,
    .info-collection h2,
    .data-usage h2,
    .cookies-section h2,
    .data-security h2,
    .user-rights h2,
    .contact-section h2,
    .policy-updates h2 {
        font-size: 2rem;
    }
    
    .security-measures {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .collection-card,
    .security-card,
    .rights-card {
        padding: 1.5rem;
    }
    
    .usage-item,
    .contact-method {
        padding: 1rem;
    }
    
    .security-measures {
        grid-template-columns: 1fr;
    }
}
