/* Domain - Modern Financial Audit Website CSS */
/* Color Palette:
   Primary Background: #2A2E5B (deep blue-purple)
   Accent: #C9FF2F (neon lime)
   Secondary: #3EDFD7 (soft turquoise)
   Text: #FFFFFF (pure white)
   Hover: #E1FF73 (lighter lime)
*/

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 62.5%; /* 1rem = 10px */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #2A2E5B 0%, #1E2347 100%);
    color: #FFFFFF;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

h1 { font-size: clamp(2.8rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
h4 { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }

p {
    font-size: clamp(1.4rem, 2vw, 1.8rem);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

/* Utility Classes */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 3rem;
    background: linear-gradient(45deg, #C9FF2F, #3EDFD7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
}

.section-title.center {
    text-align: center;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes glow {
    0%, 100% { box-shadow: 0 0 20px rgba(201, 255, 47, 0.3); }
    50% { box-shadow: 0 0 40px rgba(201, 255, 47, 0.6); }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(42, 46, 91, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-logo .logo-link {
    font-size: 2.4rem;
    font-weight: 900;
    text-decoration: none;
    background: linear-gradient(45deg, #C9FF2F, #3EDFD7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.nav-logo .logo-link:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 1.6rem;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #C9FF2F, #3EDFD7);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:hover {
    color: #C9FF2F;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: #C9FF2F;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(42, 46, 91, 0.9) 0%, 
        rgba(62, 223, 215, 0.1) 50%, 
        rgba(201, 255, 47, 0.05) 100%);
    z-index: -1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    margin-bottom: 2rem;
}

.hero-logo {
    display: block;
    font-size: clamp(3.5rem, 6vw, 6rem);
    font-weight: 900;
    background: linear-gradient(45deg, #C9FF2F, #3EDFD7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.hero-subtitle {
    display: block;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 400;
    color: #FFFFFF;
    opacity: 0.9;
}

.hero-description {
    font-size: clamp(1.6rem, 2.5vw, 2rem);
    margin-bottom: 3rem;
    opacity: 0.8;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-button {
    padding: 1.5rem 3rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    display: inline-block;
}

.cta-button.primary {
    background: linear-gradient(45deg, #C9FF2F, #3EDFD7);
    color: #2A2E5B;
    animation: glow 2s ease-in-out infinite;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 255, 47, 0.4);
    background: linear-gradient(45deg, #E1FF73, #3EDFD7);
}

.cta-button.secondary {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #C9FF2F;
}

.cta-button.secondary:hover {
    background: #C9FF2F;
    color: #2A2E5B;
    transform: translateY(-3px);
}

.hero-image {
    animation: slideInRight 1s ease-out;
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* About Section */
.about {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(30, 35, 71, 0.8) 0%, 
        rgba(42, 46, 91, 0.9) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: slideInLeft 1s ease-out;
}

.about-description {
    font-size: 1.7rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-image {
    animation: slideInRight 1s ease-out;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Advantages Section */
.advantages {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(42, 46, 91, 0.95) 0%, 
        rgba(62, 223, 215, 0.1) 100%);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.advantage-card {
    background: linear-gradient(135deg, 
        rgba(62, 223, 215, 0.1) 0%, 
        rgba(42, 46, 91, 0.8) 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(201, 255, 47, 0.2);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out;
}

.advantage-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 255, 47, 0.2);
    border-color: #C9FF2F;
}

.advantage-icon {
    margin-bottom: 2rem;
}

.advantage-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C9FF2F;
}

.advantage-title {
    color: #C9FF2F;
    margin-bottom: 1.5rem;
}

.advantage-description {
    opacity: 0.9;
}

/* Services Section */
.services {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(30, 35, 71, 0.9) 0%, 
        rgba(42, 46, 91, 0.8) 100%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.service-card {
    background: linear-gradient(135deg, 
        rgba(42, 46, 91, 0.9) 0%, 
        rgba(62, 223, 215, 0.1) 100%);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    border: 2px solid rgba(201, 255, 47, 0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card.featured {
    border-color: #C9FF2F;
    transform: scale(1.05);
    animation: glow 3s ease-in-out infinite;
}

.service-card.featured::before {
    content: 'BELIEBT';
    position: absolute;
    top: 2rem;
    right: -3rem;
    background: #C9FF2F;
    color: #2A2E5B;
    padding: 0.5rem 4rem;
    font-weight: 700;
    font-size: 1.2rem;
    transform: rotate(45deg);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: #3EDFD7;
}

.service-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.service-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.service-title {
    color: #C9FF2F;
    margin-bottom: 1rem;
}

.service-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: #3EDFD7;
}

.service-features {
    list-style: none;
    margin-bottom: 3rem;
}

.service-features li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(201, 255, 47, 0.1);
    position: relative;
    padding-left: 2.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C9FF2F;
    font-weight: 700;
}

.service-btn {
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(45deg, #C9FF2F, #3EDFD7);
    color: #2A2E5B;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: block;
}

.service-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(201, 255, 47, 0.3);
    background: linear-gradient(45deg, #E1FF73, #3EDFD7);
}

/* Process Section */
.process {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(42, 46, 91, 0.95) 0%, 
        rgba(30, 35, 71, 0.8) 100%);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    animation: fadeInUp 0.8s ease-out;
}

.step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(45deg, #C9FF2F, #3EDFD7);
    color: #2A2E5B;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.step-title {
    color: #C9FF2F;
    margin-bottom: 1.5rem;
}

.step-description {
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(30, 35, 71, 0.9) 0%, 
        rgba(62, 223, 215, 0.1) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: linear-gradient(135deg, 
        rgba(42, 46, 91, 0.8) 0%, 
        rgba(62, 223, 215, 0.1) 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 255, 47, 0.2);
    transition: all 0.3s ease;
    animation: slideInLeft 0.8s ease-out;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #3EDFD7;
    box-shadow: 0 15px 30px rgba(62, 223, 215, 0.2);
}

.testimonial-text {
    font-style: italic;
    font-size: 1.6rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.testimonial-author {
    color: #C9FF2F;
    font-weight: 600;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: linear-gradient(135deg, 
        rgba(42, 46, 91, 0.95) 0%, 
        rgba(30, 35, 71, 0.9) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    margin-top: 4rem;
}

.contact-info h3 {
    color: #C9FF2F;
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 3rem;
    opacity: 0.9;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.6rem;
}

.contact-icon {
    font-size: 2rem;
}

.contact-item a {
    color: #3EDFD7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #C9FF2F;
}

/* Form Styles */
.contact-form {
    background: linear-gradient(135deg, 
        rgba(62, 223, 215, 0.1) 0%, 
        rgba(42, 46, 91, 0.8) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid rgba(201, 255, 47, 0.2);
    animation: slideInRight 0.8s ease-out;
}

.form-group {
    margin-bottom: 2.5rem;
}

.form-label {
    display: block;
    margin-bottom: 1rem;
    font-weight: 600;
    color: #C9FF2F;
    font-size: 1.4rem;
}

.form-input,
.form-select {
    width: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(201, 255, 47, 0.3);
    border-radius: 10px;
    color: #FFFFFF;
    font-size: 1.6rem;
    transition: all 0.3s ease;
}

.form-input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #C9FF2F;
    box-shadow: 0 0 15px rgba(201, 255, 47, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.form-select option {
    background: #2A2E5B;
    color: #FFFFFF;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1.5;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #C9FF2F;
}

.checkbox-label a {
    color: #3EDFD7;
    text-decoration: none;
}

.checkbox-label a:hover {
    color: #C9FF2F;
}

.form-submit {
    width: 100%;
    padding: 2rem;
    background: linear-gradient(45deg, #C9FF2F, #3EDFD7);
    color: #2A2E5B;
    border: none;
    border-radius: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 255, 47, 0.4);
    background: linear-gradient(45deg, #E1FF73, #3EDFD7);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, 
        rgba(30, 35, 71, 0.95) 0%, 
        rgba(42, 46, 91, 1) 100%);
    padding: 6rem 0 2rem;
    border-top: 1px solid rgba(201, 255, 47, 0.2);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-title {
    color: #C9FF2F;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.footer-subtitle {
    color: #3EDFD7;
    margin-bottom: 2rem;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.7;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #FFFFFF;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid transparent;
    font-size: 1.4rem;
    font-weight: 500;
}

.footer-links a:hover {
    color: #C9FF2F;
    opacity: 1;
    background: rgba(201, 255, 47, 0.1);
    border-color: rgba(201, 255, 47, 0.3);
    transform: translateY(-1px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(201, 255, 47, 0.1);
    opacity: 0.7;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    max-width: 500px;
    background: linear-gradient(135deg, 
        rgba(42, 46, 91, 0.95) 0%, 
        rgba(30, 35, 71, 0.95) 100%);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid #C9FF2F;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.4s ease;
}

.cookie-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-content h4 {
    color: #C9FF2F;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cookie-text p {
    margin-bottom: 2rem;
    opacity: 0.9;
    font-size: 1.4rem;
}

.cookie-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.4rem;
}

.cookie-accept {
    background: linear-gradient(45deg, #C9FF2F, #3EDFD7);
    color: #2A2E5B;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 255, 47, 0.3);
}

.cookie-link {
    color: #3EDFD7;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 1rem;
    transition: color 0.3s ease;
}

.cookie-link:hover {
    color: #C9FF2F;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container,
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .nav-list {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(42, 46, 91, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-actions {
        justify-content: center;
    }

    .cta-button {
        padding: 1.2rem 2.5rem;
        font-size: 1.4rem;
    }

    .advantages-grid,
    .services-grid,
    .process-steps,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card.featured {
        transform: none;
    }

    .service-card.featured:hover {
        transform: translateY(-5px);
    }

    .cookie-popup {
        left: 1rem;
        right: 1rem;
        bottom: 1rem;
        padding: 2rem;
    }

    .cookie-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 0 1.5rem;
    }

    .hero {
        padding: 6rem 0 3rem;
    }

    .hero-container {
        padding: 0 1.5rem;
        gap: 2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .contact-form {
        padding: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .nav-link::after,
    .advantage-card,
    .service-card,
    .contact-form {
        border-width: 3px;
    }
    
    .cta-button,
    .service-btn,
    .form-submit {
        border: 3px solid #FFFFFF;
    }
}

/* Legal Pages Styles */
.legal-section {
    padding: 8rem 0 4rem;
    background: linear-gradient(135deg, 
        rgba(42, 46, 91, 0.95) 0%, 
        rgba(30, 35, 71, 0.9) 100%);
    min-height: calc(100vh - 120px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: linear-gradient(135deg, 
        rgba(62, 223, 215, 0.1) 0%, 
        rgba(42, 46, 91, 0.8) 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    border: 1px solid rgba(201, 255, 47, 0.2);
    animation: fadeInUp 1s ease-out;
}

.legal-title {
    color: #C9FF2F;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 2rem;
    text-align: center;
}

.legal-intro {
    font-size: 1.7rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    text-align: center;
}

.legal-section-block {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(201, 255, 47, 0.1);
}

.legal-section-block:last-of-type {
    border-bottom: none;
}

.legal-section-block h2 {
    color: #3EDFD7;
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.legal-section-block h3 {
    color: #C9FF2F;
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
}

.legal-section-block h4 {
    color: #3EDFD7;
    font-size: 1.6rem;
    margin: 1.5rem 0 1rem;
}

.legal-section-block p {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.legal-section-block ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section-block li {
    font-size: 1.5rem;
    line-height: 1.7;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.legal-section-block a {
    color: #C9FF2F;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-section-block a:hover {
    color: #E1FF73;
}

.legal-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(201, 255, 47, 0.2);
    text-align: center;
}

.legal-footer p {
    color: #3EDFD7;
    font-weight: 600;
    margin-bottom: 2rem;
}

.legal-actions {
    display: flex;
    justify-content: center;
}

.btn-back {
    padding: 1.5rem 3rem;
    background: linear-gradient(45deg, #C9FF2F, #3EDFD7);
    color: #2A2E5B;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-back:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 255, 47, 0.4);
    background: linear-gradient(45deg, #E1FF73, #3EDFD7);
}

/* Cookie Policy Specific Styles */
.cookie-table {
    margin: 2rem 0;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(201, 255, 47, 0.2);
}

.cookie-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    gap: 1rem;
}

.cookie-header {
    background: linear-gradient(45deg, #C9FF2F, #3EDFD7);
    color: #2A2E5B;
    font-weight: 700;
}

.cookie-row:not(.cookie-header) {
    background: rgba(42, 46, 91, 0.5);
    border-bottom: 1px solid rgba(201, 255, 47, 0.1);
}

.cookie-row:not(.cookie-header):last-child {
    border-bottom: none;
}

.cookie-cell {
    padding: 1.5rem 1rem;
    font-size: 1.4rem;
}

.browser-guides {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.browser-guide {
    background: rgba(42, 46, 91, 0.5);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(201, 255, 47, 0.2);
}

.browser-guide h4 {
    color: #C9FF2F;
    margin-bottom: 1rem;
    font-size: 1.6rem;
}

.browser-guide p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin: 0;
}

.contact-info {
    background: rgba(42, 46, 91, 0.5);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(201, 255, 47, 0.2);
    margin: 1.5rem 0;
}

.contact-info p {
    margin: 0;
    line-height: 1.8;
}

/* Disclaimer Specific Styles */
.warning-box {
    background: linear-gradient(135deg, 
        rgba(255, 215, 0, 0.1) 0%, 
        rgba(255, 69, 0, 0.1) 100%);
    border: 2px solid #FFD700;
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem 0;
}

.warning-box h3 {
    color: #FFD700;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.warning-box p {
    margin: 0;
    font-weight: 500;
    color: #FFFFFF;
}

/* Form Error Styles */
.form-error {
    background: linear-gradient(135deg, 
        rgba(255, 69, 0, 0.1) 0%, 
        rgba(220, 20, 60, 0.1) 100%);
    border: 2px solid #FF4500;
    border-radius: 15px;
    padding: 1.5rem;
    margin: 8rem 2rem 2rem;
    text-align: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 40px rgba(255, 69, 0, 0.3);
    animation: slideDownError 0.5s ease-out;
}

.form-error h4 {
    color: #FF4500;
    margin-bottom: 0.5rem;
}

.form-error p {
    margin: 0;
    color: #FFFFFF;
    opacity: 0.9;
}

@keyframes slideDownError {
    from {
        opacity: 0;
        transform: translateY(-100%);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 3rem 2rem;
    }
    
    .legal-section-block ul {
        padding-left: 1.5rem;
    }
    
    .cookie-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .cookie-cell {
        padding: 1rem;
        border-bottom: 1px solid rgba(201, 255, 47, 0.1);
    }
    
    .cookie-header .cookie-cell {
        background: linear-gradient(45deg, #C9FF2F, #3EDFD7);
        color: #2A2E5B;
        font-weight: 700;
    }
    
    .browser-guides {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 2.5rem 1.5rem;
    }
    
    .legal-title {
        font-size: 2.2rem;
    }
    
    .legal-intro {
        font-size: 1.5rem;
    }
    
    .legal-section-block h2 {
        font-size: 1.9rem;
    }
    
    .legal-section-block p,
    .legal-section-block li {
        font-size: 1.4rem;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
