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

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

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

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

.cookie-banner.active {
    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: 250px;
}

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

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

.btn-primary {
    background: #2563eb;
    color: white;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.nav a {
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

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

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

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

.hero-subtitle {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-block;
    background: #2563eb;
    color: white;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.hero-right {
    flex: 1;
    background-color: #e5e7eb;
}

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

.info-bar {
    display: flex;
    justify-content: space-around;
    background: #1e293b;
    color: white;
    padding: 40px 20px;
}

.info-item {
    text-align: center;
}

.info-number {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
}

.info-label {
    font-size: 14px;
    color: #cbd5e1;
}

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

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

.benefit-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    background: #f9fafb;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

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

.benefit-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #1a1a1a;
}

.benefit-card p {
    padding: 0 20px 20px;
    color: #4b5563;
}

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

.services-section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-item {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-header h3 {
    font-size: 24px;
    color: #1a1a1a;
}

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

.service-item p {
    color: #4b5563;
    margin-bottom: 20px;
}

.btn-select-service {
    background: #2563eb;
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.contact-form-section.hidden {
    display: none;
}

.contact-form-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

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

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
}

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

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

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

.technical-section {
    padding: 80px 20px;
    background: #1e293b;
    color: white;
}

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

.technical-text {
    flex: 1;
}

.technical-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
}

.technical-text p {
    margin-bottom: 20px;
    color: #cbd5e1;
    font-size: 16px;
}

.technical-image {
    flex: 1;
    background-color: #334155;
}

.technical-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.testimonial-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    border-top: 3px solid #2563eb;
}

.testimonial-text {
    font-style: italic;
    color: #4b5563;
    margin-bottom: 15px;
    font-size: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 14px;
}

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

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

.footer {
    background: #111827;
    color: white;
    padding: 60px 20px 20px;
}

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

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

.footer-column h4 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-column p,
.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

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

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

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

    .hero-left {
        padding: 40px 20px;
    }

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

    .info-bar {
        flex-direction: column;
        gap: 30px;
    }

    .technical-split {
        flex-direction: column;
    }

    .nav {
        flex-direction: column;
        gap: 15px;
    }
}