/* Main colors 
 * Primary: #4B0082 (indigo)
 * Accent: #C0FF33 (neon lime)
 * Background: #F9F9F9 (ultra-light gray)
 * Text: #333333 (deep graphite)
 */

/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    background-color: #F9F9F9;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #4B0082;
}

h3 {
    font-size: 1.5rem;
    color: #4B0082;
}

p {
    margin-bottom: 20px;
}

a {
    color: #4B0082;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #C0FF33;
}

img {
    max-width: 100%;
    height: auto;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(45deg, #4B0082, #8A2BE2);
    color: white;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background: linear-gradient(45deg, #8A2BE2, #4B0082);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #4B0082;
    color: #4B0082;
}

.btn-secondary:hover {
    background-color: #4B0082;
    color: white;
}

/* Header */
header {
    background-color: white;
    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: center;
    padding: 15px 0;
}

.logo a {
    font-size: 2rem;
    font-weight: 800;
    color: #4B0082;
    letter-spacing: -1px;
    background: linear-gradient(45deg, #4B0082, #8A2BE2);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.main-nav a {
    font-weight: 600;
    padding: 8px 15px;
    border-radius: 4px;
}

.main-nav a.active {
    color: #C0FF33;
}

.main-nav a.nav-btn {
    background-color: #4B0082;
    color: white;
}

.main-nav a.nav-btn:hover {
    background-color: #C0FF33;
    color: #4B0082;
}

.mobile-menu-toggle {
    display: none;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.9), rgba(138, 43, 226, 0.8)), url('./img/dZF8cA.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    padding: 120px 0;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.hero h2 {
    font-size: 2rem;
    margin-bottom: 30px;
    color: #C0FF33;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Animated text */
.animated-text {
    position: relative;
    display: inline-block;
}

.animated-text::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    bottom: 0;
    left: 0;
    background-color: #C0FF33;
    animation: line-animation 3s infinite;
}

@keyframes line-animation {
    0% { width: 0; }
    50% { width: 100%; }
    100% { width: 0; }
}

/* About Section */
.about {
    background-color: white;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-advantages {
    flex: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.advantage {
    flex: 1;
    min-width: 200px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    background-color: #F9F9F9;
    transition: transform 0.3s ease;
}

.advantage:hover {
    transform: translateY(-5px);
}

.advantage-icon {
    font-size: 2rem;
    color: #4B0082;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    background-color: rgba(192, 255, 51, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Icons */
i.certificate::before {
    content: '🏆';
}

i.shield::before {
    content: '🛡️';
}

i.clock::before {
    content: '⏱️';
}

i.tax::before {
    content: '📊';
}

i.finance::before {
    content: '💹';
}

i.comprehensive::before {
    content: '📈';
}

/* Services Section */
.services {
    background-color: #F9F9F9;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 8px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Why Us Section */
.why-us {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.9), rgba(138, 43, 226, 0.8));
    color: white;
}

.why-us h2 {
    color: white;
}

.stats-row {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    min-width: 200px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #C0FF33;
}

.stat-label {
    font-size: 1.2rem;
}

.testimonial-preview {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.2rem;
}

.testimonial-quote cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: #C0FF33;
}

/* Process Section */
.process {
    background-color: white;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
    position: relative;
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, #4B0082, #8A2BE2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: #C0FF33;
}

/* FAQ Section */
.faq {
    background-color: #F9F9F9;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    background-color: white;
    padding: 20px;
    display: block;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    border-left: 4px solid #4B0082;
    transition: background-color 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #4B0082;
}

.faq-toggle:checked + .faq-question {
    background-color: #f0f0f0;
}

.faq-toggle:checked + .faq-question::after {
    content: '-';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: max-height 0.3s ease;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 20px;
}

/* Order Form Section */
.order-form {
    background: linear-gradient(135deg, rgba(75, 0, 130, 0.8), rgba(138, 43, 226, 0.7));
    color: white;
}

.order-form h2 {
    color: white;
}

.glass-effect {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 30px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
}

.form-group select option {
    background-color: #4B0082;
    color: white;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
}

.form-group a {
    color: #C0FF33;
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #F9F9F9;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 3px solid #4B0082;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-text {
    text-align: center;
}

.testimonial-text p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-text cite {
    font-style: normal;
    font-weight: 600;
    color: #4B0082;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 800;
    color: #C0FF33;
    margin-bottom: 20px;
}

.footer-about p {
    opacity: 0.7;
}

.footer-contact ul,
.footer-links ul {
    list-style: none;
}

.footer-contact li,
.footer-links li {
    margin-bottom: 10px;
}

.footer-contact a,
.footer-links a {
    color: #C0FF33;
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.footer-contact a:hover,
.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.5;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(34, 34, 34, 0.9);
    color: white;
    padding: 15px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    flex-grow: 1;
}

.cookie-content a {
    color: #C0FF33;
    text-decoration: underline;
}

/* Policy Pages */
.policy-content {
    max-width: 900px;
    margin: 50px auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}

.policy-content h1 {
    color: #4B0082;
    text-align: center;
    margin-bottom: 30px;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin: 30px 0 20px;
    text-align: left;
}

.policy-content ol,
.policy-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-content li {
    margin-bottom: 10px;
}

/* Responsive Media Queries */
@media (max-width: 992px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero h2 {
        font-size: 1.8rem;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .menu-toggle-btn {
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .menu-icon {
        position: relative;
        width: 30px;
        height: 3px;
        background-color: #4B0082;
        transition: all 0.3s ease;
    }
    
    .menu-icon::before,
    .menu-icon::after {
        content: '';
        position: absolute;
        width: 30px;
        height: 3px;
        background-color: #4B0082;
        transition: all 0.3s ease;
    }
    
    .menu-icon::before {
        transform: translateY(-10px);
    }
    
    .menu-icon::after {
        transform: translateY(10px);
    }
    
    .menu-icon.menu-open {
        background-color: transparent;
    }
    
    .menu-icon.menu-open::before {
        transform: rotate(45deg);
    }
    
    .menu-icon.menu-open::after {
        transform: rotate(-45deg);
    }
    
    .main-nav {
        position: fixed;
        top: 75px;
        left: 0;
        right: 0;
        background-color: white;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.menu-open {
        height: 320px;
    }
    
    .main-nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 10px;
    }
    
    .hero {
        padding: 100px 0;
    }
    
    .step:not(:last-child)::after {
        display: none;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .about-advantages,
    .stats-row {
        flex-direction: column;
    }
    
    .policy-content {
        padding: 20px;
    }
}