/* Privacy Policy Page Styles */

body {
    background: linear-gradient(135deg, #e8e8d8 0%, #e5e5d8 50%, #dddcd5 100%);
    background-attachment: fixed;
}

.privacy-container {
    max-width: 100%;
    margin: 0;
    padding: 60px 5vw;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    font-family: 'Jost', sans-serif;
    border: none;
    padding-top: 10vw;
}

.policy-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 25px;
    border-bottom: 2px solid #e0e0e0;
}

.policy-header h1 {
    color: #144835;
    font-size: 2.8rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.last-updated {
    color: #666;
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

.policy-intro {
    background: linear-gradient(135deg, #f8fff8 0%, #f5fdf5 100%);
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 5px solid #a2c144;
}

.policy-intro p {
    color: #3a3a3a;
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.intro-note {
    color: #666;
    font-weight: 500;
}

.policy-section {
    margin-bottom: 40px;
    padding: 30px;
    background: #fafafa;
    border-radius: 10px;
    border-left: 4px solid #144835;
    transition: all 0.3s ease;
}

.policy-section:hover {
    box-shadow: 0 5px 20px rgba(20, 72, 53, 0.08);
}

.section-content {
    margin-top: 20px;
}

.info-category {
    background: white;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border: 1px solid #e8e8e8;
}

.info-category h3 {
    color: #144835;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: #f5f5f5;
    border-color: #a2c144;
}

.contact-item i {
    color: #a2c144;
    font-size: 1.3rem;
    width: 25px;
}

.privacy-container h2 {
    color: #144835;
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.privacy-container h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 25px;
    background: linear-gradient(135deg, #a2c144, #144835);
    border-radius: 3px;
}

.privacy-container p {
    color: #3a3a3a;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.privacy-container ul li {
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1.05rem;
    padding-left: 10px;
    position: relative;
}

.privacy-container ul li::marker {
    color: #a2c144;
    font-size: 1.2em;
}

.privacy-container a {
    color: #144835;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.privacy-container a:hover {
    color: #a2c144;
    text-decoration: underline;
}

.privacy-container strong {
    color: #144835;
    font-weight: 600;
}

/* Highlight boxes */
.highlight-box {
    background: linear-gradient(135deg, #f0f8f0 0%, #e8f5e8 100%);
    border-left: 4px solid #a2c144;
    padding: 20px;
    margin: 30px 0;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(20, 72, 53, 0.05);
}

/* Contact section styling */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #f0f3f0 100%);
    padding: 35px;
    border-radius: 15px;
    margin-top: 40px;
    border: 2px solid rgba(162, 193, 68, 0.2);
    box-shadow: 0 8px 25px rgba(20, 72, 53, 0.1);
}

.contact-section h2 {
    color: #144835;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.contact-section p {
    margin: 15px 0;
    color: #3a3a3a;
}

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

.contact-section a:hover {
    color: #a2c144;
    text-decoration: underline;
}

@media (max-width: 768px) {
    body {
        background: linear-gradient(135deg, #e8e8d8 0%, #e5e5d8 100%);
    }

    .privacy-container {
        margin: 0;
        padding: 40px 4vw;
        box-shadow: none;
    }

    .policy-header h1 {
        font-size: 2rem;
    }

    .policy-intro {
        padding: 20px;
    }

    .policy-section {
        padding: 20px;
    }

    .privacy-container h2 {
        font-size: 1.5rem;
    }

    .contact-details {
        gap: 12px;
    }

    .contact-section {
        padding: 25px;
        border-radius: 12px;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        margin: 0;
        padding: 30px 3vw;
        box-shadow: none;
    }

    .policy-header h1 {
        font-size: 1.8rem;
    }

    .policy-intro {
        padding: 15px;
    }

    .policy-section {
        padding: 15px;
    }

    .privacy-container h2 {
        font-size: 1.3rem;
        padding-left: 15px;
    }

    .privacy-container h2::before {
        width: 4px;
        height: 18px;
    }

    .info-category {
        padding: 15px;
    }

    .contact-section {
        padding: 20px;
        border-radius: 10px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
        padding: 12px;
    }

    .contact-item i {
        font-size: 1.5rem;
    }
}

