* {
    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: #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;
    margin: 0;
    min-width: 300px;
}

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

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

.btn-accept {
    background: #3498db;
    color: #ffffff;
}

.btn-accept:hover {
    background: #2980b9;
}

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

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

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

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 12px;
    background: #ecf0f1;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
}

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

.hero-subtitle {
    font-size: 18px;
    color: #555555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.hero-right {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-section {
    background: #ecf0f1;
    padding: 80px 30px;
}

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

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

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

.split-content-left,
.split-content-right {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
    gap: 60px;
    align-items: center;
}

.content-image {
    flex: 1;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.content-text {
    flex: 1;
}

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

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

.services-pricing {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 30px;
}

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

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

.services-intro p {
    font-size: 18px;
    color: #555555;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 300px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: #3498db;
}

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

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

.service-card p {
    padding: 0 20px;
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    padding: 0 20px 16px;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select-service:hover {
    background: #2980b9;
}

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

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.form-container h3 {
    font-size: 28px;
    margin-bottom: 30px;
    text-align: center;
    color: #1a1a1a;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 12px;
    border: 2px solid #ecf0f1;
    border-radius: 4px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

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

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

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

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

.trust-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

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

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

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

.testimonial p {
    font-size: 16px;
    font-style: italic;
    color: #555555;
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.disclaimer-section {
    background: #fff3cd;
    padding: 40px 30px;
    margin: 60px 0 0;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: #856404;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 60px 30px 20px;
}

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

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

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #bdc3c7;
}

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

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

    .service-card {
        width: 100%;
    }

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

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