/* Cookies Policy Page Styles */

section.cookiesPage {
    padding: 70px 0 50px;
    background-color: #f8f9fa;
}

.cookiesWrapper {
    display: flex;
    justify-content: center;
}

.cookiesContent {
    max-width: 1100px;
    width: 100%;
    background-color: #fff;
    padding: 40px 60px;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

/* Header Styles */
.cookies-header {
    text-align: center;
    padding-bottom: 40px;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 40px;
}

.cookies-main-icon {
    color: #0554E6;
    margin-bottom: 20px;
}

.cookiesPage h1 {
    font-size: 35px;
    line-height: 130%;
    color: #464860;
    margin-bottom: 15px;
    font-weight: 500;
}

.last-updated {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: #6c757d;
    margin-top: 10px;
}

.last-updated svg {
    color: #0554E6;
}

/* Section Styles */
.cookies-section {
    margin-bottom: 50px;
}

.cookies-section h2 {
    font-size: 26px;
    line-height: 130%;
    color: #464860;
    margin-bottom: 24px;
    font-weight: 500;
}

.cookies-section h3 {
    font-size: 17px;
    line-height: 1.3;
    color: #464860;
    margin: 25px 0 8px;
    font-weight: 500;
}

.cookies-section h4 {
    font-size: 18px;
    line-height: 1.3;
    color: #464860;
    margin: 15px 0 10px;
    font-weight: 600;
}

.cookiesContent p {
    font-size: 15px;
    line-height: 1.7;
    color: #60738A;
    margin-bottom: 12px;
}

.cookiesContent p a,
.cookiesContent ul li a {
    color: #0554E6;
    text-decoration: none;
    font-weight: 500;
}

.cookiesContent p a:hover,
.cookiesContent ul li a:hover {
    text-decoration: underline;
    
}

.cookiesContent ul {
    padding-left: 30px;
    margin-bottom: 20px;
}

.cookiesContent ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #60738A;
    margin-bottom: 12px;
    list-style-type: disc;
}

.cookiesContent ul li strong {
    color: #464860;
}

.cookiesContent ol {
    padding-left: 30px;
    margin-bottom: 20px;
}

.cookiesContent ol li {
    font-size: 15px;
    line-height: 1.7;
    color: #60738A;
    margin-bottom: 10px;
}

/* Info Box */
.info-box {
    background: #f4f9ff;
    border-left: 4px solid #0554E6;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 6px;
}

.info-box h3 {
    color: #575E62;
    margin-top: 0;
    margin-bottom: 15px;
}

.info-box ul {
    margin-bottom: 0;
}

/* Cookie Type Cards */
.cookie-type-card {
    background-color: #fff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.cookie-type-card:hover {
    box-shadow: 0 4px 15px rgba(54, 127, 211, 0.15);
    border-color: #0554E6;
}

.cookie-type-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.cookie-icon {
    color: #0554E6;
    flex-shrink: 0;
}

.cookie-type-card h3 {
    color: #464860;
    margin: 0;
    font-size: 20px;
    font-weight: 500;
}

.important-note {
    background-color: #fffaea;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
    font-size: 16px;
    color: #856404;
}

/* Duration Grid */
.duration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.duration-card {
    background: #fff;
    border-radius: 30px;
    border: 1px solid #cfdef0;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 0 16px 0 #469fdf33;
    transition: all 0.3s ease;
}

.duration-icon {
    color: #0554E6;
    margin-bottom: 15px;
}

.duration-card h3 {
    font-size: 17px;
    color: #464860;
    font-weight: 500;
    margin-bottom: 15px;
}

.duration-card ul {
    text-align: left;
    padding-left: 25px;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 25px;
}

.impact-card {
    background: #fff;
    border-radius: 30px;
    border: 1px solid #cfdef0;
    padding: 30px 25px;
    box-shadow: 0 0 16px 0 #469fdf33;
    transition: all 0.3s ease;
}

.impact-card h4 {
    color: #464860;
    font-size: 17px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 12px;
}

.impact-card ul {
    padding-left: 20px;
    margin-bottom: 0;
}

.impact-card ul li {
    font-size: 15px;
    margin-bottom: 8px;
}

/* Related Links */
.related-links {
    background-color: #f5fbff;
    padding: 25px;
    border-radius: 8px;
    margin-top: 20px;
}

.related-links h3 {
    margin-top: 0;
    color: #464860;
}

.related-links ul {
    margin-bottom: 0;
}

.related-links ul li {
    margin-bottom: 10px;
}

/* Contact Section */
.contact-section {
    background-color: #f5fbff;
    padding: 40px;
    border-radius: 12px;
    margin-top: 50px;
}

.contact-section h2 {
    border-left: none;
    padding-left: 0;
    text-align: center;
    margin-bottom: 30px;
}

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

.contact-card {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.contact-card:hover {
    box-shadow: 0 4px 12px rgba(54, 127, 211, 0.15);
    border-color: #0554E6;
    transform: translateY(-2px);
}

.contact-icon-main {
    color: #0554E6;
    margin-bottom: 15px;
}

.contact-card h3 {
    font-size: 17px;
    color: #464860;
    font-weight: 500;
    margin-bottom: 10px;
}

.contact-card p {
    margin-bottom: 0;
    font-size: 16px;
}

.contact-card a {
    color: #0554E6;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Company Info */
.company-info {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #dee2e6;
}

.company-info h3 {
    color: #464860;
    font-size: 15px;
    margin-bottom: 15px;
}

.company-info h4 {
    color: #464860;
    font-size: 18px;
    margin: 20px 0 15px;
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.location-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.location-item svg {
    color: #0554E6;
    flex-shrink: 0;
    margin-top: 3px;
}

.location-item strong {
    display: block;
    color: #464860;
    margin-bottom: 8px;
    font-size: 16px;
}

.location-item p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Footer Note */
.cookies-footer-note {
    background: linear-gradient(180deg, #1176CA 0%, #064377 100%);
    color: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.cookies-footer-note svg {
    color: #fff;
}

.cookies-footer-note p {
    color: #fff;
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
}

.cookies-footer-note strong {
    font-size: 18px;
}

.cookies-footer-note a {
    color: #fff;
    text-decoration: underline;
    font-weight: 600;
}

.cookies-footer-note a:hover {
    color: #f0f7ff;
}

/* Cookie Tables */
.cookie-table-wrapper {
    overflow-x: auto;
    margin: 25px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    background-color: #fff;
    font-size: 16px;
}

.cookie-table thead {
    background-color: #0554E6;
    color: #fff;
}

.cookie-table thead th {
    padding: 15px 12px;
    text-align: left;
    font-weight: 600;
    font-size: 16px;
    border-bottom: 2px solid #2d6bb3;
}

.cookie-table tbody tr {
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.cookie-table tbody tr:hover {
    background-color: #f8f9fa;
}

.cookie-table tbody tr:last-child {
    border-bottom: none;
}

.cookie-table tbody td {
    padding: 12px;
    color: #60738A;
    vertical-align: top;
}

.cookie-table tbody td:first-child {
    font-weight: 500;
}

.cookie-table code {
    background-color: #f4f9ff;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 14px;
    color: #464860;
    border: 1px solid #c8d9ee;
}

.cookie-note {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px 20px;
    margin: 25px 0;
    border-radius: 4px;
}

.cookie-note p {
    margin: 0;
    color: #856404;
    font-size: 15px;
    line-height: 1.6;
}

/* Benefit List */
.benefit-list {
    list-style-type: none !important;
    padding-left: 0 !important;
}

.benefit-list li {
    padding-left: 35px;
    position: relative;
    margin-bottom: 15px;
    list-style: none !important;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 20px;
}
.cookiesContent .contact-grid a {
    text-decoration: underline;
color: #464860;

}
.cookiesContent .contact-grid a:hover {
 color: #0554E6;

}
/* Responsive Styles */
@media (max-width: 1200px) {
    .cookiesContent {
        padding: 40px 50px;
    }
}

@media (max-width: 991px) {
    .cookiesContent {
        padding: 35px 40px;
    }

    .cookiesPage h1 {
        font-size: 36px;
    }

    .cookies-section h2 {
        font-size: 24px;
    }
}

@media (max-width: 767px) {
    section.cookiesPage {
        padding: 50px 0 40px;
    }

    .cookiesWrapper {
        flex-direction: column;
    }

    .cookiesContent {
        padding: 30px 25px;
        border-radius: 8px;
    }

    .cookiesPage h1 {
        font-size: 30px;
    }

    .cookies-section h2 {
        font-size: 22px;
    }

    .cookies-section h3 {
        font-size: 20px;
    }

    .cookiesContent p,
    .cookiesContent ul li {
        font-size: 16px;
    }

    .cookie-type-card {
        padding: 20px;
    }

    .cookie-type-header {
        /* flex-direction: column; */
        align-items: flex-start;
    }

    .contact-section {
        padding: 30px 20px;
    }

    .duration-grid,
    .impact-grid,
    .contact-grid,
    .location-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    section.cookiesPage {
        padding: 40px 0 30px;
    }

    .cookiesContent {
        padding: 25px 20px;
    }

    .cookiesPage h1 {
        font-size: 26px;
    }

    .cookies-header {
        padding-bottom: 30px;
    }

    .cookies-main-icon {
        width: 40px;
        height: 40px;
    }

    .cookies-section h2 {
        font-size: 20px;
    }

    .cookies-section h3 {
        font-size: 17px;
    }

    .cookiesContent p,
    .cookiesContent ul li {
        font-size: 15px;
    }

    .cookie-type-card {
        padding: 18px;
    }

    .cookie-icon {
        width: 28px;
        height: 28px;
    }

    .duration-icon {
        width: 28px;
        height: 28px;
    }

    .contact-icon-main {
        width: 20px;
        height: 20px;
    }

    .cookies-footer-note {
        padding: 25px 20px;
    }

    .cookie-table {
        font-size: 14px;
    }

    .cookie-table thead th {
        padding: 12px 10px;
        font-size: 14px;
    }

    .cookie-table tbody td {
        padding: 10px;
        font-size: 14px;
    }

    .cookie-table code {
        font-size: 12px;
        padding: 2px 6px;
    }
}