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

:root {
    --primary-color: #0066cc;
    --secondary-color: #004080;
    --accent-color: #00aaff;
    --text-dark: #1a1a1a;
    --text-gray: #4a4a4a;
    --text-light: #6a6a6a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
}

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

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

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

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

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

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

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

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.hero-text {
    max-width: 550px;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.hero-right {
    background-color: var(--bg-white);
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.intro-section,
.value-proposition,
.about-intro,
.experience-section {
    padding: 80px 0;
}

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

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-content,
.split-image {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    line-height: 1.3;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.split-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.split-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.split-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.split-content ul li {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.split-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: var(--secondary-color);
}

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

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

.centered-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: var(--bg-light);
}

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

.service-card p {
    padding: 0 20px;
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
}

.price {
    padding: 15px 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.select-service {
    margin: 0 20px 20px;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: calc(100% - 40px);
}

.select-service:hover {
    background-color: var(--secondary-color);
}

.approach-section,
.values-section,
.methodology {
    padding: 80px 0;
}

.approach-grid,
.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-item,
.value-item {
    flex: 1 1 calc(50% - 20px);
}

.approach-item h3,
.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.approach-item p,
.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

.methodology-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.method-step {
    flex: 1 1 calc(50% - 15px);
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.method-step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.method-step p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.form-intro {
    margin-bottom: 30px;
}

.form-intro h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 17px;
    color: var(--text-gray);
}

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

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

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

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

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

.submit-button {
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: var(--secondary-color);
}

.cta-section {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

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

.cta-section .cta-button:hover {
    background-color: var(--bg-light);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: white;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
}

.page-hero {
    background-color: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: var(--text-dark);
}

.services-detailed {
    padding: 60px 0;
}

.service-detail {
    margin-bottom: 80px;
}

.price-box {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 5px;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.contact-section {
    padding: 60px 0;
}

.contact-layout {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

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

.info-block h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 600;
}

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
}

.info-note {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.info-note p {
    font-size: 15px;
    color: var(--text-gray);
    margin: 0;
}

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

.map-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--success-color);
    color: white;
    font-size: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.service-confirmation {
    margin: 30px 0;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.service-confirmation p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

.next-steps {
    text-align: left;
    margin: 40px 0;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

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

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

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

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 16px;
}

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

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left {
        padding: 40px 20px;
    }

    .hero-text h1 {
        font-size: 32px;
    }

    .hero-right {
        min-height: 300px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 30px;
    }

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

    .approach-item,
    .value-item,
    .method-step {
        flex: 1 1 100%;
    }

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

    .form-wrapper {
        padding: 30px 20px;
    }

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

    .nav {
        gap: 15px;
    }

    .header-content {
        gap: 15px;
    }

    .section-title,
    .centered-title {
        font-size: 28px;
    }
}
