:root {
    --primary-green: #008751;
    --secondary-green: #00b76a;
    --dark: #1a1a1a;
    --light: #ffffff;
    --gray: #f8f9fa;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
}

.topbar {
    background-color: var(--primary-green);
    color: var(--light);
}

.age-disclaimer {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-section {
    background: linear-gradient(45deg, rgba(0, 135, 81, 0.05) 0%, rgba(0, 183, 106, 0.1) 100%);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--primary-green), transparent);
    opacity: 0.2;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    max-width: 720px;
    margin: 0 auto;
}

.listings-section {
    background-color: var(--light);
}

.brand-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.brand-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.brand-logo img {
    max-height: 60px;
    object-fit: contain;
}

.welcome-bonus {
    text-align: center;
}

.bonus-label {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 5px;
}

.bonus-amount {
    color: var(--primary-green);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.bonus-extra {
    color: #666;
    font-size: 0.9rem;
    margin: 5px 0 0;
}

.pros-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pros-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 8px;
    color: #444;
}

.pros-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.rating-box {
    background: rgba(0, 135, 81, 0.05);
    padding: 15px;
    border-radius: 8px;
}

.score {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-green);
    line-height: 1;
}

.stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin: 5px 0;
}

.rating-text {
    color: #666;
    font-size: 0.9rem;
    display: block;
}

.action-box .btn {
    width: 100%;
    max-width: 200px;
    margin-bottom: 10px;
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    font-weight: 600;
    padding: 12px 25px;
    transition: all 0.3s ease;
}

.action-box .btn:hover {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    transform: translateY(-2px);
}

.disclaimer-text {
    font-size: 0.8rem;
    color: #888;
    margin: 0;
}

.text-sections {
    background: linear-gradient(135deg, var(--gray) 0%, #fff 100%);
}

.content-block {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.content-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-green);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.2;
    transform: scale(1.4);
}

.icon-wrapper i {
    color: #fff;
    font-size: 24px;
}

.content-block h2 {
    color: var(--dark);
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.content-block p {
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.about-block .icon-wrapper { background: #FF6B6B; }
.about-block .icon-wrapper::before { background: #FF6B6B; }

.security-block .icon-wrapper { background: var(--primary-green); }
.security-block .icon-wrapper::before { background: var(--primary-green); }

.bonus-block .icon-wrapper { background: #4ECDC4; }
.bonus-block .icon-wrapper::before { background: #4ECDC4; }

.mobile-block .icon-wrapper { background: #45B7D1; }
.mobile-block .icon-wrapper::before { background: #45B7D1; }

.responsible-block .icon-wrapper { background: #96CEB4; }
.responsible-block .icon-wrapper::before { background: #96CEB4; }

.disclaimer-block {
    border: 2px solid rgba(0, 135, 81, 0.1);
    background: rgba(0, 135, 81, 0.03);
}

.disclaimer-block .icon-wrapper {
    background: #FF9F1C;
}

.disclaimer-block .icon-wrapper::before {
    background: #FF9F1C;
}

.disclaimer-block h2 {
    color: var(--primary-green);
}

.footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 0 30px;
}

.footer-logo {
    max-height: 60px;
    margin-bottom: 25px;
}

.footer-disclaimer {
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.7;
}

.footer-partners {
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-partners {
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 30px;
}

.footer-partners .col-4,
.footer-partners .col-md-2 {
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo {
    width: 120px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .partner-logo {
        width: 100px;
        height: 40px;
    }
}

@media (max-width: 576px) {
    .partner-logo {
        width: 80px;
        height: 35px;
    }
    
    .footer-partners {
        padding: 30px 0;
    }
}

.partner-logo:hover {
    opacity: 1;
}

.footer-links {
    margin-bottom: 30px;
}

.footer-links .nav-link {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1.5rem;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-links .nav-link:hover {
    color: var(--primary-green);
}

.copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin: 0;
}

.policy-page {
    background: linear-gradient(135deg, var(--gray) 0%, #fff 100%);
    min-height: calc(100vh - 300px);
}

.back-home {
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 10;
}

.back-home .btn {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: white;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.back-home .btn:hover {
    background-color: var(--secondary-green);
    border-color: var(--secondary-green);
    transform: translateX(-5px);
}

.policy-header h1 {
    color: var(--dark);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.policy-header .lead {
    color: #666;
    font-size: 1.2rem;
}

.content-section {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.content-section h2 {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
}

.content-section h3 {
    color: var(--dark);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1.5rem 0 1rem;
}

.content-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.content-section ul {
    padding-left: 1.2rem;
    margin-bottom: 1rem;
}

.content-section li {
    color: #555;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-section {
        padding: 40px 0;
    }
    
    .brand-card {
        padding: 15px;
    }
    
    .welcome-bonus, .rating-box, .action-box {
        margin: 10px 0;
    }
    
    .pros-list {
        margin: 15px 0;
    }
    
    .pros-list li {
        font-size: 0.9rem;
    }
}
