/* Policy Content Section */
.policy-content-section {
    padding: 50px 0;
}

.policy-content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a2a6c;
    position: relative;
}

.policy-content-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #3a7bd5;
    margin: 15px auto;
    border-radius: 2px;
}

.policy-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a2a6c;
    display: flex;
    align-items: center;
}

.policy-section h3 i {
    margin-right: 15px;
    color: #3a7bd5;
}

.policy-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-list {
    list-style-type: none;
    margin: 20px 0;
}

.policy-list li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}
@media (max-width: 992px) {
    .policy-list li {
        padding-left: 0px;
    }
}

.policy-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #3a7bd5;
}

/* Content Section */
.cookie-content-section {
    padding: 50px 0;
}

.cookie-content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a2a6c;
    position: relative;
}

.cookie-content-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #3a7bd5;
    margin: 15px auto;
    border-radius: 2px;
}

.cookie-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cookie-section {
    margin-bottom: 40px;
}

.cookie-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1a2a6c;
    display: flex;
    align-items: center;
}

.cookie-section h3 i {
    margin-right: 15px;
    color: #3a7bd5;
}

.cookie-section p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.cookie-list {
    list-style-type: none;
    margin: 20px 0;
}

.cookie-list li {
    margin-bottom: 15px;
    padding-left: 10px;
    position: relative;
}

.cookie-list li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: #3a7bd5;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

tr {
    background-color: #f8f9fa;
    color: #1a2a6c;
}

tr:hover {
    background-color: #f5f5f5;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-blue);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-banner p {
    margin: 0;
    flex-grow: 1;
    padding-right: 20px;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn-primary {
    background: var(--primary-blue);
    color: white;
    border: 1px solid white;
}

.cookie-btn-primary:hover {
    background: var(--light-gray);
    color: var(--primary-dark);
}

.cookie-btn-outline {
    background: var(--light-blue);
    color: var(--primary-dark);
    border: 1px solid white;
}

.cookie-btn-outline:hover {
    background: var(--secondar-blue);
    color: white;
}


/* Content Section */
.help-content-section {
    padding: 20px 0;
}

.help-content-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a2a6c;
    position: relative;
}

.help-content-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: #3a7bd5;
    margin: 15px auto;
    border-radius: 2px;
}

.help-content {
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.help-section {
    margin-bottom: 20px;
}

.help-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a2a6c;
    display: flex;
    align-items: center;
}

.help-section h3 i {
    margin-right: 15px;
    color: #3a7bd5;
}

.help-section p {
    margin-bottom: 15px;
    line-height: 1.5;
}

.help-faq-list {
    list-style-type: none;
}

.help-faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.help-faq-question {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a2a6c;
    margin-bottom: 10px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
@media (max-width: 992px) {
    .help-faq-question {
        font-size: 1rem;
        font-weight: 400;
        color: #1a2a6c;
        margin-bottom: 5px;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.help-faq-answer {
    display: none;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 5px;
    margin-top: 10px;
}

.help-faq-answer.active {
    display: block;
}

.help-contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.help-contact-method {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.help-contact-method:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.help-contact-method i {
    font-size: 2.5rem;
    color: #3a7bd5;
    margin-bottom: 20px;
}

.help-contact-method h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #1a2a6c;
}

.help-btn {
    display: inline-block;
    background: var(--secondary-blue);
    color: white;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.help-btn:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    color: white;
}
