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

.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.main-nav {
    background-color: #1a1a2e;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
    font-weight: 500;
}

.nav-menu a:hover {
    color: #4a90e2;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 30px 100px;
    color: #ffffff;
    position: relative;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

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

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.intro-section {
    background-color: #f8f9fa;
    padding: 90px 30px;
}

.container-narrow {
    max-width: 720px;
    margin: 0 auto;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a2e;
    font-weight: 700;
}

.intro-section p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.services-overview {
    background-color: #ffffff;
    padding: 100px 0;
}

.section-header-offset {
    margin-bottom: 70px;
    padding-left: 15px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: #1a1a2e;
    font-weight: 800;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 45%;
    background-color: #e9ecef;
}

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

.service-info {
    flex: 1;
    padding: 40px;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a1a2e;
    font-weight: 700;
}

.service-info p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 25px;
}

.price-tag {
    font-size: 24px;
    color: #667eea;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.btn-select {
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select:hover {
    background-color: #5568d3;
    transform: scale(1.02);
}

.process-section {
    background-color: #f1f3f5;
    padding: 100px 30px;
}

.container-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a2e;
    font-weight: 700;
}

.split-text p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 22px;
}

.split-image {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.form-section {
    background: linear-gradient(135deg, #43cea2 0%, #185a9d 100%);
    padding: 100px 30px;
    color: #ffffff;
}

.form-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-section > .container-narrow > p {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.95;
}

.service-form {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
    font-size: 15px;
}

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

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    background-color: #43cea2;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.trust-section {
    background-color: #ffffff;
    padding: 100px 30px;
}

.trust-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    color: #1a1a2e;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
    text-align: center;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 18px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.disclaimer-section {
    background-color: #fff3cd;
    padding: 50px 30px;
}

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

.main-footer {
    background-color: #1a1a2e;
    color: #e0e0e0;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px;
    display: flex;
    gap: 80px;
    justify-content: space-between;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
}

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

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

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

.footer-column ul li a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #4a90e2;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    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;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

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

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

.btn-cookie-accept:hover {
    background-color: #357abd;
}

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

.btn-cookie-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 30px 60px;
    color: #ffffff;
}

.page-header h1 {
    font-size: 44px;
    font-weight: 800;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

.content-section {
    padding: 80px 30px;
    background-color: #ffffff;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    margin-top: 40px;
    color: #1a1a2e;
    font-weight: 700;
}

.content-section h2:first-of-type {
    margin-top: 0;
}

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

.image-break {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #e9ecef;
}

.image-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-section {
    background-color: #f8f9fa;
    padding: 90px 30px;
}

.values-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a2e;
    font-weight: 700;
}

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

.cta-section {
    background-color: #667eea;
    padding: 80px 30px;
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 18px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #ffffff;
    color: #667eea;
}

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

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

.btn-secondary:hover {
    background-color: #ffffff;
    color: #667eea;
}

.services-detail {
    padding: 60px 0;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 22px;
    color: #1a1a2e;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 18px;
}

.service-pricing {
    margin: 30px 0;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
}

.price-amount {
    font-size: 32px;
    color: #667eea;
    font-weight: 800;
}

.btn-service-order {
    background-color: #667eea;
    color: #ffffff;
    padding: 14px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

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

.warranty-section {
    background-color: #f8f9fa;
    padding: 80px 30px;
}

.warranty-section h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 700;
}

.warranty-section p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 18px;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 700;
}

.contact-info-block > p {
    font-size: 17px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a2e;
    font-weight: 700;
}

.contact-detail p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    background-color: #e7f3ff;
    padding: 20px;
    border-radius: 6px;
    margin-top: 40px;
}

.contact-note p {
    font-size: 15px;
    color: #004085;
    line-height: 1.7;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e9ecef;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map-placeholder img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.contact-cta {
    background-color: #f8f9fa;
    padding: 80px 30px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 34px;
    margin-bottom: 18px;
    color: #1a1a2e;
    font-weight: 700;
}

.contact-cta p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 30px;
}

.thanks-section {
    padding: 100px 30px;
    min-height: 60vh;
}

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

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #1a1a2e;
    font-weight: 800;
}

.thanks-content > p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-info {
    background-color: #e7f3ff;
    padding: 25px;
    border-radius: 8px;
    margin: 40px 0;
}

.thanks-info p {
    font-size: 17px;
    color: #004085;
}

.thanks-next {
    text-align: left;
    max-width: 600px;
    margin: 50px auto;
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 8px;
}

.thanks-next h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.thanks-next ol {
    padding-left: 25px;
}

.thanks-next li {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.legal-page {
    padding: 60px 30px 80px;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 35px;
    color: #1a1a2e;
    font-weight: 800;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 45px;
    margin-bottom: 20px;
    color: #1a1a2e;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

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

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

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

.legal-page a {
    color: #4a90e2;
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
    font-style: italic;
    color: #6c757d;
}

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

    .nav-menu {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

    .trust-grid,
    .values-grid,
    .footer-content {
        flex-direction: column;
    }

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

    .contact-layout {
        flex-direction: column;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }

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