:root {
    --color-bg: #ffffff;
    --color-bg-light: #f8f9fa;
    --color-text: #333333;
    --color-text-light: #666666;
    --color-primary: #2e8b57;
    --color-primary-dark: #246d44;
    --color-accent: #d2691e;
    --color-border: #e0e0e0;
    --shadow-card: 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 8px 15px rgba(0, 0, 0, 0.1);
    --font-main: 'Roboto', sans-serif;
    --container-width: 1200px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-bg);
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--color-primary);
    color: white;
}

.btn-primary:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(46, 139, 87, 0.3);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: white;
}

.section {
    padding: 80px 0;
}

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

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: var(--color-text);
}

.section-subtitle {
    display: block;
    text-align: center;
    color: var(--color-accent);
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.section-desc {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    color: var(--color-text-light);
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    height: 70px;
    display: flex;
    align-items: center;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-list li a {
    text-decoration: none;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-list li a:hover {
    color: var(--color-primary);
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-text);
}

.hero {
    margin-top: 70px;
    padding: 100px 0;
    background: linear-gradient(135deg, #f0fdf4 0%, #fff 100%);
    text-align: center;
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.hero-badges span {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 500;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.about-content p {
    margin-bottom: 20px;
}

.section-disclaimer {
    font-size: 0.85rem;
    color: #888;
    margin-top: 20px;
    font-style: italic;
    text-align: center;
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-card);
    transition: transform 0.3s;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.services-footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: var(--color-text-light);
}

.why-us-content {
    max-width: 900px;
    margin: 0 auto;
}

.why-us-content h3 {
    color: var(--color-primary);
    margin-bottom: 10px;
    margin-top: 30px;
    font-size: 1.3rem;
}

.why-us-content p {
    margin-bottom: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    background-color: rgba(46, 139, 87, 0.1);
    color: var(--color-primary);
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 1.5rem;
}

.feature-text h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.bookmakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bookmaker-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    transition: transform 0.3s;
}

.bookmaker-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.bm-header {
    background-color: var(--color-bg-light);
    padding: 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--color-border);
}

.bm-logo-placeholder {
    height: 100px;
    margin-bottom: 10px;
}

.bm-logo-placeholder img {
    height: 100%;
}

.bm-rating {
    color: #ffc107;
    font-weight: bold;
}

.bm-body {
    padding: 20px;
    text-align: center;
}

.bm-tags {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.bm-tag {
    font-size: 0.75rem;
    background: #e8f5e9;
    color: var(--color-primary-dark);
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: 500;
}

.bm-body p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background-color: var(--color-accent);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(210, 105, 30, 0.3);
}

.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--color-border);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-main);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: var(--color-text-light);
}

.accordion-item.active .accordion-body {
    padding-bottom: 20px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.responsible-section {
    border-left: 5px solid var(--color-primary);
}

.responsible-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.responsible-content p {
    margin-bottom: 15px;
}

.contact-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.contact-info,
.contact-form {
    flex: 1;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--color-primary);
    margin-top: 5px;
}

.contact-item h4 {
    margin-bottom: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--color-border);
    border-radius: 4px;
    font-family: var(--font-main);
    font-size: 1rem;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}


@media (max-width: 900px) {

    .services-grid,
    .bookmakers-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-list {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        border-top: 1px solid #eee;
    }

    .nav-list.active {
        right: 0;
    }

    .services-grid,
    .bookmakers-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

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

    .section {
        padding: 50px 0;
    }
}

.ke-footer {
    background: #080808;
    color: #e5e7eb;
    padding: 32px 16px 20px;
    font-size: 0.9rem;
}

.ke-footer-inner {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: flex-start;
}

.ke-footer-left,
.ke-footer-center {
    flex: 1 1 260px;
}

.ke-footer-logo {
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    color: #ffffff;

}

.ke-footer-tagline {
    max-width: 260px;
    line-height: 1.4;
    color: #9ca3af;
}

.ke-footer-center p {
    margin-bottom: 10px;
    line-height: 1.5;
}

.ke-footer-links {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: auto;
}

.ke-footer-links a {
    color: #e5e7eb;
    text-decoration: none;
    font-size: 0.9rem;
}

.ke-footer-links a:hover {
    color: #fbbf24;
}


.ke-footer-regulators {
    max-width: 1180px;
    margin: 18px auto 0;
    padding-top: 14px;
    border-top: 1px solid #1f2937;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reg-label {
    font-weight: 600;
    color: #d1d5db;
}

.reg-logos {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.reg-logos a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 10px;
    border-radius: 10px;
    background: rgba(15, 23, 42, 0.75);
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.reg-logos a:hover {
    transform: translateY(-1px);
}

.reg-logos img {
    height: 80px;
}


.ke-footer-age {
    max-width: 1180px;
    margin: 10px auto 0;
    display: flex;
    justify-content: flex-end;
}

.age-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 2px solid #f97316;
    font-weight: 700;
    font-size: 0.9rem;
    color: #f97316;
}


.ke-footer-bottom {
    max-width: 1180px;
    margin: 10px auto 0;
    text-align: center;
    color: #6b7280;
    font-size: 0.8rem;
    padding-top: 8px;
}


@media (max-width: 900px) {
    .ke-footer-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .ke-footer-links {
        margin-left: 0;
    }

    .ke-footer-age {
        justify-content: flex-start;
    }
}

@media (max-width: 600px) {
    .ke-footer-regulators {
        align-items: flex-start;
    }

    .reg-logos {
        justify-content: flex-start;
    }

    .ke-footer-bottom {
        margin-top: 14px;
    }

    .ke-footer-left,
    .ke-footer-center {
        flex: auto;
    }

    .ke-footer-links {
        flex: auto;
    }
}

.age-gate-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate-overlay.is-visible {
    display: flex;
}

.age-gate-modal {
    background: #ffffff;
    color: #1a1a1a;
    max-width: 480px;
    width: 90%;
    padding: 24px 20px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    text-align: center;
}

.age-gate-modal h2 {
    margin-bottom: 12px;
    color: #2e8b57;
    font-size: 1.6rem;
}

.age-gate-modal p {
    margin-bottom: 12px;
    line-height: 1.5;
}

.age-gate-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 8px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.age-gate-note {
    font-size: 0.85rem;
    color: #555555;
}

.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    color: #1a1a1a;
    box-shadow: 0 -4px 18px rgba(0, 0, 0, 0.18);
    padding: 14px 18px;
    z-index: 9998;
    display: none;
}

.cookie-banner.is-visible {
    display: block;
}

.cookie-banner-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cookie-banner-text h3 {
    margin-bottom: 6px;
    color: #2e8b57;
    font-size: 1.1rem;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.4;
}

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

.cookie-settings-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.cookie-settings-overlay.is-visible {
    display: flex;
}

.cookie-settings-modal {
    background: #ffffff;
    color: #1a1a1a;
    max-width: 520px;
    width: 90%;
    padding: 22px 20px;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.cookie-settings-modal h3 {
    margin-bottom: 10px;
    color: #2e8b57;
    font-size: 1.4rem;
}

.cookie-settings-modal p {
    font-size: 0.92rem;
    margin-bottom: 14px;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.cookie-option {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.92rem;
}

.cookie-option input[type="checkbox"] {
    margin-top: 2px;
}

.cookie-settings-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    border-radius: 999px;
    padding: 8px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.1s ease;
}

.btn-primary {
    background-color: #2e8b57;
    color: #ffffff;
    border-color: #2e8b57;
}

.btn-primary:hover {
    box-shadow: 0 4px 10px rgba(46, 139, 87, 0.35);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #ffffff;
    color: #2e8b57;
    border-color: #2e8b57;
}

.btn-secondary:hover {
    background-color: #f0f8f4;
}

@media (max-width: 600px) {
    .cookie-banner-inner {
        align-items: flex-start;
    }

    .cookie-banner-actions {
        width: 100%;
        justify-content: flex-end;
    }
}

.policy-content h2 {
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--color-text);
}

.policy-content p {
    margin-bottom: 15px;
    color: #555;
    text-align: justify;
}

.policy-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
    color: #555;
}

.policy-content ul li {
    margin-bottom: 8px;
}

.last-updated {
    color: #888;
    font-size: 0.9rem;
    margin-bottom: 30px;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 0.95rem;
}

.cookie-table th,
.cookie-table td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: left;
}

.cookie-table th {
    background-color: #f8f9fa;
    color: var(--color-text);
    font-weight: 700;
}

.warning-box {
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    padding: 20px;
    margin: 20px 0;
    border-radius: 4px;
}

.warning-box strong {
    color: #856404;
}

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

.resource-card {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    text-align: center;
}

.resource-card h4 {
    color: var(--color-primary);
    margin-bottom: 10px;
}