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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --border-color: #dee2e6;
    --success-color: #4CAF50;
}

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 {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

.cookie-content a {
    color: #fff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

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

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

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

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.hero-right {
    flex: 1;
    overflow: hidden;
}

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

.cta-primary,
.cta-secondary,
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 4px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.cta-primary:hover,
.cta-secondary:hover,
.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: white;
}

.split-reverse {
    display: flex;
    align-items: center;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    flex: 1;
    padding: 60px 50px;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.split-content p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.services-intro {
    padding: 80px 20px;
    text-align: center;
    background: var(--light-bg);
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.services-header p {
    font-size: 20px;
    color: #666;
}

.split-content-only {
    padding: 60px 20px;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 20px;
    margin-bottom: 15px;
    color: #555;
}

.price {
    padding: 0 20px;
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.btn-select {
    margin: 0 20px 20px;
    padding: 12px 25px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: calc(100% - 40px);
    transition: background 0.3s ease;
}

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

.testimonials-split {
    display: flex;
    padding: 80px 40px;
    background: var(--primary-color);
    color: white;
}

.testimonials-left {
    flex: 1;
    padding-right: 40px;
}

.testimonials-left h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.testimonials-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial p {
    margin-bottom: 10px;
    font-style: italic;
}

.testimonial span {
    display: block;
    font-weight: 600;
    font-size: 14px;
}

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

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

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

.form-left h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-left p {
    margin-bottom: 25px;
    font-size: 18px;
}

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

.benefits-list li {
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
}

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

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.service-display {
    padding: 15px;
    background: var(--light-bg);
    border-radius: 4px;
    font-weight: 600;
    color: var(--primary-color);
}

.btn-submit {
    padding: 15px;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #c0392b;
}

.split-final {
    display: flex;
    align-items: center;
}

.cta-full {
    padding: 100px 20px;
    text-align: center;
    background: var(--secondary-color);
    color: white;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-large {
    display: inline-block;
    padding: 20px 50px;
    background: white;
    color: var(--secondary-color);
    font-size: 20px;
    font-weight: 700;
    border-radius: 4px;
    transition: transform 0.3s ease;
}

.cta-large:hover {
    transform: scale(1.05);
    color: var(--secondary-color);
}

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

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 20px;
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.8);
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
}

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

.sticky-cta a {
    display: block;
    padding: 15px 30px;
    background: var(--accent-color);
    color: white;
    border-radius: 30px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    color: white;
}

.page-header {
    padding: 80px 20px;
    text-align: center;
    background: var(--light-bg);
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.page-header p {
    font-size: 20px;
    color: #666;
}

.services-detail {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.service-detail-card {
    display: flex;
    gap: 50px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

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

.service-detail-left img {
    border-radius: 8px;
}

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

.service-detail-right h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price-large {
    font-size: 36px;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-detail-right h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-detail-right ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.service-detail-right ul li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.cta-services {
    padding: 80px 20px;
    text-align: center;
    background: var(--light-bg);
}

.cta-services h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 30px;
}

.about-hero {
    background: var(--light-bg);
    padding: 80px 20px;
}

.about-hero-content {
    max-width: 1200px;
    margin: 0 auto 40px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.about-hero-image {
    max-width: 1200px;
    margin: 0 auto;
}

.about-hero-image img {
    border-radius: 8px;
    width: 100%;
}

.about-story {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-left {
    flex: 1;
}

.story-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.story-left p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.story-right {
    flex: 1;
}

.story-right img {
    border-radius: 8px;
}

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

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.value-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.value-card p {
    line-height: 1.7;
}

.approach-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.approach-content {
    text-align: center;
    margin-bottom: 50px;
}

.approach-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.approach-content p {
    font-size: 18px;
    margin-bottom: 15px;
}

.approach-pillars {
    display: flex;
    gap: 40px;
}

.pillar {
    flex: 1;
    text-align: center;
}

.pillar-number {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pillar h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-section p {
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 18px;
    line-height: 1.8;
}

.numbers-section {
    padding: 80px 20px;
}

.numbers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.number-card {
    flex: 1 1 calc(25% - 23px);
    min-width: 200px;
    text-align: center;
    padding: 40px 20px;
    background: var(--light-bg);
    border-radius: 8px;
}

.big-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.number-card p {
    font-size: 16px;
    color: #666;
}

.cta-about {
    padding: 80px 20px;
    text-align: center;
    background: var(--secondary-color);
    color: white;
}

.cta-about h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-about p {
    font-size: 20px;
    margin-bottom: 30px;
}

.contact-header {
    padding: 80px 20px;
    text-align: center;
    background: var(--light-bg);
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-main {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--secondary-color);
}

.info-block p {
    line-height: 1.8;
    font-size: 16px;
}

.contact-image {
    flex: 1;
}

.contact-image img {
    border-radius: 8px;
}

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

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: white;
    padding: 30px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    line-height: 1.7;
}

.cta-contact {
    padding: 80px 20px;
    text-align: center;
}

.cta-contact h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.cta-contact p {
    font-size: 20px;
    margin-bottom: 30px;
}

.thanks-hero {
    padding: 100px 20px;
    background: var(--light-bg);
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.thanks-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 50px;
}

.thanks-info {
    background: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    gap: 20px;
    text-align: left;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    font-size: 24px;
    font-weight: bold;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.step p {
    line-height: 1.6;
    color: #555;
}

.selected-service-info {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-service-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-name {
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.thanks-contact {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.thanks-contact p {
    margin-bottom: 10px;
}

.next-steps {
    padding: 80px 20px;
}

.next-steps h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.resources-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.resource-card {
    flex: 1;
    background: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
}

.resource-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.resource-card p {
    line-height: 1.7;
}

.legal-page {
    padding: 60px 20px;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.legal-updated {
    color: #666;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.legal-container p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

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

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        display: none;
        gap: 15px;
    }

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

    .hero-split,
    .split-reverse,
    .split-final {
        flex-direction: column;
    }

    .hero-left h1 {
        font-size: 36px;
    }

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

    .testimonials-left {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .form-container {
        flex-direction: column;
        padding: 30px 20px;
    }

    .service-card {
        flex: 1 1 100%;
    }

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

    .about-story {
        flex-direction: column;
    }

    .approach-pillars {
        flex-direction: column;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }

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

    .sticky-cta a {
        padding: 12px 20px;
        font-size: 14px;
    }
}
