* {
    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: #ffffff;
}

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e8ecef;
}

.nav-left .brand {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    text-decoration: none;
}

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

.nav-right a {
    color: #5a6c7d;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #2c3e50;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7f9fb;
}

.hero-content h1 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a2730;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #ffffff;
    color: #3498db;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    border: 2px solid #3498db;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.cta-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.cta-tertiary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #5a6c7d;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: color 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.cta-tertiary:hover {
    color: #2c3e50;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    background: #ffffff;
}

.intro-text {
    flex: 1.4;
    padding-right: 40px;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a2730;
}

.intro-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.intro-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

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

.section-title {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a2730;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 12px;
    color: #1a2730;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
    margin: 0 20px 16px;
}

.service-card .price {
    font-size: 28px;
    font-weight: 600;
    color: #27ae60;
    margin: 0 20px 16px;
}

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

.service-card .select-service:hover {
    background: #2980b9;
}

.service-card.selected {
    border: 3px solid #3498db;
}

.form-section {
    padding: 80px 40px;
    background: #ffffff;
}

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

.form-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a2730;
}

.form-container > p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.selected-service-display {
    padding: 20px;
    background: #e8f4f8;
    border-left: 4px solid #3498db;
    margin-bottom: 24px;
    font-size: 16px;
    color: #2c3e50;
}

.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 #d1d8dd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

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

.cta-submit:hover {
    background: #229954;
}

.cta-submit:disabled {
    background: #95a5a6;
    cursor: not-allowed;
}

.trust-elements {
    padding: 80px 40px;
    background: #f7f9fb;
}

.trust-elements h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a2730;
}

.trust-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a2730;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

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

.footer-col {
    flex: 1;
}

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

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

.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: #ffffff;
}

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

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

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

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

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

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #5a6c7d;
}

.cookie-content a {
    color: #3498db;
}

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

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

.cookie-accept {
    background: #27ae60;
    color: #ffffff;
}

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

.cookie-reject {
    background: #ecf0f1;
    color: #2c3e50;
}

.cookie-reject:hover {
    background: #d5dbdb;
}

.page-header {
    padding: 80px 40px 60px;
    background: #f7f9fb;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    color: #1a2730;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.content-split {
    display: flex;
    gap: 60px;
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.content-main {
    flex: 2;
}

.content-main h2 {
    font-size: 28px;
    margin: 40px 0 16px 0;
    color: #1a2730;
}

.content-main h2:first-child {
    margin-top: 0;
}

.content-main p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.content-sidebar {
    flex: 1;
}

.sidebar-box {
    background: #f7f9fb;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar-box h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a2730;
}

.sidebar-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

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

.value-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: #5a6c7d;
}

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

.services-detail {
    padding: 40px 40px 80px;
    background: #ffffff;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    align-items: center;
}

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

.service-detail-content {
    flex: 1.2;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a2730;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.service-detail-content ul {
    list-style: none;
    margin-top: 16px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
    color: #5a6c7d;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 600;
}

.service-price-large {
    font-size: 36px;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.cta-section {
    text-align: center;
    padding: 80px 40px;
    background: #f7f9fb;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a2730;
}

.cta-section p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a2730;
}

.contact-info > p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
    margin-bottom: 30px;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a2730;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

.email-display {
    color: #2c3e50;
    font-weight: 500;
}

.contact-note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 8px;
}

.contact-visual {
    flex: 1;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.contact-approach {
    padding: 80px 40px;
    background: #f7f9fb;
}

.contact-approach h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a2730;
}

.approach-steps {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.approach-step {
    flex: 1;
    text-align: center;
}

.approach-step h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3498db;
}

.approach-step p {
    font-size: 16px;
    line-height: 1.6;
    color: #5a6c7d;
}

.thanks-container {
    padding: 80px 40px;
    min-height: 500px;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.thanks-content > p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 40px;
}

.thanks-service-info {
    background: #e8f4f8;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 50px;
    font-size: 18px;
    color: #2c3e50;
}

.thanks-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a2730;
}

.next-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.next-step {
    flex: 1;
    background: #f7f9fb;
    padding: 24px;
    border-radius: 8px;
}

.next-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #3498db;
}

.next-step p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a6c7d;
}

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

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a2730;
}

.legal-page h2 {
    font-size: 26px;
    margin: 36px 0 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 16px;
}

.legal-update {
    font-size: 14px;
    color: #95a5a6;
    margin-top: 40px;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-asymmetric,
    .contact-layout,
    .service-detail-card,
    .content-split {
        flex-direction: column;
    }

    .service-cards {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .trust-grid,
    .approach-steps,
    .next-steps,
    .footer-content {
        flex-direction: column;
    }

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

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