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

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

.header {
    background: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

.nav a:hover {
    color: #4CAF50;
}

.ad-notice {
    font-size: 12px;
    color: #999;
    padding: 5px 10px;
    border-left: 1px solid #444;
    margin-left: 10px;
}

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

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

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 500px;
}

.hero-right {
    flex: 1;
    background: #2c3e50;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    background: #4CAF50;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.intro-split {
    display: flex;
    align-items: center;
    padding: 100px 0;
}

.intro-left {
    flex: 1;
    padding: 0 60px;
}

.intro-left h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-left p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #555;
    line-height: 1.8;
}

.intro-right {
    flex: 1;
    background: #e8eaf6;
    overflow: hidden;
}

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

.services-section {
    padding: 100px 0;
    background: #fafafa;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
    min-width: 300px;
}

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

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

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

.service-card p {
    padding: 0 20px;
    margin-bottom: 16px;
    color: #666;
    font-size: 15px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #4CAF50;
    padding: 0 20px;
    margin-bottom: 20px;
}

.btn-select {
    width: calc(100% - 40px);
    margin: 0 20px 20px;
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.form-split {
    display: flex;
    background: #ffffff;
    min-height: 700px;
}

.form-left {
    flex: 1;
    padding: 80px 60px;
    background: #f5f5f5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-left p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.7;
}

.form-left img {
    width: 100%;
    max-width: 500px;
    border-radius: 12px;
    object-fit: cover;
    background: #ddd;
}

.form-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#repairForm {
    width: 100%;
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-submit {
    width: 100%;
    background: #4CAF50;
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.3);
}

.trust-section {
    padding: 100px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
}

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

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

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #4CAF50;
    font-weight: 600;
}

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

.footer {
    background: #0a0a0a;
    color: #ffffff;
    padding: 60px 0 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: #4CAF50;
    font-weight: 600;
}

.footer-col a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-col p {
    color: #999;
    margin-bottom: 8px;
    font-size: 14px;
}

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

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

.disclaimer {
    font-size: 12px;
    color: #666;
    max-width: 800px;
    margin: 20px auto 0;
    line-height: 1.6;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.btn-accept {
    background: #4CAF50;
    color: #ffffff;
}

.btn-accept:hover {
    background: #45a049;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #666;
}

.btn-reject:hover {
    border-color: #999;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background: #f8f9fa;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #4CAF50;
    font-weight: 700;
}

.thanks-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.thanks-service {
    background: #ffffff;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    border-left: 4px solid #4CAF50;
}

.thanks-service strong {
    color: #1a1a1a;
    font-size: 18px;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .form-split {
        flex-direction: column;
    }

    .hero-left,
    .intro-left,
    .form-left,
    .form-right {
        padding: 60px 30px;
    }

    .hero-right,
    .intro-right {
        min-height: 400px;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .trust-item {
        flex: 1 1 100%;
    }

    .nav {
        flex-wrap: wrap;
        gap: 15px;
    }

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

@media (max-width: 640px) {
    .service-card {
        flex: 1 1 100%;
    }

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

    .intro-left h2,
    .services-section h2,
    .trust-section h2 {
        font-size: 28px;
    }
}