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

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

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

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

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

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

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

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

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

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

.hero-image {
    flex: 1;
    background: #dfe6ed;
    position: relative;
    overflow: hidden;
}

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

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

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

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: #2563eb;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2563eb;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #2563eb;
    color: #ffffff;
}

.intro-offset {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1.2;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    line-height: 1.3;
}

.intro-text p {
    font-size: 17px;
    color: #495057;
}

.intro-visual {
    flex: 1;
    background: #dfe6ed;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-cards {
    padding: 100px 5%;
    background: #f8f9fa;
    text-align: center;
}

.services-cards h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.cards-container {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s;
}

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

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

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

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

.service-card .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin: 0 20px 20px;
}

.why-us-alternating {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
}

.why-image {
    flex: 1;
    background: #dfe6ed;
    border-radius: 8px;
    overflow: hidden;
}

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

.why-content {
    flex: 1;
}

.why-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.why-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
}

.testimonials-inline {
    padding: 100px 5%;
    background: #1a1a1a;
    color: #ffffff;
}

.testimonials-inline h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonial-block {
    max-width: 800px;
    margin: 0 auto 40px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.testimonial-block p {
    font-size: 20px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    display: block;
    font-size: 15px;
    color: #94a3b8;
}

.cta-fullwidth {
    padding: 100px 5%;
    background: #2563eb;
    color: #ffffff;
    text-align: center;
}

.cta-fullwidth h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-fullwidth p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-fullwidth .cta-primary {
    background: #ffffff;
    color: #2563eb;
}

.cta-fullwidth .cta-primary:hover {
    background: #f1f5f9;
}

.footer-main {
    background: #1a1a1a;
    color: #e2e8f0;
    padding: 60px 5% 30px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: #94a3b8;
    margin-bottom: 8px;
}

.footer-col a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #334155;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 24px 5%;
    display: none;
    z-index: 9999;
    border-top: 2px solid #2563eb;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #60a5fa;
}

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

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

.cookie-accept {
    background: #2563eb;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #1e40af;
}

.cookie-reject {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #475569;
}

.cookie-reject:hover {
    background: #334155;
    color: #ffffff;
}

.page-header-split {
    display: flex;
    min-height: 400px;
    background: #f8f9fa;
}

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

.header-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.header-content p {
    font-size: 20px;
    color: #495057;
}

.header-image {
    flex: 1;
    background: #dfe6ed;
    overflow: hidden;
}

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

.about-story {
    padding: 100px 5%;
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #495057;
    line-height: 1.8;
}

.values-split {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: flex-start;
    background: #f8f9fa;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.value-item {
    margin-bottom: 32px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

.values-image {
    flex: 1;
    background: #dfe6ed;
    border-radius: 8px;
    overflow: hidden;
    min-height: 450px;
}

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

.team-section {
    padding: 100px 5%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.team-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.8;
}

.approach-alternating {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: center;
    background: #f8f9fa;
}

.approach-image {
    flex: 1;
    background: #dfe6ed;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
}

.cta-centered {
    padding: 100px 5%;
    text-align: center;
}

.cta-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.cta-centered p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #495057;
}

.services-header {
    padding: 80px 5%;
    text-align: center;
    background: #f8f9fa;
}

.services-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.service-detail-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.service-detail-split.reverse {
    flex-direction: row-reverse;
    background: #f8f9fa;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #495057;
    line-height: 1.8;
}

.service-info ul {
    margin: 24px 0 24px 24px;
}

.service-info li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.7;
}

.service-visual {
    flex: 1;
    background: #dfe6ed;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.price-large {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 24px;
}

.service-selection-form {
    padding: 100px 5%;
    background: #f8f9fa;
    max-width: 800px;
    margin: 0 auto;
}

.service-selection-form h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
    color: #1a1a1a;
}

.service-selection-form > p {
    text-align: center;
    font-size: 17px;
    margin-bottom: 40px;
    color: #495057;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    transition: border 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.service-selection-form button[type="submit"] {
    width: 100%;
    margin-top: 16px;
}

.contact-header {
    padding: 80px 5%;
    text-align: center;
    background: #f8f9fa;
}

.contact-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 20px;
    color: #495057;
    max-width: 700px;
    margin: 0 auto;
}

.contact-split {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

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

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

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

.contact-block p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
}

.contact-visual {
    flex: 1;
    background: #dfe6ed;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

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

.thanks-content {
    padding: 150px 5%;
    text-align: center;
    min-height: 500px;
}

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

.thanks-message p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #495057;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-message .cta-primary {
    margin-top: 32px;
}

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

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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

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

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

.legal-content a {
    color: #2563eb;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1e40af;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-offset,
    .why-us-alternating,
    .values-split,
    .approach-alternating,
    .service-detail-split,
    .contact-split,
    .page-header-split {
        flex-direction: column;
    }

    .hero-content h1,
    .header-content h1,
    .services-header h1,
    .contact-header h1 {
        font-size: 36px;
    }

    .intro-text h2,
    .why-content h2,
    .service-info h2 {
        font-size: 28px;
    }

    .services-cards h2,
    .cta-fullwidth h2,
    .cta-centered h2 {
        font-size: 32px;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }

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

    .nav-right {
        gap: 15px;
        font-size: 14px;
    }
}