/* style/privacy-policy.css */

:root {
    --k9k9-primary-color: #11A84E;
    --k9k9-secondary-color: #22C768;
    --k9k9-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --k9k9-card-bg: #11271B;
    --k9k9-background: #08160F;
    --k9k9-text-main: #F2FFF6;
    --k9k9-text-secondary: #A7D9B8;
    --k9k9-border: #2E7A4E;
    --k9k9-glow: #57E38D;
    --k9k9-gold: #F2C14E;
    --k9k9-divider: #1E3A2A;
    --k9k9-deep-green: #0A4B2C;
}

.page-privacy-policy {
    font-family: Arial, sans-serif;
    color: var(--k9k9-text-main); /* Default text color for the page */
    background-color: var(--k9k9-background); /* Body background color */
}

.page-privacy-policy__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
    background-color: var(--k9k9-deep-green);
    overflow: hidden;
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 30px;
}

.page-privacy-policy__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--k9k9-gold);
    margin-bottom: 20px;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

.page-privacy-policy__lead-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--k9k9-text-secondary);
    max-width: 800px;
    margin: 0 auto;
}

.page-privacy-policy__hero-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    max-width: 1200px;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    margin-top: 30px;
}

.page-privacy-policy__content-area {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    line-height: 1.7;
    font-size: 1.1rem;
    color: var(--k9k9-text-main);
    background-color: var(--k9k9-background);
}

.page-privacy-policy__section-title {
    font-size: 2.2rem;
    color: var(--k9k9-primary-color);
    margin-top: 50px;
    margin-bottom: 25px;
    font-weight: bold;
    border-bottom: 2px solid var(--k9k9-divider);
    padding-bottom: 10px;
}

.page-privacy-policy__content-area h3 {
    font-size: 1.6rem;
    color: var(--k9k9-text-main);
    margin-top: 35px;
    margin-bottom: 15px;
}

.page-privacy-policy__content-area p {
    margin-bottom: 15px;
    color: var(--k9k9-text-secondary);
}

.page-privacy-policy__grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 30px;
}

.page-privacy-policy__card {
    background-color: var(--k9k9-card-bg);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--k9k9-border);
    display: flex;
    flex-direction: column;
    color: var(--k9k9-text-main);
}

.page-privacy-policy__card-title {
    font-size: 1.4rem;
    color: var(--k9k9-gold);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-privacy-policy__card-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 20px;
}

.page-privacy-policy__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 30px auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 15px;
    color: var(--k9k9-text-secondary);
}

.page-privacy-policy__list li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.page-privacy-policy__list--large li strong {
    color: var(--k9k9-text-main);
}

.page-privacy-policy__text-link {
    color: var(--k9k9-primary-color);
    text-decoration: underline;
}

.page-privacy-policy__text-link:hover {
    color: var(--k9k9-secondary-color);
    text-decoration: none;
}

.page-privacy-policy__faq-list {
    margin-top: 40px;
}

.page-privacy-policy__faq-item {
    background-color: var(--k9k9-card-bg);
    border: 1px solid var(--k9k9-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--k9k9-text-main);
    cursor: pointer;
    background-color: var(--k9k9-deep-green);
    border-bottom: 1px solid var(--k9k9-divider);
    transition: background-color 0.3s ease;
}

.page-privacy-policy__faq-question::-webkit-details-marker {
    display: none;
}

.page-privacy-policy__faq-question::marker {
    display: none;
}

.page-privacy-policy__faq-question:hover {
    background-color: var(--k9k9-primary-color);
}

.page-privacy-policy__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--k9k9-gold);
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-question {
    border-bottom: 1px solid var(--k9k9-primary-color);
}

.page-privacy-policy__faq-item[open] .page-privacy-policy__faq-toggle {
    color: var(--k9k9-text-main);
}

.page-privacy-policy__faq-answer {
    padding: 20px 25px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--k9k9-text-secondary);
}

.page-privacy-policy__faq-answer p {
    margin-bottom: 0;
}

.page-privacy-policy__cta-section {
    text-align: center;
    margin-top: 60px;
    padding: 40px 20px;
    background-color: var(--k9k9-deep-green);
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-privacy-policy__cta-text {
    font-size: 1.5rem;
    color: var(--k9k9-gold);
    margin-bottom: 30px;
    font-weight: bold;
}

.page-privacy-policy__btn-primary {
    display: inline-block;
    padding: 15px 35px;
    background: var(--k9k9-button-gradient);
    color: #ffffff; /* Explicitly white for contrast */
    text-decoration: none;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: bold;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: none;
    cursor: pointer;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

.page-privacy-policy__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-privacy-policy__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-privacy-policy__lead-text {
        font-size: 1.1rem;
    }
    .page-privacy-policy__section-title {
        font-size: 2rem;
    }
    .page-privacy-policy__content-area {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important;
    }
    .page-privacy-policy__hero-content {
        margin-bottom: 20px;
    }
    .page-privacy-policy__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        padding: 0 10px;
    }
    .page-privacy-policy__lead-text {
        font-size: 1rem;
        padding: 0 10px;
    }
    .page-privacy-policy__hero-image {
        margin-top: 20px;
    }
    .page-privacy-policy__content-area {
        padding: 30px 15px;
    }
    .page-privacy-policy__section-title {
        font-size: 1.8rem;
        margin-top: 40px;
        margin-bottom: 20px;
    }
    .page-privacy-policy__content-area h3 {
        font-size: 1.4rem;
        margin-top: 30px;
        margin-bottom: 10px;
    }
    .page-privacy-policy__grid-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-privacy-policy__card {
        padding: 20px;
    }
    .page-privacy-policy__list {
        margin-left: 20px;
    }
    .page-privacy-policy__faq-question {
        padding: 15px 20px;
        font-size: 1.1rem;
    }
    .page-privacy-policy__faq-answer {
        padding: 15px 20px;
        font-size: 0.95rem;
    }
    .page-privacy-policy__cta-section {
        margin-top: 40px;
        padding: 30px 15px;
    }
    .page-privacy-policy__cta-text {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    .page-privacy-policy__btn-primary {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    /* Mobile image responsive adaptation */
    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-privacy-policy__section,
    .page-privacy-policy__card,
    .page-privacy-policy__container,
    .page-privacy-policy__hero-section,
    .page-privacy-policy__content-area,
    .page-privacy-policy__cta-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }
}

@media (max-width: 480px) {
    .page-privacy-policy__main-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
    }
    .page-privacy-policy__section-title {
        font-size: 1.6rem;
    }
    .page-privacy-policy__cta-text {
        font-size: 1.1rem;
    }
}