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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
}

.ad-notice {
    font-size: 11px;
    color: #6b7280;
    background: #f3f4f6;
    padding: 4px 12px;
    border-radius: 4px;
}

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

.main-nav a {
    color: #374151;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

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

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

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    padding: 60px 40px;
}

.hero-text-wrapper {
    max-width: 500px;
}

.hero-text-wrapper h1 {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #111827;
}

.hero-text-wrapper p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 32px;
}

.hero-right {
    flex: 1;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

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

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

.cta-secondary {
    display: inline-block;
    background: #6b7280;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.cta-secondary:hover {
    background: #4b5563;
}

.intro-section {
    padding: 80px 20px;
    background: #ffffff;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

.intro-section p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
}

.services-grid-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #111827;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.2s;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

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

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

.price-tag {
    font-size: 18px;
    font-weight: 700;
    color: #2563eb;
    margin: 0 20px 16px;
}

.service-link {
    display: block;
    text-align: center;
    padding: 12px;
    background: #f3f4f6;
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

.service-link:hover {
    background: #e5e7eb;
}

.split-content-left,
.split-content-right {
    display: flex;
    min-height: 500px;
}

.split-content-left {
    background: #ffffff;
}

.split-content-right {
    background: #f9fafb;
}

.split-image-side {
    flex: 1;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

.split-text-side {
    flex: 1;
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text-side h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
}

.split-text-side p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
}

.inline-cta {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.2s;
}

.inline-cta:hover {
    color: #1d4ed8;
}

.testimonial-section {
    padding: 80px 20px;
    background: #1f2937;
}

.testimonial {
    text-align: center;
    color: #ffffff;
}

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

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    color: #d1d5db;
}

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

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

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
    color: #111827;
}

.form-wrapper > p {
    text-align: center;
    color: #6b7280;
    margin-bottom: 32px;
}

.contact-form {
    background: #f9fafb;
    padding: 40px;
    border-radius: 8px;
}

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

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

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

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

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

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

.disclaimer-section {
    padding: 60px 20px;
    background: #fef3c7;
}

.disclaimer-text {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
    text-align: center;
}

.site-footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 20px 30px;
}

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

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

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

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

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

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

.footer-col ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -4px 6px rgba(0,0,0,0.1);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

.btn-accept {
    background: #10b981;
    color: #ffffff;
}

.btn-accept:hover {
    background: #059669;
}

.btn-reject {
    background: #6b7280;
    color: #ffffff;
}

.btn-reject:hover {
    background: #4b5563;
}

.page-hero {
    padding: 80px 20px;
    background: #f9fafb;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111827;
}

.page-hero p {
    font-size: 18px;
    color: #6b7280;
}

.values-section {
    padding: 80px 20px;
    background: #ffffff;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-item {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111827;
}

.value-item p {
    color: #6b7280;
    font-size: 16px;
}

.team-philosophy {
    padding: 80px 20px;
    background: #f9fafb;
}

.team-philosophy h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
}

.team-philosophy p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
}

.cta-section {
    padding: 80px 20px;
    background: #2563eb;
    text-align: center;
}

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

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

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

.cta-section .cta-primary:hover {
    background: #f3f4f6;
}

.service-detail-section {
    padding: 60px 0;
}

.service-detail-section.alt-layout {
    background: #f9fafb;
}

.split-layout {
    display: flex;
    min-height: 550px;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.service-features {
    list-style: none;
    margin: 20px 0;
}

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    color: #4b5563;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

.price-display {
    margin: 24px 0;
    padding: 20px;
    background: #f0f9ff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 600;
}

.price-amount {
    font-size: 28px;
    color: #2563eb;
    font-weight: 800;
}

.price-note {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}

.custom-service-section {
    padding: 80px 20px;
    background: #1f2937;
    text-align: center;
}

.custom-service-section h2 {
    font-size: 32px;
    color: #ffffff;
    margin-bottom: 16px;
}

.custom-service-section p {
    font-size: 17px;
    color: #d1d5db;
    margin-bottom: 32px;
}

.contact-info-section {
    padding: 60px 20px;
    background: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-detail-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.contact-detail-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2563eb;
}

.contact-detail-card p {
    color: #4b5563;
    font-size: 16px;
}

.contact-approach {
    padding: 60px 20px;
    background: #f9fafb;
}

.contact-approach h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
}

.contact-approach p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
}

.thanks-section {
    padding: 120px 20px;
    background: #f9fafb;
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #111827;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 16px;
}

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

.legal-page {
    padding: 60px 20px;
    background: #ffffff;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #111827;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #111827;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #374151;
}

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

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

.legal-page ul li {
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-page a {
    color: #2563eb;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

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

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

    .split-content-left,
    .split-content-right,
    .split-layout {
        flex-direction: column;
    }

    .split-layout.reverse {
        flex-direction: column;
    }

    .main-nav {
        gap: 15px;
    }

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

    .section-title {
        font-size: 28px;
    }
}