:root {
    --primary-color: #113B7A;
    --secondary-color: #1D5FD1;
    --button-gradient-start: #2B73F6;
    --button-gradient-end: #1144A6;
    --card-bg: #10233F;
    --text-main: #F3F8FF;
    --text-secondary: #AFC4E8;
    --border-color: #244D84;
    --glow-color: #4FA8FF;
    --gold-color: #F2C14E;
    --divider-color: #1B3357;
    --deep-navy: #08162B;
    --primary-color-rgb: 17, 59, 122;
}

.page-privacy-policy {
    font-family: 'Arial', sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--card-bg);
}

.page-privacy-policy__heading {
    font-size: 2.5em;
    font-weight: bold;
    color: var(--gold-color);
    margin-bottom: 30px;
    text-align: center;
    line-height: 1.2;
}

.page-privacy-policy__sub-heading {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 40px;
    margin-bottom: 20px;
}

.page-privacy-policy__list-title {
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-main);
    margin-bottom: 10px;
}

.page-privacy-policy__paragraph {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-privacy-policy__section {
    padding: 60px 0;
    border-bottom: 1px solid var(--divider-color);
}

.page-privacy-policy__section:last-of-type {
    border-bottom: none;
}

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

.page-privacy-policy__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px;
    background: linear-gradient(180deg, var(--deep-navy) 0%, var(--primary-color) 100%);
}

.page-privacy-policy__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.page-privacy-policy__hero-image {
    width: 100%;
    margin-bottom: 30px;
}

.page-privacy-policy__hero-image img {
    width: 100%;
    height: auto;
    max-width: 100%;
    display: block;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--border-color);
}

.page-privacy-policy__hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    max-width: 800px;
}

.page-privacy-policy__main-title {
    font-size: clamp(2em, 4vw, 3em);
    font-weight: 700;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 60ch;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__hero-description {
    font-size: 1.1em;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 70ch;
    margin-left: auto;
    margin-right: auto;
}

.page-privacy-policy__cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(180deg, var(--button-gradient-start) 0%, var(--button-gradient-end) 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-privacy-policy__cta-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-privacy-policy__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.page-privacy-policy__list-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background-color: var(--card-bg);
    padding: 25px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
}

.page-privacy-policy__list-item img {
    flex-shrink: 0;
    
    
    object-fit: contain;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    padding: 5px;
    background-color: rgba(255,255,255,0.05);
}

.page-privacy-policy__list-item p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

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

.page-privacy-policy__list--columns .page-privacy-policy__list-item {
    display: block;
    text-align: left;
    flex: none;
}

.page-privacy-policy__list--columns .page-privacy-policy__list-item .page-privacy-policy__list-title {
    margin-bottom: 15px;
}

.page-privacy-policy__list--security .page-privacy-policy__list-item {
    flex: 1 1 calc(50% - 15px);
}

.page-privacy-policy__contact-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-privacy-policy__contact-item {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: var(--text-main);
}

.page-privacy-policy__faq-section {
    background-color: var(--deep-navy);
    padding-top: 80px;
    padding-bottom: 80px;
}

.page-privacy-policy__faq-list {
    max-width: 900px;
    margin: 0 auto;
}

details.page-privacy-policy__faq-item {
    margin-bottom: 15px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    overflow: hidden;
    background: var(--card-bg);
}
details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background-color 0.3s ease;
    color: var(--text-main);
}
details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question::-webkit-details-marker {
    display: none;
}
details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question:hover {
    background: rgba(var(--primary-color-rgb), 0.2);
}
.page-privacy-policy__faq-qtext {
    flex: 1;
    font-size: 1.1em;
    font-weight: 600;
    line-height: 1.5;
    text-align: left;
    color: var(--text-main);
}
.page-privacy-policy__faq-toggle {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold-color);
    flex-shrink: 0;
    margin-left: 15px;
    width: 28px;
    text-align: center;
}
details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
    padding: 0 25px 25px;
    background: var(--card-bg);
    border-radius: 0 0 8px 8px;
    color: var(--text-secondary);
}

@media (max-width: 1024px) {
    .page-privacy-policy__list-item {
        flex: 1 1 calc(100% - 0px);
    }
}

@media (max-width: 768px) {
    .page-privacy-policy__heading {
        font-size: 2em;
        margin-bottom: 20px;
    }

    .page-privacy-policy__sub-heading {
        font-size: 1.5em;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-privacy-policy__section {
        padding: 40px 0;
    }

    .page-privacy-policy__container {
        padding: 0 15px;
    }

    .page-privacy-policy__hero-section {
        padding-top: 10px !important;
        padding-bottom: 40px;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .page-privacy-policy__hero-image img {
        border-radius: 4px;
    }
    
    .page-privacy-policy__cta-button {
        padding: 12px 30px;
        font-size: 16px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-privacy-policy img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-privacy-policy__section,
    .page-privacy-policy__card,
    .page-privacy-policy__container,
    .page-privacy-policy__cta-buttons,
    .page-privacy-policy__button-group,
    .page-privacy-policy__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-privacy-policy__list-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .page-privacy-policy__list-item img {
        margin-bottom: 15px;
        
        
    }

    .page-privacy-policy__list--columns {
        grid-template-columns: 1fr;
    }

    details.page-privacy-policy__faq-item summary.page-privacy-policy__faq-question {
        padding: 15px;
    }
    .page-privacy-policy__faq-qtext {
        font-size: 15px;
    }
    details.page-privacy-policy__faq-item .page-privacy-policy__faq-answer {
        padding: 0 15px 15px;
    }
}