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

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

.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.nav-links a:hover {
    color: #0066cc;
}

.ad-label {
    font-size: 11px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 8px;
    border: 1px solid #e0e0e0;
    border-radius: 3px;
}

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

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

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

.hero-left p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    color: #e0e0e0;
}

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

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #0066cc;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn-primary:hover {
    background-color: #0052a3;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    border: 2px solid #0066cc;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 16px;
}

.btn-secondary:hover {
    background-color: #0066cc;
    color: #fff;
}

.features-split {
    padding: 80px 0;
}

.feature-item {
    display: flex;
    min-height: 400px;
    margin-bottom: 60px;
}

.feature-item.reverse {
    flex-direction: row-reverse;
}

.feature-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #f9f9f9;
}

.feature-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.feature-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.feature-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.services-preview {
    padding: 80px 0;
    background-color: #fff;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.services-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    margin: 0 20px 15px;
    color: #666;
    line-height: 1.5;
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    margin: 0 20px 20px;
}

.cta-center {
    text-align: center;
}

.form-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.form-split {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    padding: 0 20px;
}

.form-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-left p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
}

.form-benefits {
    list-style: none;
    padding-left: 0;
}

.form-benefits li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
}

.form-benefits li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 18px;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    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: #0066cc;
}

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

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

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

.trust-item {
    text-align: center;
    min-width: 200px;
}

.trust-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 10px;
}

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

.disclaimer-section {
    padding: 40px 0;
    background-color: #f0f0f0;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #666;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

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

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

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

.footer-col ul li a:hover {
    color: #0066cc;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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: 20px;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #0066cc;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background-color: #0066cc;
    color: #fff;
}

.btn-cookie-accept:hover {
    background-color: #0052a3;
}

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

.btn-cookie-reject:hover {
    background-color: #333;
}

.page-header {
    padding: 80px 0 40px;
    background-color: #f9f9f9;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    color: #666;
}

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

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

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

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

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.service-features li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-size: 24px;
    line-height: 1;
}

.service-price {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #0066cc;
}

.price-label {
    font-size: 14px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-right: 10px;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #0066cc;
}

.service-detail-image {
    flex: 1;
    max-width: 500px;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.cta-section {
    padding: 80px 0;
    background-color: #0066cc;
    text-align: center;
    color: #fff;
}

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

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.about-story {
    padding: 60px 0;
}

.about-split {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.about-split.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555;
}

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
}

.about-values {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.about-values h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
}

.about-process {
    padding: 80px 0;
}

.about-process h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.process-steps {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    align-items: flex-start;
}

.process-step.reverse {
    flex-direction: row-reverse;
    text-align: right;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #0066cc;
    min-width: 80px;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.step-content p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
}

.about-team {
    padding: 60px 0;
}

.contact-info {
    padding: 60px 0;
}

.contact-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 40px;
}

.contact-block h2 {
    font-size: 32px;
    margin-bottom: 25px;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
    color: #0066cc;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.contact-image {
    flex: 1;
    max-width: 500px;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    background-color: #f0f0f0;
}

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

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

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

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555;
}

.thanks-service {
    margin-bottom: 30px;
}

.thanks-service p {
    font-size: 16px;
    color: #0066cc;
    font-weight: 600;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-steps {
    list-style: none;
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.thanks-steps li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: #555;
}

.thanks-steps li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: 700;
    font-size: 18px;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

.legal-intro {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    color: #555;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #0066cc;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

.legal-page ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.legal-updated {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #999;
    font-style: italic;
}

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

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

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

    .hero-right {
        min-height: 300px;
    }

    .feature-item,
    .feature-item.reverse,
    .service-detail,
    .service-detail.reverse,
    .about-split,
    .about-split.reverse,
    .contact-split,
    .form-split {
        flex-direction: column;
    }

    .feature-content {
        padding: 30px;
    }

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

    .service-card {
        min-width: auto;
    }

    .nav {
        flex-direction: column;
        align-items: flex-start;
    }

    .trust-grid {
        flex-direction: column;
        gap: 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .process-step,
    .process-step.reverse {
        flex-direction: column;
        text-align: left;
    }

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