:root {
    --primary: #2c5f4b;
    --primary-dark: #1e4234;
    --secondary: #d4a574;
    --accent: #8b4513;
    --light: #f8f5f0;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text);
    background: var(--white);
}

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

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 2.8rem; }
h2 { font-size: 2.2rem; }
h3 { font-size: 1.6rem; }
h4 { font-size: 1.3rem; }

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.7rem; }
    h3 { font-size: 1.4rem; }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--dark);
}

.btn-secondary:hover {
    background: #c49464;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.1rem;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo span {
    color: var(--secondary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: var(--transition);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
}

.main-nav a {
    color: var(--text);
    font-weight: 500;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.main-nav a:hover {
    color: var(--primary);
}

@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-150%);
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .main-nav.active {
        transform: translateY(0);
    }
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 150%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%232c5f4b" opacity="0.03"/></svg>');
    background-size: 100px;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-text {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    background: var(--secondary);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    max-width: 500px;
    height: 450px;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-image svg {
    width: 60%;
    height: auto;
    opacity: 0.9;
}

.hero-float {
    position: absolute;
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.hero-float-1 {
    top: 20px;
    right: -30px;
}

.hero-float-2 {
    bottom: 40px;
    left: -40px;
}

.hero-float-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.hero-float-text {
    font-weight: 600;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-title {
        font-size: 2.4rem;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-visual {
        width: 100%;
        max-width: 400px;
    }

    .hero-float {
        display: none;
    }
}

section {
    padding: 80px 0;
}

.section-light {
    background: var(--light);
}

.section-dark {
    background: var(--dark);
    color: var(--white);
}

.section-dark h2, .section-dark h3, .section-dark h4 {
    color: var(--white);
}

.section-gradient {
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header p {
    color: var(--text-light);
    margin-top: 15px;
    font-size: 1.1rem;
}

.section-label {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.problem-section {
    padding: 100px 0;
    background: linear-gradient(to right, var(--light) 50%, var(--white) 50%);
}

.problem-content {
    display: flex;
    align-items: stretch;
}

.problem-left {
    flex: 1;
    padding: 60px;
    background: var(--light);
}

.problem-right {
    flex: 1;
    padding: 60px;
    background: var(--white);
}

.problem-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
}

.problem-text h4 {
    margin-bottom: 8px;
}

.problem-text p {
    color: var(--text-light);
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .problem-section {
        background: var(--light);
    }

    .problem-content {
        flex-direction: column;
    }

    .problem-left, .problem-right {
        padding: 40px 20px;
    }
}

.story-section {
    padding: 100px 0;
    position: relative;
}

.story-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-image {
    flex: 1;
    position: relative;
}

.story-image-main {
    width: 100%;
    height: 500px;
    background: linear-gradient(145deg, var(--secondary) 0%, #b8956a 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-image-main svg {
    width: 50%;
    opacity: 0.8;
}

.story-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--primary);
    border-radius: 20px;
    z-index: -1;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    margin-bottom: 25px;
}

.story-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.story-text .highlight {
    color: var(--text);
    font-weight: 500;
}

@media (max-width: 900px) {
    .story-content {
        flex-direction: column;
        gap: 40px;
    }

    .story-accent {
        display: none;
    }
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: var(--white);
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: var(--light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.benefit-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.benefit-card p {
    color: var(--text-light);
}

.testimonials {
    padding: 100px 0;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: var(--primary-dark);
    clip-path: polygon(20% 0, 100% 0, 100% 100%, 0 100%);
}

.testimonials .section-header {
    position: relative;
    z-index: 1;
}

.testimonials .section-header p {
    color: rgba(255,255,255,0.8);
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.testimonial-card {
    flex: 1;
    background: var(--white);
    color: var(--text);
    padding: 40px;
    border-radius: 16px;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 30px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: var(--primary);
}

.testimonial-info strong {
    display: block;
    color: var(--dark);
}

.testimonial-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 900px) {
    .testimonials-grid {
        flex-direction: column;
    }
}

.services-section {
    padding: 100px 0;
}

.services-intro {
    max-width: 600px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.service-image {
    flex: 0 0 40%;
    min-height: 300px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image svg {
    width: 40%;
    opacity: 0.8;
}

.service-image-alt {
    background: linear-gradient(135deg, var(--secondary) 0%, #b8956a 100%);
}

.service-content {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-light);
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 16px;
    height: 16px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.2;
}

.service-features li::after {
    content: '✓';
    position: absolute;
    left: 3px;
    top: 8px;
    font-size: 10px;
    color: var(--primary);
    font-weight: bold;
}

.service-price {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 20px;
}

.service-price .amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.service-price .period {
    color: var(--text-light);
}

@media (max-width: 768px) {
    .service-card, .service-card:nth-child(even) {
        flex-direction: column;
    }

    .service-image {
        min-height: 200px;
    }

    .service-content {
        padding: 30px;
    }
}

.pricing-reveal {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.pricing-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.pricing-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.pricing-card {
    flex: 1 1 300px;
    max-width: 380px;
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card.featured {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured h3, .pricing-card.featured h4 {
    color: var(--white);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--dark);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.pricing-amount {
    margin-bottom: 25px;
}

.pricing-amount .currency {
    font-size: 1.2rem;
    vertical-align: super;
}

.pricing-amount .value {
    font-size: 3.5rem;
    font-weight: 700;
}

.pricing-card.featured .pricing-amount .value {
    color: var(--white);
}

.pricing-amount .period {
    font-size: 0.95rem;
    opacity: 0.7;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-left: 30px;
    position: relative;
}

.pricing-card.featured .pricing-features li {
    border-color: rgba(255,255,255,0.1);
}

.pricing-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.pricing-card.featured .pricing-features li::before {
    color: var(--secondary);
}

.pricing-card .btn {
    width: 100%;
}

.pricing-card.featured .btn-primary {
    background: var(--white);
    color: var(--primary);
}

.pricing-card.featured .btn-primary:hover {
    background: var(--light);
}

@media (max-width: 900px) {
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
}

.cta-section {
    padding: 100px 0;
    background: var(--dark);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%23ffffff" opacity="0.05"/><circle cx="80" cy="80" r="3" fill="%23ffffff" opacity="0.03"/></svg>');
    background-size: 50px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    opacity: 0.8;
    margin-bottom: 35px;
    font-size: 1.1rem;
}

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

.urgency-banner {
    background: var(--secondary);
    color: var(--dark);
    padding: 20px;
    text-align: center;
}

.urgency-banner p {
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.form-section {
    padding: 100px 0;
    background: var(--light);
}

.form-wrapper {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    margin-bottom: 20px;
}

.form-info p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.form-benefits-icon {
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.form-benefits-icon svg {
    width: 20px;
    height: 20px;
    color: var(--white);
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e5e5;
    border-radius: 10px;
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-submit {
    width: 100%;
}

@media (max-width: 900px) {
    .form-wrapper {
        flex-direction: column;
    }

    .form-container {
        padding: 30px;
    }
}

.trust-section {
    padding: 60px 0;
    background: var(--white);
}

.trust-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.trust-text strong {
    display: block;
    font-size: 1.4rem;
    color: var(--primary);
}

.trust-text span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 15px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    display: none;
    z-index: 999;
}

.sticky-cta.visible {
    display: block;
}

.sticky-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}

.sticky-cta-text {
    font-weight: 500;
}

.sticky-cta-text span {
    color: var(--primary);
    font-weight: 700;
}

@media (max-width: 600px) {
    .sticky-cta-content {
        flex-direction: column;
        text-align: center;
    }
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.footer-brand {
    flex: 2;
    min-width: 250px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: rgba(255,255,255,0.7);
    max-width: 300px;
}

.footer-links {
    flex: 1;
    min-width: 150px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.1rem;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    gap: 25px;
}

.footer-legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-legal a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.cookie-text a {
    color: var(--secondary);
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-accept:hover {
    background: var(--primary-dark);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    background: rgba(255,255,255,0.1);
}

@media (max-width: 600px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 140px 0 80px;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-header p {
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255,255,255,0.7);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    opacity: 0.5;
}

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-section h2:first-child {
    margin-top: 0;
}

.content-section p {
    margin-bottom: 15px;
    color: var(--text-light);
}

.content-section ul, .content-section ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.content-section li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.about-intro-text {
    flex: 1;
}

.about-intro-image {
    flex: 1;
    height: 400px;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-intro-image svg {
    width: 40%;
    opacity: 0.8;
}

@media (max-width: 900px) {
    .about-intro {
        flex-direction: column;
    }

    .about-intro-image {
        width: 100%;
        height: 300px;
    }
}

.values-grid {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: var(--light);
    padding: 40px;
    border-radius: 16px;
}

.value-card h4 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.value-card p {
    margin: 0;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-details h4 {
    margin-bottom: 5px;
}

.contact-details p {
    margin: 0;
    color: var(--text-light);
}

.contact-map {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background: var(--light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail {
    display: flex;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: var(--light);
    border-radius: 20px;
}

.service-detail:nth-child(even) {
    flex-direction: row-reverse;
    background: var(--white);
    border: 1px solid #eee;
}

.service-detail-image {
    flex: 0 0 300px;
    height: 250px;
    background: linear-gradient(145deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image svg {
    width: 40%;
    opacity: 0.8;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h3 {
    margin-bottom: 15px;
}

.service-detail-content p {
    margin-bottom: 20px;
}

.service-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .service-detail, .service-detail:nth-child(even) {
        flex-direction: column;
    }

    .service-detail-image {
        flex: none;
        width: 100%;
        height: 200px;
    }
}

.thanks-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: var(--light);
}

.thanks-card {
    background: var(--white);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    max-width: 600px;
    box-shadow: var(--shadow);
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 50px;
    height: 50px;
    color: var(--white);
}

.thanks-card h1 {
    margin-bottom: 20px;
    color: var(--primary);
}

.thanks-card p {
    color: var(--text-light);
    margin-bottom: 15px;
}

.thanks-service {
    background: var(--light);
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
}

.thanks-service strong {
    color: var(--primary);
}

.thanks-card .btn {
    margin-top: 20px;
}

.legal-content {
    padding: 80px 0;
}

.legal-content h1 {
    margin-bottom: 40px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.legal-content p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content li {
    margin-bottom: 10px;
}

.legal-content .last-updated {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 40px;
}
