/* Basic Settings */
:root {
    --primary-color: #1F7D7D; /* Your main color */
    --primary-dark: #175e5e;  /* Darker version */
    --primary-light: #2da1a1; /* Lighter version */
    --text-color: #333;
    --light-gray: #f8f8f8;
    --dark-gray: #555;
    --white: #fff;
    --border-color: #eee;
    --font-family: 'Inter', sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-gray);
    direction: ltr; /* Set for English */
    text-align: left; /* Set for English */
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

/* Header */
.header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 60px 0;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header h1 {
    font-size: 3em;
    margin-bottom: 10px;
    font-weight: 700;
}

.header .subtitle {
    font-size: 1.2em;
    opacity: 0.9;
    font-weight: 300;
}

/* Intro Section */
.intro-section {
    background-color: var(--white);
    padding: 40px;
    margin-top: -40px; /* Overlaps header for modern feel */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 10;
}

.intro-section p {
    margin-bottom: 15px;
    line-height: 1.8;
    text-align: left;
}

/* Highlight box for summary */
.highlight-box {
    background-color: var(--light-gray);
    border-left: 5px solid var(--primary-color); /* LTR adjustment */
    padding: 20px;
    margin-top: 30px;
    border-radius: 5px;
}

.highlight-box p {
    margin-bottom: 10px;
    color: var(--dark-gray);
}
.highlight-box p:last-child {
    margin-bottom: 0;
}
.highlight-box ul {
    list-style-type: none;
    padding-left: 20px;
    margin-top: 10px;
}
.highlight-box ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 5px;
}
.highlight-box ul li::before {
    content: '•';
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
}


/* Accordion Sections */
.privacy-sections {
    margin-top: 40px;
}

.accordion-item {
    background-color: var(--white);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    overflow: hidden; /* For content transition */
}

.accordion-header {
    width: 100%;
    background-color: var(--white);
    border: none;
    padding: 20px 25px;
    text-align: left; /* LTR adjustment */
    font-size: 1.4em;
    font-weight: 600;
    color: var(--primary-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.accordion-header:hover {
    background-color: var(--light-gray);
    color: var(--primary-color);
}

.accordion-header h3 {
    margin: 0;
    display: flex;
    align-items: center;
    font-size: 1.3em; /* Reset h3 size inside button */
}

.accordion-header .icon {
    font-size: 1.5em;
    margin-right: 10px; /* LTR adjustment */
    color: var(--primary-light);
}

.accordion-header .arrow {
    font-size: 1.2em;
    transition: transform 0.3s ease;
    color: var(--dark-gray);
}

.accordion-header.active .arrow {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #fcfcfc;
}

.accordion-content.open {
    max-height: 2000px; /* Large value to show all content */
    padding-top: 20px;
    padding-bottom: 20px;
}

.accordion-content p {
    margin-bottom: 15px;
    line-height: 1.7;
    text-align: left;
}

.accordion-content ul {
    list-style-type: none;
    margin-bottom: 15px;
    padding-left: 20px; /* LTR adjustment for custom bullet */
}

.accordion-content ul li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 15px; /* LTR adjustment */
    text-align: left;
}

.accordion-content ul li::before {
    content: '•'; /* Custom list bullet */
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    position: absolute;
    left: 0; /* LTR adjustment */
    top: 0;
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: var(--white);
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
    font-size: 0.9em;
}

.footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header h1 {
        font-size: 2.5em;
    }
    .header .subtitle {
        font-size: 1em;
    }
    .intro-section {
        padding: 30px;
        margin-top: -30px;
    }
    .accordion-header {
        font-size: 1.2em;
        padding: 18px 20px;
    }
    .accordion-header h3 {
        font-size: 1.1em;
    }
    .accordion-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .header {
        padding: 40px 0;
    }
    .header h1 {
        font-size: 2em;
    }
    .header .subtitle {
        font-size: 0.9em;
    }
    .intro-section {
        padding: 20px;
        margin-top: -20px;
    }
    .accordion-header {
        padding: 15px;
        font-size: 1.1em;
    }
    .accordion-header h3 {
        font-size: 1em;
    }
    .accordion-content {
        padding: 0 15px;
    }
    .accordion-content ul {
        padding-left: 15px;
    }
}
