* {
    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: 1.5rem;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #e67e22;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
    background-color: #2c3e50;
    color: #ffffff;
}

.header-left .brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-label {
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    background-color: rgba(243, 156, 18, 0.2);
    border-radius: 3px;
    color: #f39c12;
}

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

.hero-left {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ecf0f1;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-left p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #f39c12;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
}

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

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

.split-content {
    display: flex;
}

.split-left {
    flex: 1;
    background-color: #bdc3c7;
}

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

.split-right {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #ffffff;
}

.split-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-right p {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    color: #34495e;
}

.benefits-list {
    list-style: none;
    margin-top: 2rem;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.125rem;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #f39c12;
    font-weight: bold;
    font-size: 1.25rem;
}

.services-overview {
    padding: 5rem 4rem;
    background-color: #f8f9fa;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-header-center p {
    font-size: 1.125rem;
    color: #7f8c8d;
}

.services-grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

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

.service-card h3 {
    font-size: 1.375rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.service-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1.5rem;
    color: #7f8c8d;
    line-height: 1.6;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f39c12;
    margin: 1.5rem;
    padding-top: 1rem;
    border-top: 2px solid #ecf0f1;
}

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

.form-split-left {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-split-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.form-split-left p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.form-info-box {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.form-info-box h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.form-info-box ol {
    margin-left: 1.5rem;
}

.form-info-box li {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-split-right {
    flex: 1;
    padding: 5rem 4rem;
    background-color: #ecf0f1;
    display: flex;
    align-items: center;
}

.contact-form {
    width: 100%;
    max-width: 500px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #bdc3c7;
    border-radius: 4px;
    font-size: 1rem;
    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: #f39c12;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #f39c12;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-privacy {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: #7f8c8d;
    text-align: center;
}

.form-privacy a {
    color: #2c3e50;
    text-decoration: underline;
}

.disclaimer-section {
    padding: 3rem 4rem;
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
}

.disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.disclaimer-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 4rem 4rem 3rem;
    background-color: #34495e;
    color: #ecf0f1;
}

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

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-split h4 {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-split ul li {
    margin-bottom: 0.5rem;
}

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

.footer-split a:hover {
    color: #f39c12;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.thanks-content p {
    font-size: 1.125rem;
    color: #34495e;
    margin-bottom: 2rem;
}

.thanks-content .selected-service {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.thanks-content .selected-service strong {
    color: #2c3e50;
}

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

    .header-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 2rem;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-split {
        flex-direction: column;
        gap: 2rem;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }
}

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-left,
    .split-right,
    .form-split-left,
    .form-split-right {
        padding: 3rem 2rem;
    }

    .services-overview {
        padding: 3rem 2rem;
    }

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