* {
    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.6;
    color: #333;
    background: #fff;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

a:hover {
    text-decoration: underline;
}

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

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: #93c5fd;
}

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

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

.btn-accept {
    background: #22c55e;
    color: #fff;
}

.btn-accept:hover {
    background: #16a34a;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.header-right a {
    color: #4b5563;
    font-weight: 500;
    transition: color 0.3s;
}

.header-right a:hover,
.header-right a.active {
    color: #1e40af;
    text-decoration: none;
}

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

.hero-visual {
    flex: 1;
    overflow: hidden;
}

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

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

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

.hero-text p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #6b7280;
}

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

.cta-primary:hover {
    background: #1e3a8a;
    text-decoration: none;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background: #fff;
    color: #1e40af;
    font-weight: 600;
    border: 2px solid #1e40af;
    border-radius: 6px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none;
}

.cta-secondary:hover {
    background: #1e40af;
    color: #fff;
    text-decoration: none;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    align-items: center;
}

.intro-block {
    flex: 1.2;
}

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

.intro-block p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.7;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 8px;
}

.services-section {
    padding: 100px 40px;
    background: #f9fafb;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

.section-header-centered p {
    font-size: 20px;
    color: #6b7280;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

.service-content p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 16px;
    flex: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #1e40af;
    margin: 16px 0;
}

.btn-select-service {
    padding: 12px 24px;
    background: #1e40af;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

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

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

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

.why-content h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #111827;
}

.benefits-list {
    list-style: none;
    margin-bottom: 32px;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 18px;
    color: #4b5563;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
}

.why-visual {
    flex: 1;
    overflow: hidden;
}

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

.testimonials-block {
    padding: 100px 40px;
    background: #1f2937;
    color: #fff;
}

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

.testimonials-flex {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 32px;
    background: #374151;
    border-radius: 8px;
}

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

.testimonial-author {
    font-size: 14px;
    color: #9ca3af;
}

.order-form-section {
    padding: 100px 40px;
}

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

.form-wrapper h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
}

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

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

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    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;
}

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

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-weight: 400;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

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

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

.delivery-info {
    padding: 80px 40px;
    background: #f9fafb;
}

.info-split {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.info-item {
    flex: 1;
    min-width: 280px;
}

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

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

.footer-main {
    background: #111827;
    color: #9ca3af;
    padding: 60px 40px 20px;
}

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

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

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

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

.footer-col a {
    display: block;
    color: #9ca3af;
    margin-bottom: 8px;
    font-size: 14px;
}

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

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

.footer-bottom p {
    font-size: 14px;
}

.page-hero {
    padding: 100px 40px 60px;
    text-align: center;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
}

.about-story {
    padding: 100px 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.story-content {
    flex: 1.3;
}

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

.story-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-image {
    flex: 1;
}

.story-image img {
    border-radius: 8px;
}

.values-section {
    padding: 80px 40px;
    background: #f9fafb;
}

.values-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #111827;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
}

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

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

.process-section {
    padding: 100px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #111827;
}

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 240px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #1e40af;
    margin-bottom: 16px;
}

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

.step p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.7;
}

.team-brief {
    padding: 80px 40px;
    background: #f9fafb;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.cta-about {
    padding: 80px 40px;
    text-align: center;
}

.cta-about h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #111827;
}

.cta-about p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.services-detailed {
    padding: 60px 40px;
}

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

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

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    border-radius: 8px;
}

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

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
}

.service-detail-content p {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #6b7280;
}

.service-detail-content ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1e40af;
    font-weight: 700;
}

.price-highlight {
    font-size: 32px;
    font-weight: 700;
    color: #1e40af;
    margin: 20px 0;
}

.bulk-pricing {
    padding: 80px 40px;
    background: #f9fafb;
}

.bulk-pricing h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 40px;
    color: #111827;
}

.pricing-table {
    max-width: 700px;
    margin: 0 auto 24px;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background: #fff;
    margin-bottom: 12px;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.pricing-row .qty {
    font-weight: 600;
    color: #111827;
}

.pricing-row .discount {
    color: #1e40af;
    font-weight: 700;
}

.pricing-note {
    text-align: center;
    color: #6b7280;
    font-size: 14px;
    max-width: 700px;
    margin: 0 auto;
}

.cta-services {
    padding: 80px 40px;
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #111827;
}

.cta-services p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.contact-info-section {
    padding: 80px 40px;
}

.contact-columns {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 280px;
}

.contact-info-block h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e40af;
}

.contact-info-block p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.contact-info-block a {
    color: #1e40af;
    font-weight: 600;
}

.contact-info-block .note {
    margin-top: 12px;
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
}

.contact-map {
    padding: 80px 40px;
    background: #f9fafb;
}

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

.contact-map > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #6b7280;
    font-size: 16px;
}

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
}

.contact-cta {
    padding: 80px 40px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #111827;
}

.contact-cta p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
}

.thanks-page {
    padding: 120px 40px;
    min-height: 500px;
}

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

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

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

.service-confirmation {
    font-weight: 600;
    color: #1e40af;
    font-size: 22px;
}

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

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

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

.legal-page h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: #1e40af;
}

.legal-page h3 {
    font-size: 22px;
    margin: 32px 0 12px;
    color: #111827;
}

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

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

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

.legal-page strong {
    color: #111827;
}

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

    .header-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-split,
    .why-us-split {
        flex-direction: column;
    }

    .hero-text,
    .why-content {
        padding: 40px 20px;
    }

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

    .intro-asymmetric,
    .about-story {
        flex-direction: column;
    }

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

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .testimonials-flex {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .info-split,
    .contact-columns {
        flex-direction: column;
    }

    .process-steps {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .thanks-actions .cta-primary,
    .thanks-actions .cta-secondary {
        width: 100%;
    }
}
