:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #e94560;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --light-gray: #e9ecef;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    font-size: 16px;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.75rem;
}

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-accept:hover {
    background: #d63850;
}

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

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

.navbar {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: var(--transition);
}

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: center;
}

.hero-left, .hero-right {
    flex: 1;
    padding: 4rem;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-right {
    background: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary, .cta-secondary, .cta-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-align: center;
}

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

.cta-primary:hover {
    background: #d63850;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.cta-secondary:hover {
    background: var(--accent-color);
    color: var(--white);
}

.cta-large {
    background: var(--accent-color);
    color: var(--white);
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.cta-large:hover {
    background: #d63850;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.split-reverse, .split-standard {
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
}

.split-reverse {
    flex-direction: row-reverse;
    background: var(--light-bg);
}

.split-image, .split-text {
    flex: 1;
    padding: 2rem;
}

.split-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.split-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.split-image img {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.value-cards {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

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

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-pricing {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.pricing-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    flex: 1;
    min-width: 300px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 3px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: var(--border-radius);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-select {
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.testimonial-split {
    display: flex;
    align-items: center;
    padding: 5rem 2rem;
}

.testimonial-content, .testimonial-image {
    flex: 1;
    padding: 2rem;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1.125rem;
    color: var(--gray);
    font-style: normal;
}

.testimonial-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 50%;
    margin: 0 auto;
}

.cta-split {
    display: flex;
    align-items: stretch;
    background: var(--light-bg);
}

.cta-left, .cta-right {
    flex: 1;
    padding: 4rem;
}

.cta-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-left h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

.btn-submit {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border: none;
    border-radius: var(--border-radius);
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.process-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.final-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.final-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 900;
}

.sticky-btn {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 5px 20px rgba(233, 69, 96, 0.4);
    transition: var(--transition);
}

.sticky-btn:hover {
    background: #d63850;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(233, 69, 96, 0.5);
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    padding: 5rem 2rem;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.25rem;
    opacity: 0.9;
}

.values-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
    max-width: 1400px;
    margin: 0 auto;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
}

.value-item h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.team-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-image img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
}

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.cta-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-box h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 2rem;
    font-size: 1.125rem;
}

.services-intro {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-split {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.intro-text, .intro-image {
    flex: 1;
}

.intro-text h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.intro-image img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

.service-block {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
}

.service-block.reverse {
    flex-direction: row-reverse;
}

.service-left, .service-right {
    flex: 1;
}

.service-left img {
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-right h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-features {
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.comparison-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-table {
    margin-top: 3rem;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.comparison-table th,
.comparison-table td {
    padding: 1.25rem;
    text-align: left;
}

.comparison-table thead {
    background: var(--primary-color);
    color: var(--white);
}

.comparison-table tbody tr:nth-child(even) {
    background: var(--light-bg);
}

.cta-form-section {
    padding: 5rem 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    margin-bottom: 3rem;
}

.contact-split {
    display: flex;
    align-items: stretch;
    padding: 3rem 2rem;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-info, .contact-image {
    flex: 1;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.info-block {
    margin-bottom: 2rem;
}

.info-block h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.info-block a {
    color: var(--accent-color);
}

.info-block a:hover {
    text-decoration: underline;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
}

.map-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
    text-align: center;
}

.map-placeholder {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 3rem;
    background: var(--white);
    border-radius: var(--border-radius);
    border: 2px dashed var(--light-gray);
}

.map-placeholder p {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.map-note {
    font-size: 1rem;
    color: var(--gray);
}

.thanks-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
}

.thanks-content {
    max-width: 700px;
}

.success-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--accent-color);
    color: var(--white);
    font-size: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-hero h1 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: var(--border-radius);
}

.thanks-details strong {
    color: var(--accent-color);
}

.next-steps {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--light-bg);
    border-radius: var(--border-radius);
    text-align: center;
}

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

.step-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.thanks-cta {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.legal-page {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.legal-container h1 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-container h2 {
    color: var(--primary-color);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    color: var(--secondary-color);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container ul, .legal-container ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-container ul {
    list-style: disc;
}

.legal-container ol {
    list-style: decimal;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.legal-container p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: #d63850;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--light-gray);
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
}

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

    h2 {
        font-size: 1.75rem;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: var(--white);
        padding: 2rem;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left, .hero-right {
        padding: 2rem;
    }

    .split-reverse, .split-standard {
        flex-direction: column;
        padding: 3rem 1rem;
    }

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

    .split-image, .split-text {
        padding: 1rem;
    }

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

    .cta-left, .cta-right {
        padding: 2rem;
    }

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

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

    .service-block, .service-block.reverse {
        flex-direction: column;
    }

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

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }

    .sticky-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }

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

    .comparison-table {
        font-size: 0.875rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
}