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

.header {
    background-color: #004d40; /* Darker green for header */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header .navbar-brand .logo-img {
    height: 40px;
    width: auto;
}

.header .navbar-brand .logo-text {
    color: #e8f5e9; /* Lightest green for logo text */
    font-weight: 700;
}

.hero-section {
    background-size: cover;
    background-position: center;
    min-height: 600px;
    position: relative;
    z-index: 1;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Dark overlay */
    z-index: -1;
}

.hero-section h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section .lead {
    font-size: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.btn-primary {
    background-color: #4CAF50; /* Green */
    border-color: #4CAF50;
    font-weight: 600;
    padding: 12px 30px;
    border-radius: 50px;
}

.btn-primary:hover {
    background-color: #66BB6A; /* Lighter green on hover */
    border-color: #66BB6A;
}

.btn-success {
    background-color: #28a745; /* Standard success green */
    border-color: #28a745;
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 5px;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

.btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

.btn-outline-light {
    border-color: #e8f5e9;
    color: #e8f5e9;
}

.btn-outline-light:hover {
    background-color: #e8f5e9;
    color: #004d40;
}

.bg-light-green {
    background-color: #e8f5e9; /* Very light green */
}

.section-title {
    color: #004d40; /* Dark green for section titles */
}

.offer-card {
    background-color: #ffffff;
    border: none;
    border-radius: 10px;
    transition: none; /* No animations */
}

.offer-card-img {
    display: flex;
    width: 100%;
    height: 100%;
}

.offer-card .offer-logo {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 15px;
}

.offer-card .card-title {
    color: #004d40;
}

.offer-card .rating-stars i {
    font-size: 1.2rem;
}

.offer-card .bonus-text {
    color: #004d40;
    font-size: 1.1rem;
}

.features-list li {
    font-size: 0.95rem;
    color: #555;
}

.why-us-section .card {
    border: none;
    border-radius: 10px;
    transition: none; /* No animations */
}

.why-us-section .card-body i {
    color: #4CAF50; /* Primary green for icons */
}

.why-us-section .card-title {
    color: #004d40;
}

.editor-rating-card {
    background-color: #dcedc8; /* Light green background for editor's rating */
    border: none;
    border-radius: 15px;
    color: #004d40;
}

.editor-rating-card i {
    color: #ffd700; /* Gold color for trophy icon */
}

.criteria-card {
    border: 1px solid #c8e6c9; /* Light green border */
    border-radius: 10px;
    transition: none; /* No animations */
}

.criteria-card .progress-bar {
    background-color: #4CAF50;
}

.bonus-card {
    border: 1px solid #c8e6c9;
    border-radius: 10px;
    transition: none; /* No animations */
}

.bonus-card i {
    color: #4CAF50; /* Green for bonus icons */
}

.bonus-card .btn-primary {
    background-color: #004d40;
    border-color: #004d40;
}

.bonus-card .btn-primary:hover {
    background-color: #00332b;
    border-color: #00332b;
}

.user-reviews-summary-section .display-1 {
    color: #004d40;
}

.user-reviews-summary-section .rating-stars i {
    font-size: 2.5rem;
}

.progress {
    height: 20px;
    background-color: #e0e0e0;
    border-radius: 5px;
}

.progress-bar {
    border-radius: 5px;
}

.testimonial-card {
    border: 1px solid #c8e6c9;
    border-radius: 10px;
    transition: none; /* No animations */
}

.testimonial-card .avatar-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #4CAF50;
}

.testimonial-card .rating-stars i {
    font-size: 1rem;
}

.newsletter-section .form-control-lg {
    border-radius: 50px;
    padding: 12px 20px;
    border-color: #c8e6c9;
}

.newsletter-section .btn-primary {
    border-radius: 50px;
}

.disclaimer-block {
    background-color: #fff3cd; /* Light yellow background for warning */
    border-top: 5px solid #ffc107; /* Yellow border top */
    border-bottom: 5px solid #ffc107;
    color: #664d03; /* Dark yellow text */
    padding: 3rem 0;
}

.disclaimer-block .disclaimer-content {
    background-color: #fff8e1; /* Even lighter yellow for content box */
    border: 1px solid #ffe082;
    color: #664d03;
}

.disclaimer-block h3 {
    color: #dc3545; /* Red for warning heading */
}

.disclaimer-block i {
    color: #dc3545; /* Red for warning icon */
}

.footer {
    background-color: #00332b; /* Even darker green for footer */
    color: #e8f5e9;
}

.footer a {
    color: #e8f5e9;
}

.footer a:hover {
    color: #a5d6a7; /* Lighter green on hover */
}

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

.footer .logo-text {
    color: #e8f5e9;
}

.footer .responsible-gaming-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.footer .footer-logo-img {
    max-width: 120px; /* Adjusted width for logos */
    height: auto;
    object-fit: contain;
    transition: none; /* No animations */
}

/* Age Verification Modal Specific Styles */
.age-modal-content {
    background-color: #f0f4c3; /* Light lime green */
    color: #333;
    border-radius: 15px;
    padding: 20px;
    border: 2px solid #cddc39;
}

.age-modal-content .modal-title {
    color: #558b2f; /* Darker green */
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.age-modal-content .btn-lg {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
}

/* Cookie Banner Styles */
.cookie-banner {
    top: auto;
    bottom: 0;
    background-color: #004d40; /* Dark green */
    color: #fff;
    z-index: 1050; /* Above most content, below modal */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.cookie-banner a {
    color: #a5d6a7;
}

.cookie-banner a:hover {
    color: #c8e6c9;
}

/* Utility for smooth scroll */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .hero-section h1 {
        font-size: 2.3rem;
    }
    .hero-section .lead {
        font-size: 1rem;
    }
    .offer-card .card-body {
        text-align: center;
    }
    .offer-card .rating-stars {
        justify-content: center !important;
    }
    .offer-card .features-list {
        text-align: center;
    }
    .offer-card .d-flex {
        flex-direction: column;
        align-items: center;
    }
    .offer-card .bonus-text {
        margin-bottom: 10px;
    }
    .footer .responsible-gaming-logos {
        gap: 10px;
    }
    .footer .footer-logo-img {
        max-width: 150px;
    }
}.infoGuardBlock {
    /* Parent container padding */
    padding-top: 24px;
    padding-bottom: 24px;
    padding-left: 20px;
    padding-right: 20px;
}

.infoGuardBlock h1 {
    /* Main heading */
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 32px;
    margin-bottom: 16px;
}

.infoGuardBlock h2 {
    /* Secondary heading */
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 28px;
    margin-bottom: 14px;
}

.infoGuardBlock h3 {
    /* Tertiary heading */
    font-size: 20px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 24px;
    margin-bottom: 12px;
}

.infoGuardBlock h4 {
    /* Quaternary heading */
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    margin-top: 20px;
    margin-bottom: 10px;
}

.infoGuardBlock h5 {
    /* Quinary heading */
    font-size: 16px;
    font-weight: 400; /* Normal weight */
    line-height: 1.5;
    margin-top: 16px;
    margin-bottom: 8px;
}

.infoGuardBlock p {
    /* Standard paragraph text */
    font-size: 16px;
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 16px; /* Space between paragraphs */
}

.infoGuardBlock ul {
    /* Unordered list container */
    list-style-type: disc; /* Default bullet style */
    margin-top: 16px;
    margin-bottom: 16px;
    padding-left: 24px; /* Indent for bullet points */
}

.infoGuardBlock li {
    /* List item */
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 8px; /* Space between list items */
}
