/* ===================================
   PRIVACY PAGE STYLES
   =================================== */

/* Privacy Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #4a5a4c 0%, #3d4d3f 100%);
    padding: 100px 0 80px;
    text-align: center;
    color: white;
}

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

.privacy-hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.privacy-hero-text {
    font-size: 20px;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 15px;
    font-weight: 400;
    color: #e8f3ea;
}

.privacy-hero-date {
    font-size: 15px;
    color: #9bae9d;
    font-style: italic;
    margin-top: 10px;
}

/* Privacy Content Section */
.privacy-content {
    background-color: #ffffff;
    padding: 80px 0;
}

.privacy-content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.privacy-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e8f3ea;
    transition: transform 0.3s ease;
}

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

.privacy-section:hover {
    transform: translateX(5px);
}

.privacy-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.privacy-section h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 30px;
    background-color: #f5704a;
    border-radius: 3px;
}

.privacy-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

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

.privacy-section ul {
    margin: 20px 0;
    padding-left: 0;
}

.privacy-section ul li {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
    padding-left: 35px;
    position: relative;
}

.privacy-section ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #9bae9d;
    font-size: 14px;
}

.privacy-section strong {
    color: #333;
    font-weight: 700;
}

.privacy-section a {
    color: #f5704a;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.privacy-section a:hover {
    color: #e45c36;
    text-decoration: underline;
}

/* Privacy Contact Section */
.privacy-contact {
    background-color: #f8faf8;
    padding: 40px;
    border-radius: 8px;
    border: 2px solid #e8f3ea;
    margin-top: 20px;
}

.privacy-contact h2::before {
    background-color: #9bae9d;
}

.privacy-contact p {
    margin-bottom: 10px;
}

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

/* ===================================
   TABLET STYLES (768px - 1024px)
   =================================== */
@media (max-width: 1024px) {
    .privacy-hero {
        padding: 80px 0 60px;
    }
    
    .privacy-hero-title {
        font-size: 38px;
    }
    
    .privacy-hero-text {
        font-size: 18px;
    }
    
    .privacy-hero-date {
        font-size: 14px;
    }
    
    .privacy-content {
        padding: 60px 0;
    }
    
    .privacy-section {
        margin-bottom: 40px;
        padding-bottom: 35px;
    }
    
    .privacy-section h2 {
        font-size: 26px;
    }
    
    .privacy-section p,
    .privacy-section ul li {
        font-size: 16px;
    }
    
    .privacy-contact {
        padding: 35px;
    }
}

/* ===================================
   MOBILE STYLES (Max 767px)
   =================================== */
@media (max-width: 767px) {
    .privacy-hero {
        padding: 60px 0 50px;
    }
    
    .privacy-hero-title {
        font-size: 30px;
    }
    
    .privacy-hero-text {
        font-size: 16px;
    }
    
    .privacy-hero-date {
        font-size: 13px;
    }
    
    .privacy-content {
        padding: 50px 0;
    }
    
    .privacy-section {
        margin-bottom: 35px;
        padding-bottom: 30px;
    }
    
    .privacy-section:hover {
        transform: none;
    }
    
    .privacy-section h2 {
        font-size: 24px;
        padding-left: 18px;
    }
    
    .privacy-section h2::before {
        width: 4px;
        height: 26px;
    }
    
    .privacy-section p,
    .privacy-section ul li {
        font-size: 15px;
    }
    
    .privacy-section ul li {
        padding-left: 30px;
    }
    
    .privacy-contact {
        padding: 30px 25px;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 50px 0 40px;
    }
    
    .privacy-hero-title {
        font-size: 26px;
    }
    
    .privacy-hero-text {
        font-size: 15px;
    }
    
    .privacy-content {
        padding: 40px 0;
    }
    
    .privacy-section {
        margin-bottom: 30px;
        padding-bottom: 25px;
    }
    
    .privacy-section h2 {
        font-size: 22px;
        padding-left: 16px;
    }
    
    .privacy-section h2::before {
        width: 4px;
        height: 24px;
    }
    
    .privacy-section p,
    .privacy-section ul li {
        font-size: 14px;
    }
    
    .privacy-contact {
        padding: 25px 20px;
    }
}