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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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;
    min-width: 300px;
}

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

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

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

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

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

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

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
}

.ad-label {
    font-size: 11px;
    color: #666;
    background-color: #f0f0f0;
    padding: 4px 10px;
    border-radius: 3px;
}

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

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

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

.hero-subtitle {
    font-size: 22px;
    color: #0066cc;
    margin-bottom: 20px;
    font-weight: 500;
}

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

.hero-right {
    flex: 1;
    background-color: #e8eef3;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.intro-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

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

.intro-content p {
    font-size: 19px;
    color: #555;
    line-height: 1.8;
}

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

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

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 450px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    transition: transform 0.3s ease;
}

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

.service-image-wrapper {
    flex: 0 0 40%;
    background-color: #e8eef3;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    flex: 1;
}

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

.btn-service {
    padding: 12px 28px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.form-section {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

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

.form-left {
    flex: 1;
}

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

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

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #2c3e50;
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

.why-content h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

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

.why-item h3 {
    font-size: 24px;
    color: #0066cc;
    margin-bottom: 15px;
}

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

.disclaimer-section {
    background-color: #f8f9fa;
    padding: 60px 40px;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

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

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

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #0066cc;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

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

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

    .service-card {
        flex: 1 1 100%;
        min-width: auto;
    }

    .form-split {
        flex-direction: column;
        gap: 40px;
    }

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

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

    .nav-left {
        gap: 15px;
    }

    .nav-right {
        gap: 15px;
        font-size: 14px;
    }

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

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

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

    .cookie-actions {
        justify-content: stretch;
    }

    .btn-cookie,
    .btn-cookie-reject {
        flex: 1;
    }
}