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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.active {
    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;
    min-width: 300px;
}

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

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

.btn-accept {
    background: #27ae60;
    color: #fff;
}

.btn-accept:hover {
    background: #229954;
}

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

.btn-reject:hover {
    background: #fff;
    color: #1a1a1a;
}

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

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

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

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

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

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

.ad-label {
    font-size: 11px;
    color: #999;
    font-style: italic;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-left h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e50;
}

.hero-left p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #555;
}

.hero-right {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 15px 35px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

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

.intro-split {
    display: flex;
}

.intro-image {
    flex: 1;
    position: relative;
}

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

.intro-content {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

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

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-center h2 {
    font-size: 38px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.services-grid-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

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

.service-image {
    flex: 1;
    position: relative;
}

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

.service-details {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

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

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

.btn-service {
    padding: 12px 30px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-service:hover {
    background: #2980b9;
    transform: translateX(5px);
}

.insights-split {
    display: flex;
}

.insights-content {
    flex: 1;
    padding: 80px 60px;
    background: #fff;
}

.insights-content h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.insights-image {
    flex: 1;
    position: relative;
}

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

.testimonials-section {
    padding: 80px 30px;
    background: #2c3e50;
    color: #fff;
}

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

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

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

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

.form-split {
    display: flex;
}

.form-image {
    flex: 1;
    position: relative;
}

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

.form-content {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
}

.form-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-content p {
    font-size: 17px;
    margin-bottom: 35px;
    color: #555;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 15px 35px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #3498db;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.8;
    color: #aaa;
}

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

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

.footer-column ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background: rgba(255,255,255,0.05);
    border-radius: 5px;
    font-size: 13px;
    line-height: 1.8;
    color: #999;
}

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

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

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

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 15px;
}

.thanks-container .btn-home {
    display: inline-block;
    margin-top: 30px;
    padding: 15px 40px;
    background: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-container .btn-home:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.page-header {
    background: #2c3e50;
    color: #fff;
    padding: 80px 30px 60px;
    text-align: center;
}

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

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

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

.page-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2c3e50;
}

.page-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #34495e;
}

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

.page-content ul {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

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

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin: 10px 0;
}

.contact-info .email-display {
    color: #555;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .insights-split,
    .form-split {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 15px;
    }

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

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