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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-links a {
    color: #555;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.hero-image {
    flex: 1;
    background-color: #e0e0e0;
}

.hero-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.value-proposition {
    padding: 90px 60px;
    background-color: #ffffff;
}

.split-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

.split-image {
    flex: 1;
    background-color: #ddd;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    line-height: 1.3;
}

.split-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.services-overview {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

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

.section-header-center h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 18px;
    color: #666;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    height: 220px;
    background-color: #e0e0e0;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0 25px 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin: 0 25px 20px;
}

.btn-select-service {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 12px 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin: 0 25px 25px;
    border-radius: 5px;
}

.btn-select-service:hover {
    background-color: #2980b9;
}

.approach-section {
    padding: 90px 60px;
    background-color: #ffffff;
}

.approach-list {
    list-style: none;
    margin-bottom: 30px;
}

.approach-list li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    color: #555;
}

.approach-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.form-section {
    padding: 90px 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #ecf0f1;
}

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

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

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    font-size: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 60px 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #252525;
    border-radius: 5px;
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    max-width: 1200px;
    margin: 0 auto;
    color: #888;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px 30px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-hero {
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    padding: 100px 60px;
    text-align: center;
    color: #ffffff;
}

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

.hero-content-centered h1 {
    font-size: 46px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-content-centered p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-intro {
    padding: 90px 60px;
    background-color: #ffffff;
}

.values-section {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

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

.value-item {
    flex: 1 1 calc(50% - 40px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

.process-section {
    padding: 90px 60px;
    background-color: #ffffff;
}

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

.step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    min-width: 60px;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.experience-section {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

.content-centered {
    max-width: 900px;
    margin: 0 auto;
}

.content-centered h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.content-centered p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.cta-section {
    padding: 90px 60px;
    background-color: #3498db;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.cta-box .cta-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-box .cta-primary:hover {
    background-color: #ecf0f1;
}

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

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

.service-detail:last-child {
    margin-bottom: 0;
}

.service-detail .split-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail .split-content h4 {
    font-size: 18px;
    margin: 25px 0 15px;
    color: #2c3e50;
}

.service-detail .split-content ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.service-detail .split-content ul li {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.comparison-section {
    padding: 90px 60px;
    background-color: #f8f9fa;
}

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

.comparison-item {
    flex: 1 1 calc(50% - 30px);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.comparison-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.comparison-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

.contact-content {
    padding: 60px 60px 90px;
}

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

.contact-info-block {
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 8px;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.info-item:last-child {
    margin-bottom: 0;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #3498db;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.non-clickable-email {
    pointer-events: none;
    user-select: text;
}

.map-placeholder {
    padding: 60px;
    background-color: #f8f9fa;
}

.map-notice {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.map-notice p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
    min-height: 70vh;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 50px;
    color: #555;
}

.next-steps {
    margin-bottom: 50px;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
}

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

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.step-item .step-number {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    min-width: 50px;
}

.step-text h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-text p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.btn-secondary {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

.legal-content {
    padding: 60px 60px 90px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.updated-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3498db;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

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

.legal-container ul li,
.legal-container ol li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.legal-container strong {
    font-weight: 600;
    color: #2c3e50;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

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

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th,
.cookies-table td {
    padding: 12px 15px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    font-size: 15px;
    color: #555;
}

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

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

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

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

    .nav-links {
        gap: 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .value-item {
        flex: 1 1 100%;
    }

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

    .comparison-item {
        flex: 1 1 100%;
    }

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