* {
    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: #2d3436;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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 {
    flex: 1;
    margin: 0;
    min-width: 300px;
}

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

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

.btn-cookie-accept {
    background-color: #00b894;
    color: #ffffff;
}

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

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

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

.header-main {
    background-color: #ffffff;
    border-bottom: 1px solid #dfe6e9;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand a {
    font-size: 22px;
    font-weight: 700;
    color: #2d3436;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #2d3436;
}

.ad-disclosure {
    background-color: #ffeaa7;
    padding: 6px 12px;
    border-radius: 4px;
}

.ad-disclosure span {
    font-size: 12px;
    color: #2d3436;
    font-weight: 500;
}

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

.hero-content,
.hero-visual {
    flex: 1;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2d3436;
}

.hero-text p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #2d3436;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.hero-visual {
    position: relative;
    overflow: hidden;
}

.image-container {
    width: 100%;
    height: 100%;
    position: relative;
}

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

.intro-statement {
    padding: 100px 40px;
    background-color: #ffffff;
}

.statement-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.statement-left {
    flex: 1;
}

.statement-left h2 {
    font-size: 36px;
    line-height: 1.3;
    color: #2d3436;
}

.statement-right {
    flex: 1;
}

.statement-right p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 20px;
}

.services-grid {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2d3436;
}

.section-header-centered p {
    font-size: 18px;
    color: #636e72;
}

.service-card-split {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

.service-visual {
    flex: 1;
    position: relative;
    min-height: 400px;
}

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

.service-info {
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2d3436;
}

.service-info p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 28px;
    line-height: 1.7;
}

.pricing-tag {
    margin-bottom: 24px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-size: 14px;
    color: #636e72;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #2d3436;
}

.btn-service-select {
    padding: 14px 32px;
    background-color: #2d3436;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service-select:hover {
    background-color: #636e72;
    transform: translateY(-2px);
}

.cta-block-inline {
    padding: 100px 40px;
    background-color: #2d3436;
    color: #ffffff;
    text-align: center;
}

.cta-wrapper h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-wrapper p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 48px;
    background-color: #ffffff;
    color: #2d3436;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
}

.form-section-split {
    padding: 100px 40px;
    background-color: #ffffff;
}

.form-section-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 80px;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2d3436;
}

.form-intro p {
    font-size: 17px;
    color: #636e72;
    margin-bottom: 40px;
    line-height: 1.7;
}

.trust-markers {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 24px;
    height: 24px;
    background-color: #00b894;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.trust-item span:last-child {
    font-size: 15px;
    color: #2d3436;
}

.form-container {
    flex: 1;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2d3436;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background-color: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d3436;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #2d3436;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.disclaimer-section {
    padding: 60px 40px;
    background-color: #ffeaa7;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 14px;
    color: #2d3436;
    line-height: 1.7;
}

.footer-main {
    background-color: #2d3436;
    color: #ffffff;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    color: #b2bec3;
    line-height: 1.6;
    margin-bottom: 8px;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #636e72;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #b2bec3;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
}

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

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 24px;
    color: #2d3436;
}

.thanks-content p {
    font-size: 18px;
    color: #636e72;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-content .service-selected {
    display: inline-block;
    padding: 12px 24px;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin: 20px 0;
    font-weight: 600;
    color: #2d3436;
}

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

.page-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2d3436;
}

.page-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3436;
}

.page-content p {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.page-content ul li {
    font-size: 16px;
    color: #636e72;
    margin-bottom: 10px;
    line-height: 1.7;
}

.contact-info-section {
    padding: 80px 40px;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-details {
    flex: 1;
}

.contact-details h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2d3436;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2d3436;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    min-height: 500px;
}

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

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

    .statement-wrapper {
        flex-direction: column;
        gap: 40px;
    }

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

    .form-section-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

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

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