/* Google Fonts Import */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fffaf0; /* Light fruit cream background */
}

/* Headings font - Roboto */
h1, h2, h3, h4, h5, h6,
.policy-page h1,
.policy-page h2,
.policy-page h3 {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Header and navigation fonts - Roboto */
.header-content,
.site-header,
.footer-column h3,
.section-title,
.faq-question,
.step h4,
.feature-card h3,
.trust-badge,
.hero h1,
.hero-disclaimer,
.logo-text {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: linear-gradient(135deg, #ff6b6b, #ffa502);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    padding: 15px 0;
    min-height: 80px;
}

.header-content > * {
    display: flex;
    align-items: center;
}

.nav-right-group {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    margin-right: 15px;
    vertical-align: middle;
}

.logo-text {
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    line-height: 1;
    vertical-align: middle;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 25px;
    height: 100%;
    align-items: center;
}

.main-nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 4px;
}

.main-nav a:hover {
    background-color: rgba(255,255,255,0.2);
}

.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #ff6b6b;
    min-width: 160px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
    overflow: hidden;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 12px 16px;
    color: white;
}

.header-age-badge {
    background-color: #ffd700;
    color: #333;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.cta-button {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,184,148,0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,184,148,0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    height: 100%;
    align-items: center;
    justify-content: center;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 40px 0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: url('images/hero-bg.png') center/cover no-repeat;
    border-radius: 15px;
    margin-bottom: 50px;
    position: relative;
    min-height: 750px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 234, 167, 0.85);
    border-radius: 15px;
    z-index: 1;
}

.hero > * {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2d3436;
}

.hero p.subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #636e72;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-secondary-btn {
    background: transparent;
    color: #2d3436;
    border: 2px solid #2d3436;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
}

.hero-secondary-btn:hover {
    background-color: #2d3436;
    color: white;
}

.hero-disclaimer {
    background-color: rgba(255,255,255,0.8);
    padding: 15px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #636e72;
    max-width: 600px;
    margin: 0 auto;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #2d3436;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #ff6b6b;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon-img {
    max-width: 120px;
    max-height: 80px;
    width: auto;
    height: auto;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #2d3436;
}

/* About Section */
.about-section {
    background-color: #fff;
    padding: 60px 0;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

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

/* How to Play */
.how-to-play {
    background: linear-gradient(135deg, #74b9ff, #0984e3);
    color: white;
    padding: 60px 0;
    border-radius: 15px;
    margin: 50px 0;
}

.steps-container {
    max-width: 900px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.step {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #eee;
    text-align: center;
}

.step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: #00b894;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #00b894, #00cec9);
    border-radius: 20px 20px 0 0;
}

.step h4 {
    color: #2d3436;
    font-size: 1.4rem;
    margin: 0 0 20px 0;
    font-weight: 700;
    position: relative;
}

.step h4::before {
    content: attr(data-step);
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1rem;
    box-shadow: 0 5px 15px rgba(0,184,148,0.3);
}

.step p {
    color: #636e72;
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.step strong {
    color: #e17055;
    font-weight: 600;
}

.not-real-money {
    background: rgba(255,255,255,0.2);
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
    border-left: 4px solid #fdcb6e;
}

/* Game Play Section */
.game-play {
    text-align: center;
    padding: 60px 0;
}

.game-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Trust & Safety Section */
.trust-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0;
    border-radius: 25px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(102,126,234,0.3);
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="0.8" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1.2" fill="rgba(255,255,255,0.1)"/><circle cx="60" cy="20" r="0.6" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.trust-section .section-title {
    color: white;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.trust-badge {
    background: rgba(255,255,255,0.95);
    color: #2d3436;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    margin: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.trust-badge:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.trust-badge:hover::before {
    transform: scaleX(1);
}

.trust-badge::after {
    content: '🔒';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    opacity: 0.2;
}

.trust-section .hero-secondary-btn {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: 60px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.trust-section .hero-secondary-btn:hover {
    background: rgba(255,255,255,0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0;
    border-radius: 25px;
    margin: 80px 0;
    box-shadow: 0 25px 50px rgba(195,207,226,0.3);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><rect x="10" y="10" width="5" height="5" fill="rgba(255,255,255,0.1)"/><rect x="40" y="70" width="4" height="4" fill="rgba(255,255,255,0.1)"/><rect x="80" y="30" width="6" height="6" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.5;
}

.faq-section .section-title {
    color: #2d3436;
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.faq-item {
    background: rgba(255,255,255,0.95);
    border-radius: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.5);
    backdrop-filter: blur(10px);
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.faq-question {
    font-weight: 700;
    font-size: 1.2rem;
    color: #2d3436;
    padding: 25px 30px;
    margin: 0;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    color: #00b894;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
    color: #e17055;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: rgba(255,255,255,0.7);
}

.faq-item.active .faq-answer {
    padding: 0 30px 25px 30px;
    max-height: 500px;
}

.faq-item p {
    margin: 20px 0 0 0;
    color: #636e72;
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-item a.text-link {
    color: #00b894;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.faq-item a.text-link:hover {
    color: #00cec9;
    text-decoration: underline;
}

/* Game Page Legal Block */
.legal-banner {
    background: linear-gradient(135deg, #ff7675, #fd79a8);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: bold;
    margin-bottom: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(255,118,117,0.3);
}

.game-container {
    text-align: center;
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.game-frame {
    width: 100%;
    height: 600px;
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Contact Page */
.contact-page {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.contact-form {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #2d3436;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00b894;
}

.submit-btn {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,184,148,0.4);
}

.common-issues {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

/* Policy Pages */
.policy-page {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.policy-page h1 {
    color: #2d3436;
    margin-bottom: 30px;
}

.policy-page h2 {
    color: #2d3436;
    margin: 25px 0 15px;
}

.policy-page p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.policy-page ul {
    margin: 15px 0;
    padding-left: 30px;
}

.policy-page li {
    margin-bottom: 10px;
}

/* Text Links */
.text-link {
    color: #00b894;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.text-link:hover {
    color: #00cec9;
    border-bottom: 1px solid #00b894;
}

.text-link-primary {
    color: #ff6b6b;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.text-link-primary:hover {
    color: #ff5252;
    text-decoration: underline;
}

/* Policy Page Specific Links */
.policy-page a:not(.text-link):not(.text-link-primary):not(.cta-button):not(.dropbtn) {
    color: #00b894;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.policy-page a:not(.text-link):not(.text-link-primary):not(.cta-button):not(.dropbtn):hover {
    color: #00cec9;
    border-bottom: 1px solid #00b894;
}

/* Policy Navigation Links */
.policy-nav-link {
    color: #636e72;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

.policy-nav-link:hover {
    color: #2d3436;
    text-decoration: underline;
}

/* Contact Links in Policies */
.policy-contact-link {
    color: #00b894;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.policy-contact-link:hover {
    color: #00cec9;
    border-bottom: 1px solid #00b894;
    text-decoration: none;
}

/* Contact Page Specific Links */
.contact-email-link {
    color: #00b894;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding: 2px 0;
}

.contact-email-link:hover {
    color: #00cec9;
    border-bottom: 1px solid #00b894;
    text-decoration: none;
}

.contact-phone-link {
    color: #00b894;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding: 2px 0;
}

.contact-phone-link:hover {
    color: #00cec9;
    border-bottom: 1px solid #00b894;
    text-decoration: none;
}

.contact-internal-link {
    color: #636e72;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    padding: 2px 0;
}

.contact-internal-link:hover {
    color: #2d3436;
    border-bottom: 1px solid #636e72;
    text-decoration: none;
}

.text-link-primary:hover {
    color: #ff5252;
    text-decoration: underline;
}

.text-link-secondary {
    color: #636e72;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
}

.text-link-secondary:hover {
    color: #2d3436;
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
    padding: 50px 0 20px;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.footer-column h3 {
    margin-bottom: 20px;
    color: #fdcb6e;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #fdcb6e;
}

.footer-disclaimer {
    text-align: center;
    padding: 30px;
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    margin-bottom: 25px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.2);
}

.footer-disclaimer-title {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.disclaimer-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.disclaimer-badge {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(0,184,148,0.3);
    transition: all 0.3s ease;
}

.disclaimer-badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,184,148,0.4);
}

.disclaimer-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.disclaimer-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #ddd;
    font-size: 0.95rem;
}

.footer-disclaimer p {
    margin-bottom: 10px;
}

.footer-legal {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: #bbb;
}

/* Cookie Consent Popup */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2d3436, #636e72);
    color: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 9999;
    max-width: 500px;
    margin: 0 auto;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.5s ease;
}

.cookie-consent.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content {
    text-align: center;
}

.cookie-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1rem;
}

.cookie-content a {
    color: #fdcb6e;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.cookie-content a:hover {
    border-bottom: 1px solid #fdcb6e;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.accept-btn {
    background: linear-gradient(135deg, #00b894, #00cec9);
    color: white;
}

.accept-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,184,148,0.4);
}

.reject-btn {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.reject-btn:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Responsive Design for Cookie Consent */
@media (max-width: 768px) {
    .cookie-consent {
        bottom: 10px;
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        min-height: 60px;
    }
    
    .nav-right-group {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .logo-img {
        height: 35px;
        vertical-align: middle;
    }
    
    .logo-text {
        font-size: 18px;
        line-height: 1;
        vertical-align: middle;
    }
    
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: linear-gradient(135deg, #ff6b6b, #ffa502);
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }
    
    .main-nav.active {
        display: block;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .logo-text {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 50px 15px;
        min-height: 350px;
    }
    
    .logo-img {
        height: 30px;
        vertical-align: middle;
    }
    
    .logo-text {
        font-size: 16px;
        line-height: 1;
        vertical-align: middle;
    }
    
    .feature-icon-img {
        max-width: 60px;
        max-height: 60px;
    }
    
    .hero {
        padding: 60px 15px;
        min-height: 400px;
        background: url('images/hero-bg.png') center/cover no-repeat;
    }
    
    .hero::before {
        background: rgba(255, 234, 167, 0.9);
    }
    
    .section {
        padding: 40px 0;
    }
    
    .feature-card,
    .contact-info,
    .contact-form,
    .policy-page {
        padding: 20px;
    }
}