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

.ad-notice {
    background-color: #f0f0f0;
    color: #666;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

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

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

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    gap: 60px;
}

.hero-content-left {
    flex: 1;
    padding-right: 40px;
}

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

.hero-content-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    transform: translateY(-20px);
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #e5e7eb;
}

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

.cta-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.info-offset-right {
    display: flex;
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 24px;
    gap: 80px;
    align-items: center;
}

.content-narrow {
    flex: 1.3;
}

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

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

.visual-block {
    flex: 1;
    position: relative;
    transform: translateX(40px);
}

.visual-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e5e7eb;
}

.services-showcase {
    background-color: #f9fafb;
    padding: 80px 24px;
}

.services-showcase h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.services-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 27px);
    min-width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-card.offset-1 {
    margin-top: 0;
}

.service-card.offset-2 {
    margin-top: 30px;
}

.service-card.offset-3 {
    margin-top: 60px;
}

.service-card.offset-4 {
    margin-top: 20px;
}

.service-card.offset-5 {
    margin-top: 50px;
}

.service-card.offset-6 {
    margin-top: 10px;
}

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

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

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    padding: 0 24px 20px;
}

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

.form-section-overlap {
    max-width: 800px;
    margin: -40px auto 80px;
    padding: 60px 40px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    position: relative;
    z-index: 10;
}

.form-section-overlap h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.form-section-overlap p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.repair-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

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

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

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

.btn-submit:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.trust-offset {
    background-color: #1e293b;
    padding: 80px 24px;
    margin: 80px 0;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 38px;
    color: #ffffff;
    margin-bottom: 50px;
    text-align: center;
}

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

.testimonial {
    background-color: #334155;
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 340px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 16px;
}

.testimonial .author {
    font-size: 14px;
    color: #94a3b8;
    font-style: italic;
}

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

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

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

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

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

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

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 24px;
    background-color: #1f2937;
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.6;
    color: #9ca3af;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 13px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    padding: 20px 24px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 200;
    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: 32px;
}

.cookie-content p {
    color: #e5e7eb;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.btn-accept:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

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

.btn-reject:hover {
    background-color: #374151;
    transform: translateY(-2px);
}

.about-hero {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 0 24px;
    text-align: center;
}

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

.about-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
}

.about-story-offset {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    gap: 60px;
    align-items: center;
}

.story-image {
    flex: 1;
    transform: translateX(-30px);
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e5e7eb;
}

.story-text {
    flex: 1.2;
}

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

.story-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

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

.values-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2563eb;
}

.value-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.team-offset {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 24px;
    gap: 60px;
    align-items: center;
}

.team-content {
    flex: 1.2;
}

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

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

.team-visual {
    flex: 1;
    transform: translateY(20px);
}

.team-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e5e7eb;
}

.process-section {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 24px;
}

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

.process-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.process-step {
    background-color: #f9fafb;
    padding: 32px 24px;
    border-radius: 12px;
    flex: 1;
    min-width: 200px;
    max-width: 220px;
    text-align: center;
}

.step-number {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.process-step p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
}

.cta-simple {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
    text-align: center;
}

.cta-simple h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-simple p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    background-color: #4b5563;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background-color: #374151;
    transform: translateY(-2px);
}

.services-header {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 0 24px;
    text-align: center;
}

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

.services-header p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 24px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-detail.offset-left .service-info {
    order: 1;
}

.service-detail.offset-left .service-image {
    order: 2;
}

.service-detail.offset-right .service-image {
    order: 1;
}

.service-detail.offset-right .service-info {
    order: 2;
}

.service-info {
    flex: 1.2;
}

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

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

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

.service-info ul {
    list-style: none;
    margin-bottom: 28px;
}

.service-info ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: 700;
}

.service-image {
    flex: 1;
}

.service-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e5e7eb;
}

.btn-inline {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-inline:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.pricing-note {
    max-width: 900px;
    margin: 60px auto;
    padding: 40px;
    background-color: #f9fafb;
    border-radius: 12px;
}

.pricing-note h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.pricing-note p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.guarantee-section {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 24px;
}

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

.guarantee-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.contact-header {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 0 24px;
    text-align: center;
}

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

.contact-header p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-layout {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 24px;
    display: flex;
    gap: 60px;
}

.contact-info-main {
    flex: 1;
}

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

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

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

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-note {
    flex: 1;
    background-color: #f9fafb;
    padding: 32px;
    border-radius: 12px;
}

.contact-note h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.contact-faq {
    max-width: 1100px;
    margin: 80px auto;
    padding: 0 24px;
}

.contact-faq h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.faq-item {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

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

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-cta {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 24px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.thanks-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 24px;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 40px;
}

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

.thanks-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2563eb;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: #4b5563;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #374151;
    transform: translateY(-2px);
}

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

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

.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: #2563eb;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
}

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

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

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

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

.legal-page a:hover {
    color: #1d4ed8;
}

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

    .hero-content-left {
        padding-right: 0;
    }

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

    .hero-image-offset {
        transform: translateY(0);
    }

    .info-offset-right,
    .about-story-offset,
    .team-offset,
    .service-detail,
    .contact-layout {
        flex-direction: column;
        gap: 40px;
    }

    .visual-block,
    .story-image {
        transform: translateX(0);
    }

    .team-visual {
        transform: translateY(0);
    }

    .service-detail.offset-left .service-info,
    .service-detail.offset-right .service-info,
    .service-detail.offset-left .service-image,
    .service-detail.offset-right .service-image {
        order: initial;
    }

    .services-asymmetric {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        width: 100%;
        max-width: 400px;
        margin-top: 0 !important;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

    .form-section-overlap {
        padding: 40px 24px;
        margin: 0 24px 60px;
    }
}