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

.ad-notice {
    background: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #fcd34d;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.header-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a365d;
}

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

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

.header-right a:hover {
    color: #2c5282;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 540px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s, box-shadow 0.3s;
    width: fit-content;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

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

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

.intro-left {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.intro-right {
    flex: 1;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7fafc;
}

.intro-right h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a202c;
}

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

.services-grid {
    padding: 96px 48px;
    background: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 64px;
}

.services-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a202c;
}

.services-header p {
    font-size: 20px;
    color: #718096;
}

.service-card-split {
    display: flex;
    margin-bottom: 48px;
    min-height: 380px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}

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

.service-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-width: 50%;
}

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

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3748;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 24px;
}

.select-service {
    padding: 14px 32px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    width: fit-content;
}

.select-service:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.testimonial-split {
    display: flex;
    min-height: 400px;
}

.testimonial-content {
    flex: 1;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #1a202c;
    color: #ffffff;
}

.testimonial-content blockquote {
    font-size: 28px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-content cite {
    font-size: 18px;
    font-style: normal;
    opacity: 0.8;
}

.testimonial-visual {
    flex: 1;
}

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

.form-container {
    flex: 1;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7fafc;
}

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

.form-container p {
    font-size: 18px;
    color: #718096;
    margin-bottom: 32px;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 520px;
}

.main-form input,
.main-form select,
.main-form textarea {
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.main-form input:focus,
.main-form select:focus,
.main-form textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    padding: 16px 40px;
    background: #667eea;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.form-visual {
    flex: 1;
}

.footer-modern {
    background: #1a202c;
    color: #e2e8f0;
    padding: 64px 48px 32px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

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

.footer-col p,
.footer-col a {
    color: #cbd5e0;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
}

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 32px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 12px;
    color: #a0aec0;
    font-size: 14px;
}

.disclaimer {
    font-style: italic;
    opacity: 0.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    display: none;
    z-index: 1000;
}

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

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

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

.cookie-content a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #48bb78;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #38a169;
}

.cookie-reject {
    background: #e2e8f0;
    color: #2d3748;
}

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

.about-hero {
    padding: 120px 48px 80px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.about-hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
}

.about-hero p {
    font-size: 22px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.95;
}

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

.about-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.about-content {
    flex: 1;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7fafc;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

.contact-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 48px;
}

.contact-split {
    display: flex;
    gap: 64px;
    margin-top: 48px;
}

.contact-info {
    flex: 1;
}

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

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2d3748;
}

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

.contact-map {
    flex: 1;
    background: #e2e8f0;
    border-radius: 12px;
    min-height: 400px;
}

.thanks-container {
    max-width: 800px;
    margin: 120px auto;
    padding: 80px 48px;
    text-align: center;
    background: #f7fafc;
    border-radius: 12px;
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a202c;
}

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

.thanks-container a {
    display: inline-block;
    padding: 16px 40px;
    background: #667eea;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background 0.3s, transform 0.2s;
}

.thanks-container a:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.legal-container {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 48px;
}

.legal-container h1 {
    font-size: 48px;
    margin-bottom: 32px;
    color: #1a202c;
}

.legal-container h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #2d3748;
}

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

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.7;
}

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

    .header-right {
        gap: 16px;
    }

    .hero-dual,
    .split-intro,
    .service-card-split,
    .testimonial-split,
    .form-section-split,
    .about-split,
    .contact-split {
        flex-direction: column;
    }

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

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

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

    .footer-columns {
        flex-direction: column;
    }
}
