/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333333;
    line-height: 1.6;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* Color Palette Variables */
:root {
    --primary-bg: #00B8D9;
    --accent-color: #FF6B6B;
    --heading-color: #6C5CE7;
    --text-color: #333333;
    --btn-gradient-start: #A8E063;
    --btn-gradient-end: #56AB2F;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.5rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.8rem;
}

h4 {
    font-size: 1.4rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.btn-primary {
    background: linear-gradient(135deg, var(--btn-gradient-start), var(--btn-gradient-end));
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(168, 224, 99, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--heading-color);
    border: 2px solid var(--heading-color);
}

.btn-secondary:hover {
    background: var(--heading-color);
    color: var(--white);
    transform: translateY(-2px);
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    border: 2px solid var(--primary-bg);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 8px 30px var(--shadow-color);
    z-index: 10000;
    max-width: 350px;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
    display: none;
}

.cookie-popup.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-popup h3 {
    color: var(--heading-color);
    margin-bottom: 0.5rem;
}

.cookie-popup p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.cookie-buttons {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.btn-accept {
    background: linear-gradient(135deg, var(--btn-gradient-start), var(--btn-gradient-end));
    color: var(--white);
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-decline {
    background: var(--white);
    color: var(--text-color);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept:hover, .btn-decline:hover {
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--white);
    box-shadow: 0 2px 10px var(--shadow-color);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-bg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--heading-color);
    transition: all 0.3s ease;
}

#mobile-menu-toggle {
    display: none;
}

#mobile-menu-toggle:checked + .mobile-menu-btn span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#mobile-menu-toggle:checked + .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}

#mobile-menu-toggle:checked + .mobile-menu-btn span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 4px 10px var(--shadow-color);
    list-style: none;
    padding: 1rem;
    flex-direction: column;
    gap: 1rem;
}

#mobile-menu-toggle:checked ~ .mobile-nav-links {
    display: flex;
}

.mobile-nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    background: var(--light-gray);
    color: var(--primary-bg);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary-bg) 0%, var(--heading-color) 100%);
    opacity: 0.95;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 224, 99, 0.3) 0%, transparent 50%);
}

.hero .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    color: var(--white);
    animation: fadeInUp 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.badge-icon {
    font-size: 1.2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--white) 0%, #A8E063 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
}

.hero-subtitle strong {
    color: var(--white);
    font-weight: 600;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 200px;
    justify-content: center;
}

.btn-hero.btn-primary {
    background: linear-gradient(135deg, #A8E063 0%, #56AB2F 100%);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(168, 224, 99, 0.4);
}

.btn-hero.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(168, 224, 99, 0.6);
}

.btn-hero.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-hero.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-hero:hover .btn-icon {
    transform: translateX(2px);
}

.hero-visual {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-image-container {
    position: relative;
    max-width: 500px;
    margin-left: auto;
}

.hero-image-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotate(-2deg);
    transition: transform 0.5s ease;
}

.hero-image-frame:hover {
    transform: rotate(0deg) scale(1.02);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.hero-image-frame:hover .hero-image {
    transform: scale(1.05);
}

.hero-floating-card {
    position: absolute;
    bottom: -20px;
    left: -20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-color);
    min-width: 160px;
    animation: float 3s ease-in-out infinite;
}

.card-icon {
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--primary-bg), var(--heading-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.card-content h4 {
    margin: 0 0 0.25rem 0;
    font-size: 0.9rem;
    font-weight: 600;
}

.card-content p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--text-color);
    opacity: 0.7;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
}

.scroll-line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.5));
    border-radius: 1px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-color);
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 30px var(--shadow-color);
}

/* Advantages Section */
.advantages {
    padding: 6rem 0;
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-color);
    border-color: var(--primary-bg);
}

.advantage-icon {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.advantage-card h3 {
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.advantage-card p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-card.featured {
    border: 3px solid var(--accent-color);
    transform: scale(1.05);
}

.service-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.service-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-color);
}

.service-features li:before {
    content: "✓";
    color: var(--btn-gradient-start);
    font-weight: bold;
    margin-right: 0.5rem;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

/* Process Section */
.process {
    padding: 6rem 0;
    background: var(--white);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: 20px;
    position: relative;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-bg));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.step-content {
    margin-top: 1rem;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.step-content p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: var(--light-gray);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-quote {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.testimonial-content p {
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: var(--heading-color);
    display: block;
    margin-bottom: 0.2rem;
}

.testimonial-author span {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Order Form Section */
.order {
    padding: 6rem 0;
    background: var(--white);
}

.order-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-container {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    color: var(--heading-color);
    font-weight: 600;
}

.form-group input {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-bg);
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.price-card {
    position: relative;
}

.price-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.price-card label {
    display: block;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.price-card input[type="radio"]:checked + label {
    border-color: var(--primary-bg);
    background: linear-gradient(135deg, var(--primary-bg), var(--heading-color));
    color: var(--white);
}

.price-card label h4 {
    margin-bottom: 0.5rem;
    color: inherit;
}

.price-card label .price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.price-card input[type="radio"]:checked + label .price {
    color: var(--white);
}

.price-card label p {
    font-size: 0.9rem;
    margin: 0;
    color: inherit;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-bg);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--primary-bg);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-submit {
    margin-top: 1rem;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    width: 100%;
}

.form-info {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 20px;
    height: fit-content;
}

.form-info h3 {
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.form-info ul {
    list-style: none;
    margin-bottom: 2rem;
}

.form-info li {
    padding: 0.5rem 0;
    color: var(--text-color);
}

.contact-cta {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    border: 2px solid var(--primary-bg);
    text-align: center;
}

.contact-cta p {
    margin-bottom: 0.5rem;
}

.contact-cta a {
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
}

.contact-cta a:hover {
    text-decoration: underline;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.contact-icon {
    color: var(--accent-color);
    margin-top: 0.2rem;
}

.contact-details h3 {
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.contact-details p {
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.contact-details a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 600;
}

.contact-details a:hover {
    text-decoration: underline;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.contact-map iframe {
    border-radius: 20px;
}

/* Footer */
.footer {
    background: var(--heading-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.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: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: var(--white);
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.contact-info p {
    margin-bottom: 1rem;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav {
        display: none;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero .container {
        padding-top: 6rem;
        padding-bottom: 1rem;
    }
    
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .btn-hero {
        width: 100%;
        max-width: 280px;
        min-width: auto;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-image-container {
        margin: 0 auto;
        max-width: 350px;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .hero-floating-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 1rem auto 0;
        max-width: 200px;
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .order-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .price-cards {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.4rem;
    }
    
    .btn {
        font-size: 1rem;
        padding: 0.8rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .stat-item {
        min-width: 80px;
    }
    
    .btn-hero {
        flex-direction: column;
        gap: 0.3rem;
        padding: 1rem;
    }
    
    .hero-image-container {
        max-width: 300px;
    }
    
    .hero-image {
        height: 250px;
    }
    
    .hero-floating-card {
        max-width: 180px;
        padding: 0.8rem;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.advantage-card,
.service-card,
.testimonial-card,
.contact-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling offset for fixed header */
html {
    scroll-padding-top: 100px;
}

/* ==========================================
   LEGAL PAGES STYLES
   ========================================== */

.legal-page {
    padding: 8rem 0 4rem;
    background: var(--light-gray);
    min-height: 100vh;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-color);
}

.legal-content h1 {
    color: var(--heading-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid var(--primary-bg);
    padding-bottom: 1rem;
}

.last-updated {
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 2rem;
    text-align: center;
}

.intro-section {
    background: linear-gradient(135deg, var(--primary-bg), var(--heading-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 3rem;
}

.intro-section p {
    color: var(--white);
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

.section {
    margin-bottom: 3rem;
}

.section h2 {
    color: var(--heading-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.section h3 {
    color: var(--heading-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.section p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.section li {
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.section strong {
    color: var(--heading-color);
    font-weight: 600;
}

.contact-section {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
}

.contact-section h2 {
    color: var(--heading-color);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
}

.contact-details {
    margin-top: 1rem;
}

.contact-details p {
    color: var(--text-color);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-details a {
    color: var(--primary-bg);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--accent-color);
}

/* Cookie page specific styles */
.cookie-category {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.cookie-category h3 {
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.cookie-table {
    overflow-x: auto;
    margin-top: 1rem;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow-color);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.cookie-table th {
    background: var(--primary-bg);
    color: var(--white);
    font-weight: 600;
}

.cookie-table tr:hover {
    background: var(--light-gray);
}

.consent-section {
    background: linear-gradient(135deg, var(--primary-bg), var(--heading-color));
    color: var(--white);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
}

.consent-section h2 {
    color: var(--white);
    border: none;
    padding: 0;
    margin-bottom: 1rem;
}

.consent-section p {
    color: var(--white);
    margin-bottom: 2rem;
}

.consent-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.consent-buttons .btn {
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.consent-buttons .btn-primary {
    background: var(--accent-color);
    color: var(--white);
}

.consent-buttons .btn-primary:hover {
    background: var(--white);
    color: var(--accent-color);
}

.consent-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.consent-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-bg);
}

/* Responsive design for legal pages */
@media (max-width: 768px) {
    .legal-page {
        padding: 6rem 0 2rem;
    }
    
    .legal-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .section h2 {
        font-size: 1.5rem;
    }
    
    .section h3 {
        font-size: 1.2rem;
    }
    
    .cookie-table {
        font-size: 0.9rem;
    }
    
    .consent-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .consent-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .legal-content {
        padding: 1.5rem;
    }
    
    .intro-section {
        padding: 1.5rem;
    }
    
    .contact-section {
        padding: 1.5rem;
    }
    
    .cookie-category {
        padding: 1.5rem;
    }
    
    .consent-section {
        padding: 1.5rem;
    }
}

/* Important notice styles for disclaimer page */
.important-notice {
    background: linear-gradient(135deg, #FFE5E5, #FFCCCC);
    border: 2px solid var(--accent-color);
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
}

.important-notice h2 {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border: none;
    padding: 0;
}

.important-notice p {
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive styles for important notice */
@media (max-width: 768px) {
    .important-notice {
        padding: 1.5rem;
        margin: 2rem 0;
    }
    
    .important-notice h2 {
        font-size: 1.3rem;
    }
    
    .important-notice p {
        font-size: 1rem;
    }
} 