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

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

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

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

.header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-disclosure {
    font-size: 11px;
    color: #7f8c8d;
    font-style: italic;
    max-width: 150px;
    text-align: right;
}

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

.cookie-banner.hidden {
    display: none;
}

.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-actions {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    padding: 10px 20px;
    border: none;
    background-color: #3498db;
    color: #ffffff;
    cursor: pointer;
    border-radius: 4px;
    font-weight: 500;
    transition: background-color 0.3s;
}

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

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

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

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

.hero-left {
    flex: 1;
    padding: 60px 80px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #546e7a;
}

.hero-right {
    flex: 1;
    background-color: #e8eaf6;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.split-reverse {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

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

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

.split-content {
    flex: 1;
    padding: 60px 80px;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #546e7a;
}

.services-showcase {
    padding: 80px 0;
    background-color: #fafafa;
}

.services-showcase h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #e0e0e0;
}

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

.service-card p {
    font-size: 15px;
    margin: 0 20px 15px;
    color: #546e7a;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin: 15px 20px;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    padding: 12px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s;
}

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

.form-split {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
}

.form-left {
    flex: 1;
    padding: 60px 80px;
    background-color: #ecf0f1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-left p {
    font-size: 17px;
    color: #546e7a;
}

.form-right {
    flex: 1;
    padding: 60px 80px;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group input[readonly] {
    background-color: #ecf0f1;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s;
}

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

.trust-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
    background-color: #ffffff;
}

.trust-content {
    flex: 1;
    padding: 60px 80px;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    color: #546e7a;
}

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

.trust-image {
    flex: 1;
    background-color: #fff3e0;
}

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

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 50px 0 20px;
}

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

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

.footer-col h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-col p {
    color: #bdc3c7;
    margin-bottom: 8px;
}

.footer-disclaimer {
    background-color: #34495e;
    padding: 20px;
    border-radius: 4px;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.page-hero {
    background-color: #ecf0f1;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-hero p {
    font-size: 20px;
    color: #546e7a;
}

.split-content-section {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.split-text {
    flex: 1;
    padding: 60px 80px;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #546e7a;
}

.split-visual {
    flex: 1;
    background-color: #f3e5f5;
}

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

.split-reverse-section {
    display: flex;
    align-items: center;
    padding: 80px 0;
    background-color: #fafafa;
}

.split-visual-left {
    flex: 1;
    background-color: #e1f5fe;
}

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

.split-text-right {
    flex: 1;
    padding: 60px 80px;
}

.split-text-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-text-right p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #546e7a;
}

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

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.value-card {
    background-color: #f8f9fa;
    padding: 40px 30px;
    border-radius: 8px;
    width: calc(50% - 15px);
    min-width: 280px;
}

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

.value-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.split-content-final {
    display: flex;
    align-items: center;
    padding: 80px 0;
    background-color: #fafafa;
}

.split-text-final {
    flex: 1;
    padding: 60px 80px;
}

.split-text-final h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-text-final p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #546e7a;
}

.split-visual-final {
    flex: 1;
    background-color: #fff8e1;
}

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

.service-detail-split {
    display: flex;
    align-items: center;
    padding: 60px 0;
}

.service-detail-left {
    flex: 1;
    background-color: #e8eaf6;
}

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

.service-detail-right {
    flex: 1;
    padding: 60px 80px;
}

.service-detail-right h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c3e50;
}

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

.service-detail-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    color: #546e7a;
}

.feature-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
    font-size: 20px;
}

.service-detail-split-reverse {
    display: flex;
    align-items: center;
    padding: 60px 0;
    background-color: #fafafa;
}

.service-detail-content {
    flex: 1;
    padding: 60px 80px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
}

.service-detail-image {
    flex: 1;
    background-color: #f3e5f5;
}

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

.contact-split {
    display: flex;
    align-items: center;
    padding: 80px 0;
}

.contact-info {
    flex: 1;
    padding: 60px 80px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

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

.contact-block p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    background-color: #e0f2f1;
}

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

.directions-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.directions-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.directions-split {
    display: flex;
    gap: 40px;
    align-items: center;
}

.directions-text {
    flex: 1;
}

.directions-text h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #2c3e50;
}

.directions-text p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.6;
}

.directions-image {
    flex: 1;
}

.directions-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.thanks-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.thanks-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.thanks-content {
    flex: 1;
    padding: 60px 80px;
}

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

.thanks-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
}

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 4px;
    margin: 20px 0;
}

.service-confirmation p {
    margin: 0;
    font-weight: 500;
    color: #2c3e50;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.thanks-visual {
    flex: 1;
    background-color: #e3f2fd;
}

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

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #546e7a;
    line-height: 1.7;
}

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

.legal-page li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #546e7a;
    line-height: 1.7;
}

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

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

    .ad-disclosure {
        max-width: 100%;
        text-align: center;
    }

    .hero-split,
    .split-reverse,
    .split-content-section,
    .split-reverse-section,
    .split-content-final,
    .form-split,
    .trust-split,
    .service-detail-split,
    .service-detail-split-reverse,
    .contact-split,
    .directions-split,
    .thanks-container {
        flex-direction: column;
    }

    .hero-left,
    .split-content,
    .split-text,
    .split-text-right,
    .split-text-final,
    .form-left,
    .form-right,
    .trust-content,
    .service-detail-right,
    .service-detail-content,
    .contact-info,
    .directions-text,
    .thanks-content {
        padding: 40px 20px;
    }

    .service-card {
        width: 100%;
    }

    .value-card {
        width: 100%;
    }

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