body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    color: #0a1f44;
}

.text-white {
    color: #ffffff !important;
}

.bg-light-blue {
    background-color: #e0f2f7; /* Light blue */
}

.bg-dark-blue {
    background-color: #0a1f44; /* Dark blue */
}

.main-header {
    background-color: rgba(10, 31, 68, 0.95); /* Dark blue with transparency */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1030;
}

.navbar-brand .logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
}

.navbar-brand .brand-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
    margin: 0 15px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.nav-link:hover {
    color: #87ceeb !important; /* Sky blue */
    transform: translateY(-2px);
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.5);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 0.7%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}

.hero-section {
    background: linear-gradient(rgba(10, 31, 68, 0.7), rgba(10, 31, 68, 0.7)), url('img/uploads/hero-background_142.jpg') no-repeat center center/cover;
    min-height: 100vh;
    padding-top: 120px; /* Adjust for fixed header */
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 900px;
    margin: auto;
}

.hero-section h1 {
    font-size: 3.5rem;
    color: #fff;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.hero-section p {
    font-size: 1.3rem;
    color: #e0f2f7;
}

.btn-primary {
    background-color: #007bff; /* Bootstrap primary blue */
    border-color: #007bff;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 123, 255, 0.3);
}

.custom-btn-shadow {
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.section-title {
    font-size: 2.8rem;
    font-weight: 900;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -10px;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #007bff;
    border-radius: 2px;
}

.text-white.section-title::after {
    background-color: #87ceeb;
}

.rating-item {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    background-color: #ffffff;
}

.rating-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.rating-logo {
    height: 100px;
    width: 100%;
    display: block;
    margin: 20px auto;
    object-fit: cover;
}

.card-link-overlay {
    position: relative;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
}

.card-body {
    padding: 25px;
    position: relative;
    z-index: 2;
}

.rating-stars i {
    color: #ffc107;
    font-size: 1.1rem;
}

.review-score {
    color: #0a1f44;
    font-size: 1.1rem;
}

.highlights-list li {
    margin-bottom: 8px;
    color: #555;
    font-size: 0.95rem;
}

.highlights-list i {
    color: #28a745;
}

.bonus-offer {
    background-color: #e0f7fa;
    border-left: 4px solid #007bff;
    padding: 10px 15px;
    border-radius: 5px;
    color: #0a1f44;
    font-size: 0.95rem;
}

.bonus-offer i {
    color: #007bff;
}

.comparison-table {
    color: #e0f2f7;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.comparison-table thead th {
    background-color: #0a1f44;
    color: #fff;
    border-bottom: 2px solid #87ceeb;
    padding: 15px;
    font-weight: 700;
}

.comparison-table tbody tr {
    transition: background-color 0.3s ease;
}

.comparison-table tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, 0.03);
}

.comparison-table tbody tr:nth-of-type(even) {
    background-color: rgba(255, 255, 255, 0.01);
}

.comparison-table tbody td {
    padding: 15px;
    vertical-align: middle;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table .text-success {
    color: #28a745 !important;
}

.toggle-details {
    cursor: pointer;
    background-color: rgba(0, 123, 255, 0.1);
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.toggle-details:hover {
    background-color: rgba(0, 123, 255, 0.2);
}

.toggle-icon {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.collapsible-trigger[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.collapse-content {
    background-color: rgba(0, 0, 0, 0.2);
    color: #343a40;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.review-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.review-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #007bff;
}

.reviewer-name {
    font-weight: 700;
    color: #0a1f44;
    font-size: 1.1rem;
}

.review-text {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.rating-breakdown-list li {
    color: #666;
    margin-bottom: 5px;
}

.rating-breakdown-list i {
    color: #007bff;
}

.device-tag {
    display: inline-block;
    background-color: #e0f2f7;
    color: #0a1f44;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.criteria-card {
    background-color: #1a3a6b;
    color: #e0f2f7;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.criteria-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.25);
}

.criteria-icon {
    font-size: 3rem;
    color: #87ceeb;
}

.criteria-card h5 {
    color: #fff;
}

.contact-form {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 600;
    color: #0a1f44;
}

.form-control {
    border-radius: 8px;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #87ceeb;
    box-shadow: 0 0 0 0.25rem rgba(135, 206, 235, 0.25);
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875em;
}

.disclaimer-section {
    background-color: #0a1f44; /* Dark blue background */
    padding: 60px 0;
}

.disclaimer-content {
    background-color: #1a3a6b; /* Slightly lighter dark blue */
    border: 2px solid #87ceeb; /* Light blue border */
    color: #e0f2f7;
    position: relative;
    overflow: hidden;
}

.disclaimer-title {
    color: #87ceeb;
    font-weight: 700;
    font-size: 2rem;
}

.disclaimer-title i {
    color: #ffc107; /* Warning icon color */
}

.disclaimer-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.disclaimer-content p:last-of-type {
    margin-bottom: 0;
}

.site-footer {
    background-color: #0a1f44;
    color: #e0f2f7;
    font-size: 0.95rem;
}

.footer-brand .logo-img {
    height: 35px;
    width: auto;
}

.footer-brand .brand-name {
    color: #fff;
    font-weight: 700;
    font-size: 1.3rem;
}

.footer-heading {
    color: #fff;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-links,
.footer-contact {
    padding-left: 0;
    list-style: none;
}

.footer-links li a,
.footer-contact li a,
.footer-contact li {
    color: #e0f2f7;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-bottom: 10px;
    display: block;
}

.footer-links li a:hover,
.footer-contact li a:hover {
    color: #87ceeb;
}

.footer-contact i {
    color: #87ceeb;
}

.footer-info {
    color: #b0c4de;
    font-size: 0.85rem;
}

.footer-info .footer-link {
    color: #87ceeb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info .footer-link:hover {
    color: #fff;
}

.footer-info i {
    color: #87ceeb;
}

.copyright-text {
    font-size: 0.8rem;
    color: #b0c4de;
    margin-top: 20px;
}

.footer-logos {
    gap: 20px;
}

.footer-logo-item,
.footer-logo-item-18plus {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    height: 60px;
}

.footer-logo-item img {
    max-width: 120px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.footer-logo-item-18plus img {
    max-width: 50px;
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.age-verification-modal.show {
    opacity: 1;
    visibility: visible;
}

.age-verification-content {
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.age-verification-modal.show .age-verification-content {
    transform: scale(1);
}

.age-icon {
    width: 80px;
    height: auto;
    margin-bottom: 20px;
}

.age-verification-content h2 {
    color: #0a1f44;
    font-size: 2rem;
    margin-bottom: 15px;
}

.age-verification-content p {
    color: #555;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.age-verification-buttons .btn {
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

.age-verification-buttons .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

.age-verification-buttons .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

.age-verification-buttons .btn-secondary {
    background-color: #6c757d;
    border-color: #6c757d;
}

.age-verification-buttons .btn-secondary:hover {
    background-color: #5c636a;
    border-color: #5c636a;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(10, 31, 68, 0.95); /* Dark blue with transparency */
    color: #fff;
    padding: 10px 0;
    z-index: 1040;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-100%);
    transition: transform 0.5s ease-out;
    display: none;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
}

.cookie-banner p {
    font-size: 0.9rem;
}

.cookie-link {
    color: #87ceeb;
    text-decoration: underline;
}

.cookie-link:hover {
    color: #fff;
}

.btn-cookie {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    font-weight: 600;
    border-radius: 20px;
    padding: 5px 15px;
    text-decoration: none;
}

.age-verification-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-cookie:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #fff;
}

.btn-cookie-outline {
    background-color: transparent;
    border: 1px solid #007bff;
    color: #007bff;
    font-weight: 600;
    border-radius: 20px;
    padding: 5px 15px;
    text-decoration: none;
}

.btn-cookie-outline:hover {
    background-color: #007bff;
    color: #fff;
}

/* Cookie Settings Modal */
#cookieSettingsModal .modal-content {
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#cookieSettingsModal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

#cookieSettingsModal .modal-title {
    color: #0a1f44;
    font-weight: 700;
}

#cookieSettingsModal .form-check-label {
    font-weight: 600;
    color: #0a1f44;
}

#cookieSettingsModal .form-text.text-muted-custom {
    color: #6c757d !important;
    font-size: 0.85rem;
}

#cookieSettingsModal .form-check-input:checked {
    background-color: #007bff;
    border-color: #007bff;
}

#cookieSettingsModal .btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

#cookieSettingsModal .btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
}

/* General responsiveness */
@media (max-width: 991.98px) {
    .hero-section {
        min-height: 80vh;
        padding-top: 100px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .navbar-collapse {
        background-color: rgba(10, 31, 68, 0.98);
        padding: 15px;
        border-radius: 8px;
        margin-top: 10px;
    }

    .nav-link {
        margin: 5px 0;
        text-align: center;
    }

    .footer-brand, .footer-heading, .footer-links, .footer-contact {
        text-align: center !important;
    }

    .footer-links li, .footer-contact li {
        display: inline-block;
        margin: 0 8px;
    }

    .footer-contact li:first-child {
        display: block;
    }

    .footer-info span, .footer-info a {
        display: block;
        margin-bottom: 10px;
    }
}

@media (max-width: 767.98px) {
    .hero-section {
        min-height: 70vh;
        padding-top: 80px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 0.9rem;
    }

    .btn-primary {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .cookie-banner .container {
        flex-direction: column;
        align-items: flex-start !important;
    }

    .cookie-banner .d-flex {
        width: 100%;
        justify-content: space-around;
        margin-top: 10px;
    }

    .cookie-banner p {
        text-align: center;
        width: 100%;
        margin-bottom: 10px !important;
    }

    .disclaimer-title {
        font-size: 1.5rem;
    }

    .disclaimer-content p {
        font-size: 0.9rem;
    }

    .footer-logo-item, .footer-logo-item-18plus {
        height: auto;
    }

    .footer-logo-item img, .footer-logo-item-18plus img {
        max-width: none;
        max-height: none;
        width: 100%;
        height: 70px;
        object-fit: contain;
    }


}
.secureTermsHub {
    /* Padding for the main content area */
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    /* Optional: Max width for better readability on large screens, uncomment if needed */
    /* max-width: 960px; */
    /* margin-left: auto; */
    /* margin-right: auto; */
}

.secureTermsHub h1 {
    /* Heading 1 styles */
    font-size: 2.2em; /* Moderate size for main heading */
    line-height: 1.2; /* Improved readability */
    margin-top: 0.8em; /* Space above heading */
    margin-bottom: 0.6em; /* Space below heading */
    font-weight: bold; /* Standard bold weight */
}

.secureTermsHub h2 {
    /* Heading 2 styles */
    font-size: 1.8em; /* Moderate size for sub-heading */
    line-height: 1.3;
    margin-top: 0.9em;
    margin-bottom: 0.5em;
    font-weight: bold;
}

.secureTermsHub h3 {
    /* Heading 3 styles */
    font-size: 1.5em; /* Moderate size for sub-sub-heading */
    line-height: 1.4;
    margin-top: 1em;
    margin-bottom: 0.4em;
    font-weight: bold;
}

.secureTermsHub h4 {
    /* Heading 4 styles */
    font-size: 1.2em; /* Smaller heading */
    line-height: 1.5;
    margin-top: 1.1em;
    margin-bottom: 0.3em;
    font-weight: bold;
}

.secureTermsHub h5 {
    /* Heading 5 styles */
    font-size: 1.1em; /* Smallest heading, slightly larger than paragraph */
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.2em;
    font-weight: bold;
}

.secureTermsHub p {
    /* Paragraph styles */
    font-size: 1em; /* Base font size, typically 16px */
    line-height: 1.6; /* Good for readability */
    margin-top: 0; /* Reset default top margin, let headings define space */
    margin-bottom: 1em; /* Space between paragraphs */
}

.secureTermsHub ul {
    /* Unordered list styles */
    list-style-type: disc; /* Default bullet style */
    padding-left: 25px; /* Indent for bullet points */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
}

.secureTermsHub li {
    /* List item styles */
    line-height: 1.6; /* Consistent line height with paragraphs */
    margin-bottom: 0.5em; /* Space between list items */
}
