* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

.cookie-content a {
    color: #3498db;
    text-decoration: none;
}

.cookie-content a:hover {
    text-decoration: underline;
}

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

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

.btn-cookie {
    background-color: #27ae60;
    color: #ffffff;
}

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

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

.btn-cookie-alt:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #3498db;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.hero-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
    color: #555555;
}

.hero-image {
    flex: 1;
    background-color: #d0d0d0;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.intro-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.intro-left {
    flex: 1;
    background-color: #e8e8e8;
}

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

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.services-showcase {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.services-header p {
    font-size: 18px;
    color: #666666;
}

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

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

.service-text {
    flex: 1;
}

.service-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.service-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #555555;
}

.service-price {
    font-size: 32px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
}

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

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

.btn-select {
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.trust-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

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

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

.trust-grid {
    display: flex;
    gap: 40px;
}

.trust-item {
    flex: 1;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.form-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.form-container-split {
    display: flex;
    gap: 60px;
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
}

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

.form-visual h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.form-visual p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555555;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-item {
    font-size: 16px;
    color: #27ae60;
    font-weight: 500;
}

.form-wrapper {
    flex: 1;
}

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

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

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

.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 ease;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
}

.service-notice {
    margin-top: 16px;
    padding: 12px;
    background-color: #e8f5e9;
    border-left: 4px solid #27ae60;
    font-size: 14px;
    color: #2c3e50;
}

.testimonial-section {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 40px;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-wrapper h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
}

.testimonials {
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: #95a5a6;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 40px;
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
}

.disclaimer-content h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #856404;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #856404;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

.footer-col a:hover {
    color: #3498db;
}

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

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

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

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

.page-content {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555555;
}

.page-content ul,
.page-content ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #555555;
}

.page-content a {
    color: #3498db;
    text-decoration: none;
}

.page-content a:hover {
    text-decoration: underline;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.contact-info h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 12px;
    color: #555555;
}

.contact-info strong {
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #555555;
}

.service-card .price {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
}

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

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

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555555;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #555555;
}

.thanks-container .btn-primary {
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-section,
    .service-item,
    .form-container-split,
    .testimonials,
    .footer-content,
    .about-split {
        flex-direction: column;
    }

    .service-item.reverse {
        flex-direction: column;
    }

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

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

    .services-header h2 {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid #e0e0e0;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .ad-notice {
        display: none;
    }

    .hero-content,
    .intro-section,
    .services-showcase,
    .form-section,
    .page-content {
        padding: 40px 20px;
    }

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

    .form-container-split {
        padding: 30px 20px;
    }

    .contact-form {
        padding: 20px;
    }
}
