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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
}

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

.navbar {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    flex-wrap: wrap;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-ad-notice {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: #fef3c7;
    border-radius: 4px;
    margin: 0 16px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    align-items: center;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s;
}

.hero-card {
    display: flex;
    align-items: center;
    gap: 48px;
    padding: 80px 20px;
    background-color: var(--bg-white);
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-image {
    flex: 1;
    max-width: 500px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.cta-primary {
    background-color: var(--primary-color);
    color: white;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: var(--shadow-md);
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.intro-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.intro-card {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-card p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.services-preview {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.section-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--text-dark);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    max-width: 360px;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 16px;
    flex-grow: 1;
}

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

.btn-card {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-card:hover {
    background-color: #d97706;
    transform: scale(1.05);
}

.why-us-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.split-layout {
    display: flex;
    gap: 48px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 2rem;
    margin-bottom: 24px;
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 1.125rem;
    color: var(--text-light);
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 1.25rem;
}

.split-image {
    flex: 1;
    max-width: 500px;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.cta-secondary {
    background-color: var(--success-color);
    color: white;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #059669;
    transform: translateY(-2px);
}

.process-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.process-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    flex: 1 1 calc(25% - 24px);
    min-width: 220px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

.testimonials-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.testimonials-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    flex: 1 1 calc(33.333% - 24px);
    min-width: 280px;
    max-width: 380px;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary-color);
}

.contact-form-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-card h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    text-align: center;
}

.form-intro {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    background-color: var(--primary-color);
    color: white;
    padding: 16px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.cta-sticky {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: white;
    padding: 16px 0;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    display: none;
}

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

.cta-sticky .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.btn-sticky {
    background-color: var(--accent-color);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-sticky:hover {
    background-color: #d97706;
    transform: scale(1.05);
}

.footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    margin-bottom: 16px;
    font-size: 1.125rem;
}

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

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: white;
}

.footer-disclaimer {
    background-color: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.95);
    color: white;
    padding: 24px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: var(--accent-color);
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background-color: #059669;
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.about-hero,
.services-hero {
    background-color: var(--bg-white);
    padding: 80px 20px 60px;
    text-align: center;
}

.about-hero h1,
.services-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.story-section,
.approach-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.values-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.value-card {
    background-color: var(--bg-light);
    border-radius: 12px;
    padding: 32px;
    flex: 1 1 calc(50% - 24px);
    min-width: 250px;
    max-width: 360px;
    text-align: center;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
}

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

.team-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.split-text h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.split-text p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.experience-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.stats-grid {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    flex: 1 1 calc(25% - 24px);
    min-width: 200px;
    max-width: 260px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

.cta-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

.cta-card h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 1.125rem;
    margin-bottom: 32px;
    opacity: 0.9;
}

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

.cta-card .cta-primary:hover {
    background-color: var(--bg-light);
}

.detailed-services {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.service-detail-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 32px;
    box-shadow: var(--shadow-md);
}

.service-detail-header {
    display: flex;
    gap: 24px;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 2px solid var(--border-color);
}

.service-detail-header h2 {
    font-size: 1.75rem;
    margin-bottom: 8px;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-body h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    margin-top: 24px;
}

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

.service-list li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    color: var(--text-light);
}

.service-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.packages-section {
    padding: 80px 20px;
    background-color: var(--bg-white);
}

.cta-center {
    text-align: center;
}

.contact-page-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.contact-info-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.contact-info-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    flex: 1;
    min-width: 280px;
}

.contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.contact-info-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.contact-email {
    color: var(--text-dark);
    font-weight: 600;
}

.map-section {
    margin-top: 48px;
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

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

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

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

.thanks-card h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.thanks-card p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-service {
    background-color: var(--bg-light);
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 32px;
}

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

.legal-page {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.legal-content {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 2.25rem;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        background-color: var(--bg-white);
        position: absolute;
        top: 100%;
        left: 0;
        padding: 20px;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-ad-notice {
        order: -1;
        width: 100%;
        text-align: center;
        margin: 8px 0;
    }

    .hero-card {
        flex-direction: column;
        padding: 40px 20px;
    }

    .hero-content h1 {
        font-size: 1.875rem;
    }

    .split-layout {
        flex-direction: column;
    }

    .process-cards {
        flex-direction: column;
    }

    .cta-sticky .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .stats-grid {
        flex-direction: column;
    }

    .contact-info-grid {
        flex-direction: column;
    }

    .about-hero h1,
    .services-hero h1 {
        font-size: 2rem;
    }
}