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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

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(--white);
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

.ad-disclosure {
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #f5c6cb;
}

.main-nav {
    background-color: 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: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

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

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 550px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--secondary-color);
    padding: 16px 40px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: var(--transition);
    border: 2px solid var(--secondary-color);
    cursor: pointer;
    text-align: center;
}

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

.intro-split {
    display: flex;
}

.split-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.services-preview {
    padding: 100px 40px;
    background-color: var(--white);
}

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

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

.services-intro p {
    font-size: 20px;
    color: var(--text-light);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(50% - 40px);
    min-width: 320px;
    max-width: 600px;
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 24px;
    margin: 25px 30px 15px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-light);
    margin: 0 30px 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 20px 30px;
}

.select-service {
    display: block;
    width: calc(100% - 60px);
    margin: 0 30px 30px;
    padding: 14px 30px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.select-service:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.select-service.selected {
    background-color: #27ae60;
}

.contact-form-split {
    display: flex;
}

.form-content {
    flex: 1;
    padding: 80px 60px;
    background-color: var(--bg-light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-content h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-content > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

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

.service-selection-notice {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
    padding: 12px 16px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.service-selection-notice.success {
    background-color: #d4edda;
    border-color: #28a745;
    color: #155724;
}

.submit-button {
    width: 100%;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover:not(:disabled) {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.submit-button:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
    opacity: 0.6;
}

.form-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.trust-split {
    display: flex;
}

.trust-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

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

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.trust-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--white);
}

.disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 6px;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-size: 15px;
}

.cookie-accept {
    background-color: #27ae60;
    color: var(--white);
}

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

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

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

.page-hero-split {
    display: flex;
    min-height: 450px;
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: var(--bg-light);
}

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

.page-hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    max-width: 550px;
}

.page-hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.about-story-split {
    display: flex;
}

.story-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.story-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.story-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.values-split {
    display: flex;
}

.values-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.values-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

.values-content h2 {
    font-size: 38px;
    margin-bottom: 35px;
    color: var(--primary-color);
}

.value-item {
    margin-bottom: 30px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.approach-split {
    display: flex;
}

.approach-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.approach-content p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.approach-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-about {
    padding: 100px 40px;
    text-align: center;
    background-color: var(--bg-light);
}

.cta-about h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.cta-about p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

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

.service-detail-split {
    display: flex;
    margin-bottom: 0;
}

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

.service-detail-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--bg-light);
}

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

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-features {
    margin: 25px 0;
    padding-left: 20px;
}

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
    list-style: disc;
}

.service-price-box {
    margin: 30px 0;
    padding: 20px 25px;
    background-color: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

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

.service-detail-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.contact-info-split {
    display: flex;
}

.contact-details {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 600;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.contact-cta {
    padding: 100px 40px;
    text-align: center;
    background-color: var(--bg-light);
}

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

.contact-cta p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.thanks-page {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 40px;
    background-color: var(--bg-light);
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

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

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

.thanks-content p {
    font-size: 19px;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

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

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

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

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

.legal-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
    list-style: disc;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .contact-form-split,
    .trust-split,
    .page-hero-split,
    .about-story-split,
    .values-split,
    .approach-split,
    .service-detail-split,
    .contact-info-split {
        flex-direction: column;
    }

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

    .hero-content,
    .split-content,
    .form-content,
    .trust-content,
    .page-hero-content,
    .story-content,
    .values-content,
    .approach-content,
    .service-detail-content,
    .contact-details {
        padding: 60px 30px;
    }

    .hero-content h1,
    .page-hero-content h1 {
        font-size: 36px;
    }

    .split-content h2,
    .trust-content h2,
    .story-content h2,
    .values-content h2,
    .approach-content h2,
    .service-detail-content h2,
    .contact-details h2 {
        font-size: 30px;
    }

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

    .service-card {
        max-width: 100%;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }

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

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