
:root {
    --primary-green: #28a745; 
    --dark-green: #1a6d2b; 
    --light-green: #e9f7ef; 
    --warning-yellow: #ffc107;
    --danger-red: #dc3545;
    --text-color: #333;
    --light-text-color: #f8f9fa;
    --footer-bg: #212529;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: #f4f7f6; 
}

h1, h2, h3, h4, h5, h6 {
    color: var(--dark-green);
    font-weight: 700;
}

a {
    color: var(--primary-green);
    text-decoration: none;
}

a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.text-dark-green {
    color: var(--dark-green) !important;
}

.bg-light-green {
    background-color: var(--light-green) !important;
}

.btn-success {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: var(--light-text-color);
    text-decoration: none; 
}

.btn-success:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    color: var(--light-text-color);
}

.btn-danger {
    background-color: var(--danger-red);
    border-color: var(--danger-red);
    color: var(--light-text-color);
    text-decoration: none; 
}

.btn-danger:hover {
    background-color: #bd2130;
    border-color: #bd2130;
    color: var(--light-text-color);
}


.header-section {
    background-image: url('images/pics/hero-bg_26.jpg'); 
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
    color: var(--light-text-color);
}

.header-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); 
    z-index: 0;
}

.header-section .container {
    position: relative;
    z-index: 1;
}

.header-logo {
    height: 40px; 
    width: auto;
}
@media (max-width:575px) {
    .header-logo{
        height: 25px;
    }
}
.site-title {
    font-size: 2.5rem;
    color: var(--light-text-color);
}

.navbar-brand .site-title {
    font-size: 1.8rem;
}

.navbar-nav .nav-link {
    color: var(--light-text-color);
    font-weight: 600;
    position: relative;
    text-decoration: none; 
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-green);
}


.main-banner-content h2 {
    font-size: 3.5rem;
    color: var(--light-text-color);
}

.main-banner-content p {
    font-size: 1.25rem;
    color: var(--light-text-color);
}


.rating-list-section .offer-card {
    max-width: 900px; 
    border: 1px solid #e0e0e0;
    transition: none; 
}

.offer-card .offer-logo-wrapper {
    flex-shrink: 0;
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid #eee;
    padding-right: 1rem;
}

.offer-card .offer-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.offer-card .offer-details {
    padding-left: 1rem;
}

.offer-card .rating i {
    color: var(--warning-yellow);
}

.offer-card .license-link {
    color: var(--danger-red) !important;
    font-weight: 600;
    text-decoration: underline;
}

.offer-card .offer-btn {
    text-decoration: none;
}


.about-section ul li {
    color: var(--text-color);
}


.comparison-table-section .table thead.sticky-top {
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table-section .table th,
.comparison-table-section .table td {
    vertical-align: middle;
    text-align: center;
    padding: 1rem;
}

.comparison-table-section .table th:first-child,
.comparison-table-section .table td:first-child {
    text-align: left;
}

.comparison-table-section .table i {
    font-size: 1.2rem;
}


.featured-items-section .featured-card {
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.featured-items-section .featured-card img {
    height: 150px;
    object-fit: contain;
    width: 100%;
}

.featured-items-section .countdown-timer {
    margin-top: auto; 
}


.user-reviews-section .rating i {
    color: var(--warning-yellow);
}


.editor-rating-section i {
    color: var(--warning-yellow);
}


.rating-criteria-section .criteria-card {
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 100%; 
}

.rating-criteria-section .criteria-card i {
    color: var(--primary-green);
}


.faq-section .accordion-item {
    border: 1px solid #e0e0e0;
}

.faq-section .accordion-button {
    background-color: var(--light-green);
    color: var(--dark-green);
    font-weight: 600;
    border: none;
    text-decoration: none; 
}

.faq-section .accordion-button:not(.collapsed) {
    background-color: var(--primary-green);
    color: var(--light-text-color);
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.faq-section .accordion-body {
    color: var(--text-color);
}


.disclaimer-block {
    background-color: #2c3e50; 
    border: 2px solid var(--warning-yellow);
    padding: 3rem 0;
}

.disclaimer-block h3, .disclaimer-block h4 {
    color: var(--warning-yellow);
}

.disclaimer-block p, .disclaimer-block ul li {
    color: var(--light-text-color);
}

.disclaimer-block a {
    color: var(--light-text-color);
    text-decoration: underline;
}

.disclaimer-block a:hover {
    color: var(--primary-green);
}


.footer-section {
    background-color: var(--footer-bg) !important;
    color: var(--light-text-color);
}

.footer-section a {
    color: var(--light-text-color);
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.footer-section .footer-logo {
    height: 30px;
    width: auto;
}

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

.footer-logos .plus18-icon {
    max-width: 50px;
    height: auto;
    filter: none; 
}


.cookie-banner {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050; 
    background-color: #343a40; 
    color: white;
    font-size: 0.9rem;
    text-align: center;
    border-bottom: 1px solid #495057;
}

.cookie-banner p {
    margin-bottom: 0;
}

.cookie-banner a {
    color: var(--primary-green);
    text-decoration: underline;
}

.cookie-banner .btn {
    white-space: nowrap;
}


#ageVerificationModal .modal-content {
    background-color: #212529; 
    color: white;
}

#ageVerificationModal .modal-title {
    color: white;
}

#ageVerificationModal .modal-body p {
    font-size: 1.8rem;
}


@media (max-width: 767.98px) {
    .header-section {
        min-height: 400px;
    }
    .main-banner-content h2 {
        font-size: 2.5rem;
    }
    .main-banner-content p {
        font-size: 1rem;
    }
    .navbar-brand .site-title {
        font-size: 1rem;
    }
    .offer-card {
        flex-direction: column;
    }
    .offer-card .offer-logo-wrapper {
        border-right: none;
        border-bottom: 1px solid #eee;
        padding-right: 0;
        padding-bottom: 1rem;
        width: 100%;
        height: auto;
    }
    .offer-card .offer-details {
        padding-left: 0;
        padding-top: 1rem;
    }
    .cookie-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .cookie-banner p {
        margin-bottom: 10px;
    }
    .cookie-banner .d-flex {
        width: 100%;
        justify-content: center;
    }
}

.trustPillarUnit {
    padding-top: 3rem;    
    padding-bottom: 3rem; 
    padding-left: 1rem;   
    padding-right: 1rem;  
    
}


.trustPillarUnit h1 {
    font-size: 2.2rem;     
    line-height: 1.2;      
    margin-bottom: 1.5rem; 
    font-weight: 700;      
    color: var(--dark-green); 
}


.trustPillarUnit h2 {
    font-size: 1.8rem;     
    line-height: 1.3;      
    margin-bottom: 1.2rem; 
    font-weight: 600;      
    color: var(--dark-green);
}


.trustPillarUnit h3 {
    font-size: 1.5rem;     
    line-height: 1.4;      
    margin-bottom: 1rem;   
    font-weight: 600;
    color: var(--dark-green);
}


.trustPillarUnit h4 {
    font-size: 1.25rem;    
    line-height: 1.5;      
    margin-bottom: 0.8rem; 
    font-weight: 500;      
    color: var(--dark-green);
}


.trustPillarUnit h5 {
    font-size: 1.1rem;     
    line-height: 1.6;      
    margin-bottom: 0.6rem; 
    font-weight: 500;
    color: var(--dark-green);
}


.trustPillarUnit p {
    font-size: 1rem;       
    line-height: 1.7;      
    margin-bottom: 1rem;   
    color: var(--text-color); 
}


.trustPillarUnit ul {
    list-style: disc;      
    margin-left: 1.5rem;   
    padding-left: 0;       
    margin-bottom: 1rem;   
}


.trustPillarUnit li {
    font-size: 1rem;       
    line-height: 1.7;      
    margin-bottom: 0.5rem; 
    color: var(--text-color);
}


.trustPillarUnit p:last-child,
.trustPillarUnit ul:last-child {
    margin-bottom: 0;
}
