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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ddd;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-white);
}

.ad-notice {
    background-color: var(--bg-light);
    color: var(--text-light);
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid var(--border-color);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

.header-right a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.header-right a:hover {
    color: var(--secondary-color);
}

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

.hero-left {
    flex: 1;
    padding: 60px 5%;
    background-color: var(--bg-light);
}

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

.hero-left p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--secondary-color);
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid var(--secondary-color);
    transition: all 0.3s;
}

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

.intro-split {
    display: flex;
    align-items: center;
}

.intro-left {
    flex: 1;
    padding: 60px 5%;
}

.intro-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-left p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.8;
}

.intro-right {
    flex: 1;
    background-color: var(--border-color);
}

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

.services-preview {
    padding: 80px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.services-preview h2 {
    font-size: 40px;
    margin-bottom: 48px;
    color: var(--primary-color);
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: left;
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--border-color);
}

.service-card h3 {
    font-size: 22px;
    padding: 20px 20px 12px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 20px 16px;
    color: var(--text-light);
    font-size: 15px;
}

.service-card .price {
    padding: 0 20px 20px;
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary-color);
}

.trust-split {
    display: flex;
    align-items: center;
}

.trust-left {
    flex: 1;
    padding: 60px 5%;
}

.trust-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.trust-left p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.8;
}

.trust-list {
    list-style: none;
}

.trust-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 16px;
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.trust-right {
    flex: 1;
    background-color: var(--border-color);
}

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

.form-section {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

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

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-form {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

footer {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 5% 20px;
}

.footer-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

.disclaimer {
    border-top: 1px solid #34495e;
    padding-top: 24px;
    margin-bottom: 24px;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 20px;
    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;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

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

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

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

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

.btn-accept {
    background-color: var(--secondary-color);
    color: var(--bg-white);
}

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

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

.btn-reject:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    align-items: center;
}

.hero-content-left {
    flex: 1;
    padding: 60px 5%;
    background-color: var(--bg-light);
}

.hero-content-left h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.hero-content-left p {
    font-size: 18px;
    color: var(--text-light);
}

.hero-content-right {
    flex: 1;
    background-color: var(--border-color);
}

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

.about-story-split {
    display: flex;
    align-items: center;
}

.story-left {
    flex: 1;
    background-color: var(--border-color);
}

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

.story-right {
    flex: 1;
    padding: 60px 5%;
}

.story-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.story-right p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.8;
}

.values-split {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
}

.values-left {
    flex: 1;
    background-color: var(--border-color);
}

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

.values-right {
    flex: 1;
    padding: 60px 5%;
}

.values-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.values-right p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.8;
}

.values-list {
    list-style: none;
}

.values-list li {
    padding: 12px 0 12px 28px;
    position: relative;
    font-size: 16px;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 18px;
}

.team-section {
    padding: 80px 5%;
    background-color: var(--bg-white);
    text-align: center;
}

.team-section h2 {
    font-size: 40px;
    margin-bottom: 48px;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
    text-align: left;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.team-member p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.coverage-split {
    display: flex;
    align-items: center;
}

.coverage-left {
    flex: 1;
    padding: 60px 5%;
}

.coverage-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.coverage-left p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 16px;
    line-height: 1.8;
}

.coverage-right {
    flex: 1;
    background-color: var(--border-color);
}

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

.services-detail {
    background-color: var(--bg-white);
}

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

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background-color: var(--bg-light);
}

.service-detail-left {
    flex: 1;
    background-color: var(--border-color);
}

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

.service-detail-right {
    flex: 1;
    padding: 40px 5%;
}

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

.service-detail-right p {
    font-size: 16px;
    color: var(--text-color);
    margin-bottom: 24px;
    line-height: 1.8;
}

.service-detail-right ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-right ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 15px;
}

.service-detail-right ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 20px;
}

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

.cta-service {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--bg-white);
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.pricing-note {
    padding: 60px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.pricing-note h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pricing-note p {
    font-size: 16px;
    color: var(--text-color);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

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

.contact-left {
    flex: 1;
    padding: 40px 5%;
}

.contact-left h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

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

.contact-item p {
    font-size: 16px;
    color: var(--text-color);
    line-height: 1.8;
}

.contact-item .note {
    margin-top: 12px;
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.contact-right {
    flex: 1;
    background-color: var(--border-color);
}

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

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

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

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

.thanks-section {
    padding: 120px 5%;
    background-color: var(--bg-light);
    text-align: center;
    min-height: 500px;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.thanks-content #serviceConfirmation {
    font-weight: 600;
    color: var(--secondary-color);
    font-size: 19px;
}

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

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

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

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

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

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

.legal-content ul {
    margin: 16px 0 16px 32px;
}

.legal-content ul li {
    margin-bottom: 8px;
    line-height: 1.6;
}

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

.cookie-table th,
.cookie-table td {
    padding: 12px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--primary-color);
}

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

    .header-right {
        gap: 16px;
    }

    .hero-split,
    .intro-split,
    .trust-split,
    .about-story-split,
    .values-split,
    .coverage-split,
    .service-detail-split,
    .contact-info-split,
    .page-hero-split {
        flex-direction: column;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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