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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    gap: 30px;
}

.header-right a {
    color: #495057;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.header-right a:hover {
    color: #007bff;
}

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

.hero-content {
    flex: 1;
    padding: 80px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a5568;
    max-width: 560px;
}

.hero-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #007bff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #0056b3;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #ffffff;
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #007bff;
    border-radius: 6px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #007bff;
    color: #ffffff;
}

.split-section {
    display: flex;
    min-height: 500px;
}

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

.split-visual {
    flex: 1;
    background-color: #e9ecef;
    overflow: hidden;
}

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

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

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.split-text ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.split-text ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: #4a5568;
}

.split-text ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #007bff;
    font-weight: 700;
}

.services-preview-split {
    padding: 80px 5%;
    background-color: #ffffff;
}

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

.services-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.services-intro p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.services-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.service-card {
    flex: 1;
    padding: 40px 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 24px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 24px;
    font-weight: 700;
    color: #007bff;
}

.services-preview-split .cta-secondary {
    display: block;
    text-align: center;
    margin: 0 auto;
    max-width: 320px;
}

.form-section-split {
    display: flex;
    background-color: #f8f9fa;
}

.form-container {
    flex: 1;
    padding: 80px 5%;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 700;
}

.form-container p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
}

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

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

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

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

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

.btn-submit {
    padding: 16px 48px;
    background-color: #007bff;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-visual {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.trust-strip {
    padding: 60px 5%;
    background-color: #ffffff;
}

.trust-content {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    text-align: center;
}

.trust-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 8px;
}

.trust-label {
    display: block;
    font-size: 16px;
    color: #6c757d;
}

.footer-split {
    display: flex;
    gap: 60px;
    padding: 80px 5%;
    background-color: #2c3e50;
    color: #ffffff;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #adb5bd;
}

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

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

.footer-section ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s;
}

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

.disclaimer {
    padding: 24px 5%;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    font-size: 13px;
    color: #6c757d;
    text-align: center;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #007bff;
    padding: 20px 5%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background-color: #007bff;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5a6268;
}

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

.page-hero-content {
    flex: 1;
    padding: 60px 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    max-width: 560px;
}

.page-hero-image {
    flex: 1;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.values-section {
    padding: 80px 5%;
    background-color: #ffffff;
}

.values-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    text-align: center;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 600;
}

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

.cta-split {
    padding: 80px 5%;
    background-color: #007bff;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-split .cta-primary {
    background-color: #ffffff;
    color: #007bff;
}

.cta-split .cta-primary:hover {
    background-color: #f8f9fa;
}

.services-detailed {
    padding: 60px 5%;
    background-color: #ffffff;
}

.services-detailed h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

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

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

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

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.service-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-info ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-info ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: #4a5568;
}

.service-info ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
}

.service-visual {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-pricing {
    margin-top: 32px;
    padding: 24px;
    background-color: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 8px;
}

.price-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #007bff;
    margin-bottom: 8px;
}

.price-note {
    display: block;
    font-size: 13px;
    color: #6c757d;
}

.contact-content-split {
    display: flex;
    padding: 60px 5%;
    background-color: #ffffff;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
}

.contact-detail p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.note-text {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-top: 12px;
}

.contact-visual-block {
    flex: 1;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual-block img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.contact-note {
    padding: 32px;
}

.contact-note h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
}

.contact-note p {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 20px;
    line-height: 1.6;
}

.location-info {
    padding: 60px 5%;
    background-color: #f8f9fa;
}

.location-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #1a202c;
    font-weight: 700;
}

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

.location-text {
    flex: 1;
}

.location-text h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #1a202c;
    font-weight: 600;
}

.location-text h3:first-child {
    margin-top: 0;
}

.location-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.location-visual {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.location-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 360px;
}

.thanks-section {
    display: flex;
    min-height: 600px;
    padding: 80px 5%;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #28a745;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-selected {
    padding: 16px;
    background-color: #d4edda;
    border-left: 4px solid #28a745;
    border-radius: 4px;
    font-weight: 600;
    color: #155724;
}

.next-steps {
    margin: 40px 0;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 600;
}

.next-steps ol {
    padding-left: 24px;
    color: #4a5568;
}

.next-steps ol li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    margin-top: 32px;
}

.thanks-visual {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

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

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 5%;
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 700;
}

.legal-intro {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.7;
    color: #4a5568;
}

.legal-content a {
    color: #007bff;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0056b3;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

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

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

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

.cookie-table td {
    color: #4a5568;
}

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

    .hero-split,
    .split-section,
    .form-section-split,
    .services-grid,
    .values-grid,
    .split-layout,
    .contact-content-split,
    .location-split,
    .thanks-section,
    .footer-split {
        flex-direction: column;
    }

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

    .split-text h2,
    .services-intro h2 {
        font-size: 28px;
    }

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

    .thanks-content {
        padding-right: 0;
    }
}