/* ==========================================================================
   Domain - CSS Styles
   Цветовая палитра:
   - Основной фон: #2B124C (тёмно-фиолетовый)
   - Акценты: #D2F53C (яркий лайм)
   - Текст: #F2F2F2 (светло-серый)
   - Элементы навигации: #1ABC9C (насыщенный бирюзовый)
   ========================================================================== */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #2B124C;
    color: #F2F2F2;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }

p {
    margin-bottom: 1rem;
    font-weight: 400;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2B124C 0%, #1ABC9C 100%);
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-top: 2px solid #D2F53C;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content h3 {
    color: #D2F53C;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.cookie-content p {
    flex: 1;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-accept {
    background: #D2F53C;
    color: #2B124C;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-accept:hover {
    background: #B8E232;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(210, 245, 60, 0.3);
}

.btn-info {
    color: #F2F2F2;
    text-decoration: none;
    padding: 12px 20px;
    border: 1px solid #F2F2F2;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.btn-info:hover {
    background: #F2F2F2;
    color: #2B124C;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(43, 18, 76, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999;
    border-bottom: 1px solid rgba(210, 245, 60, 0.2);
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #F2F2F2;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.logo:hover {
    color: #D2F53C;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: #F2F2F2;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #D2F53C;
    background: rgba(26, 188, 156, 0.1);
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #1ABC9C;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Main Content */
.main-content {
    margin-top: 80px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #2B124C 0%, #4A1B5E 50%, #2B124C 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero::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"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23D2F53C" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #D2F53C;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero .subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #F2F2F2;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #1ABC9C, #16A085);
    color: #F2F2F2;
    text-decoration: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(26, 188, 156, 0.3);
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(26, 188, 156, 0.4);
    background: linear-gradient(135deg, #16A085, #1ABC9C);
}

/* Section Styles */
.section {
    padding: 5rem 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #D2F53C;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #1ABC9C, #D2F53C);
    border-radius: 2px;
}

/* About Section */
.about {
    background: rgba(26, 188, 156, 0.05);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text h3 {
    color: #1ABC9C;
    margin-bottom: 1.5rem;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* Services Section */
.services {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: rgba(26, 188, 156, 0.1);
    border: 1px solid rgba(210, 245, 60, 0.2);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(210, 245, 60, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #D2F53C;
    box-shadow: 0 20px 40px rgba(210, 245, 60, 0.2);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1ABC9C, #D2F53C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #2B124C;
    font-weight: bold;
    position: relative;
    top: -30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.service-content h3 {
    color: #D2F53C;
    margin-bottom: 1rem;
    margin-top: -15px;
}

.service-content p {
    flex: 1;
}

/* Advantages Section */
.advantages {
    background: rgba(43, 18, 76, 0.8);
    padding: 5rem 0;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.advantage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(26, 188, 156, 0.05);
    border-radius: 15px;
    border-left: 4px solid #1ABC9C;
    transition: all 0.3s ease;
}

.advantage-item:hover {
    transform: translateX(10px);
    background: rgba(26, 188, 156, 0.1);
}

.advantage-icon {
    width: 50px;
    height: 50px;
    background: #D2F53C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2B124C;
    font-weight: bold;
    flex-shrink: 0;
}

.advantage-content h4 {
    color: #1ABC9C;
    margin-bottom: 0.5rem;
}

/* Process Section */
.process {
    padding: 5rem 0;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 2rem;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1rem;
    width: 2rem;
    height: 2px;
    background: #1ABC9C;
    display: none;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #D2F53C, #1ABC9C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2B124C;
}

.process-step h4 {
    color: #1ABC9C;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    background: rgba(26, 188, 156, 0.05);
    padding: 5rem 0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonial {
    background: rgba(43, 18, 76, 0.8);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(210, 245, 60, 0.2);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #D2F53C;
    font-weight: bold;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    line-height: 1.8;
}

.testimonial-author {
    color: #1ABC9C;
    font-weight: 600;
}

/* Contact Form Section */
.contact-form {
    padding: 5rem 0;
    background: rgba(43, 18, 76, 0.9);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-grid {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: #D2F53C;
    font-weight: 500;
}

.form-control {
    padding: 15px;
    border: 2px solid rgba(26, 188, 156, 0.3);
    border-radius: 10px;
    background: rgba(242, 242, 242, 0.1);
    color: #F2F2F2;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #1ABC9C;
    background: rgba(242, 242, 242, 0.15);
    box-shadow: 0 0 10px rgba(26, 188, 156, 0.3);
}

.form-control::placeholder {
    color: rgba(242, 242, 242, 0.6);
}

select.form-control {
    cursor: pointer;
    color: #F2F2F2;
    background: rgba(242, 242, 242, 0.1);
}

select.form-control option {
    background: #2B124C;
    color: #F2F2F2;
    padding: 10px;
}

select.form-control option:checked,
select.form-control option:hover {
    background: #1ABC9C;
    color: #F2F2F2;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 1rem 0;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 5px;
    accent-color: #1ABC9C;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-group a {
    color: #D2F53C;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-btn {
    background: linear-gradient(135deg, #D2F53C, #1ABC9C);
    color: #2B124C;
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    font-family: 'Montserrat', sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(210, 245, 60, 0.3);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Contact Info Section */
.contact-info-section {
    background: rgba(26, 188, 156, 0.05);
    padding: 5rem 0;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-card {
    background: rgba(43, 18, 76, 0.8);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(210, 245, 60, 0.2);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: #D2F53C;
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1ABC9C, #D2F53C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.8rem;
    color: #2B124C;
}

.contact-card h4 {
    color: #D2F53C;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #1ABC9C;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #D2F53C;
}

/* Footer */
.footer {
    background: rgba(43, 18, 76, 0.95);
    border-top: 2px solid rgba(210, 245, 60, 0.2);
    padding: 3rem 0 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #D2F53C;
    margin-bottom: 1rem;
}

.footer-section p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #F2F2F2;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1ABC9C;
}

.contact-info p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-logo {
    margin-top: 1rem;
}

.footer-bottom {
    border-top: 1px solid rgba(242, 242, 242, 0.1);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom-content p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: rgba(242, 242, 242, 0.8);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(43, 18, 76, 0.98);
        flex-direction: column;
        padding: 2rem 0;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(210, 245, 60, 0.2);
    }
    
    .nav-menu.show {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero .subtitle {
        font-size: 1.1rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid,
    .process-steps,
    .testimonials-grid,
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .container,
    .nav-container,
    .hero-content,
    .form-container {
        padding: 0 15px;
    }
    
    .service-card,
    .testimonial {
        padding: 1.5rem;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 1rem;
    }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.5rem; }
    h4 { font-size: 1.2rem; }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
.nav-link:focus,
.cta-button:focus,
.form-control:focus,
.submit-btn:focus,
.btn-accept:focus,
.btn-info:focus {
    outline: 2px solid #D2F53C;
    outline-offset: 2px;
}

/* Policy Pages Styles */
.policy-page {
    background: #2B124C;
    min-height: 100vh;
    padding: 2rem 0;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 188, 156, 0.05);
    padding: 3rem;
    border-radius: 15px;
    border: 1px solid rgba(210, 245, 60, 0.2);
}

.policy-content h1 {
    color: #D2F53C;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.last-updated {
    text-align: center;
    color: #1ABC9C;
    font-style: italic;
    margin-bottom: 3rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(210, 245, 60, 0.2);
}

.policy-section {
    margin-bottom: 2.5rem;
}

.policy-section h2 {
    color: #1ABC9C;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(26, 188, 156, 0.3);
}

.policy-section h3 {
    color: #D2F53C;
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem 0;
}

.policy-section p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-section a {
    color: #D2F53C;
    text-decoration: none;
    border-bottom: 1px dotted #D2F53C;
    transition: all 0.3s ease;
}

.policy-section a:hover {
    color: #1ABC9C;
    border-bottom-color: #1ABC9C;
}

.contact-info {
    background: rgba(43, 18, 76, 0.6);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #1ABC9C;
    margin-top: 1rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.important-notice {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #D2F53C;
    border-radius: 15px;
    padding: 2rem;
    margin-top: 3rem;
    text-align: center;
}

.important-notice h2 {
    color: #D2F53C;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.important-notice p {
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Cookie Controls */
.cookie-controls {
    background: rgba(43, 18, 76, 0.8);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin-top: 2rem;
    border: 1px solid rgba(210, 245, 60, 0.3);
}

.cookie-controls h2 {
    color: #D2F53C;
    margin-bottom: 1rem;
}

.cookie-btn {
    display: inline-block;
    margin: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.cookie-btn.accept {
    background: #1ABC9C;
    color: #F2F2F2;
}

.cookie-btn.reset {
    background: transparent;
    color: #D2F53C;
    border: 2px solid #D2F53C;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cookie-btn.accept:hover {
    background: #16A085;
}

.cookie-btn.reset:hover {
    background: #D2F53C;
    color: #2B124C;
}

/* Responsive Design for Policy Pages */
@media (max-width: 768px) {
    .policy-content {
        padding: 2rem 1rem;
        margin: 0 1rem;
    }
    
    .policy-content h1 {
        font-size: 2rem;
    }
    
    .policy-section ul {
        margin-left: 1rem;
    }
    
    .cookie-controls {
        margin: 2rem 1rem 0;
        padding: 1.5rem;
    }
    
    .important-notice {
        margin: 2rem 1rem 0;
        padding: 1.5rem;
    }
}

/* Print styles */
@media print {
    .cookie-banner,
    .nav-toggle {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
} 