* {
    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: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

#accept-cookies {
    background-color: #27ae60;
    color: white;
}

#accept-cookies:hover {
    background-color: #229954;
}

#reject-cookies {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

#reject-cookies:hover {
    background-color: rgba(255,255,255,0.1);
}

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

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

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

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

.ad-notice {
    background-color: #f0f0f0;
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 4px;
    color: #666;
}

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

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

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

.hero-left {
    flex: 1;
    padding: 60px 80px;
}

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

.hero-left p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #555;
    line-height: 1.7;
}

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

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

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

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

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

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

.split-image {
    flex: 1;
    background-color: #e8ecef;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.split-content {
    flex: 1;
}

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

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #444;
    line-height: 1.8;
}

.insight-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
    margin: 80px 0;
}

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

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

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

.insight-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

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

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

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

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

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

.services-intro p {
    font-size: 19px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-item {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.service-item img {
    flex: 1;
    border-radius: 8px;
    background-color: #e8ecef;
    object-fit: cover;
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

.select-service {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.select-service.selected {
    background-color: #27ae60;
}

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

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

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

.testimonial-split {
    display: flex;
    gap: 40px;
}

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

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

.testimonial-author {
    display: block;
    font-size: 15px;
    color: #ecf0f1;
}

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

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.form-container {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.service-display {
    padding: 12px;
    background-color: #f0f0f0;
    border-radius: 4px;
    color: #666;
    font-weight: 600;
}

.service-display.active {
    background-color: #e8f5e9;
    color: #27ae60;
}

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

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

.submit-btn:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

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

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

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-left h3,
.footer-center h4,
.footer-right h4 {
    margin-bottom: 16px;
    color: white;
}

.footer-left p {
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-center ul,
.footer-right ul {
    list-style: none;
}

.footer-center ul li,
.footer-right ul li {
    margin-bottom: 10px;
}

.footer-center a,
.footer-right a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-center a:hover,
.footer-right a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

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

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

@media (max-width: 968px) {
    .hero-split,
    .split-section,
    .form-split,
    .testimonial-split,
    .service-item {
        flex-direction: column;
    }

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

    .hero-left,
    .split-content {
        padding: 40px;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 20px;
    }
}