* {
    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-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    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;
    margin: 0;
}

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

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

.btn-accept {
    background: #28a745;
    color: white;
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.9;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.logo-section .brand {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
}

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

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

.nav-menu a:hover {
    color: #2563eb;
}

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

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

.hero-left h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-right {
    flex: 1;
    background: #e9ecef;
    position: relative;
    overflow: hidden;
}

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

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

.cta-primary:hover {
    background: #1d4ed8;
}

.problem-split,
.insight-split,
.process-split,
.testimonial-split {
    display: flex;
    min-height: 500px;
}

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

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

.content-block h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-block p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.insight-split .content-block:first-child {
    background: #f8f9fa;
}

.services-section {
    padding: 80px 60px;
    background: white;
}

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

.service-split {
    display: flex;
    margin-bottom: 48px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.service-content {
    flex: 1;
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.service-content h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.service-visual {
    flex: 1;
    background: #e9ecef;
    position: relative;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
    display: block;
}

.select-service {
    padding: 14px 28px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background: #1d4ed8;
}

.testimonial-split {
    background: #1a1a1a;
    color: white;
    padding: 80px 60px;
}

.testimonial-content {
    flex: 1;
    padding: 40px;
}

.testimonial-content blockquote {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-content cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    color: #adb5bd;
    font-size: 16px;
}

.form-split {
    display: flex;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.form-intro h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-intro p {
    font-size: 17px;
    color: #495057;
    line-height: 1.7;
}

.form-container {
    flex: 1;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.selected-service {
    background: #e7f3ff;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-weight: 600;
    color: #2563eb;
    display: none;
}

.selected-service.active {
    display: block;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #2563eb;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #1d4ed8;
}

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

.process-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #495057;
}

.process-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.process-split .content-block:first-child {
    background: white;
}

.footer-split {
    display: flex;
    padding: 60px;
    background: #1a1a1a;
    color: white;
}

.footer-left,
.footer-right {
    flex: 1;
}

.footer-left h4 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2563eb;
}

.footer-left p {
    color: #adb5bd;
    font-size: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

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

.footer-links a:hover {
    color: white;
}

.footer-note {
    color: #6c757d;
    font-size: 14px;
}

.disclaimer-section {
    padding: 40px 60px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.disclaimer-section p {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

.about-hero {
    padding: 100px 60px;
    background: #f8f9fa;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-hero p {
    font-size: 20px;
    color: #495057;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    padding: 80px 60px;
}

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

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-text p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 16px;
    line-height: 1.7;
}

.about-visual {
    flex: 1;
    background: #e9ecef;
}

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

.services-hero {
    padding: 100px 60px;
    background: #1a1a1a;
    color: white;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.services-hero p {
    font-size: 20px;
    color: #adb5bd;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero {
    padding: 100px 60px;
    background: #f8f9fa;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-split {
    display: flex;
    padding: 60px;
}

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

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

.info-item {
    margin-bottom: 28px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.info-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background: #e9ecef;
    min-height: 400px;
}

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

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

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #495057;
}

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

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

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

.thanks-page {
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: #f8f9fa;
}

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

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

.thanks-content p {
    font-size: 20px;
    color: #495057;
    margin-bottom: 32px;
    line-height: 1.6;
}

.thanks-content .selected-service-info {
    background: white;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    border: 2px solid #e9ecef;
}

.thanks-content .selected-service-info strong {
    color: #2563eb;
}

.thanks-content a {
    display: inline-block;
    padding: 16px 32px;
    background: #2563eb;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-content a:hover {
    background: #1d4ed8;
}

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

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

    .hero-split,
    .problem-split,
    .insight-split,
    .process-split,
    .testimonial-split,
    .form-split,
    .service-split,
    .about-content,
    .contact-split,
    .footer-split {
        flex-direction: column;
    }

    .hero-left,
    .content-block,
    .service-content,
    .form-intro,
    .about-text,
    .contact-info {
        padding: 40px 20px;
    }

    .hero-right,
    .service-visual {
        min-height: 300px;
    }
}