* {
    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: #2d3748;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 9999;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

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

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #718096;
    border: 1px solid #e2e8f0;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
}

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

.hero-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-left p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

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

.hero-image {
    width: 100%;
    height: 100%;
}

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

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

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

.value-split {
    display: flex;
    max-width: 1400px;
    margin: 4rem auto;
}

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

.split-image {
    flex: 1;
}

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

.split-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.split-content p {
    font-size: 1.0625rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.services-section {
    background-color: #f7fafc;
    padding: 5rem 2rem;
}

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

.section-header-centered h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.section-header-centered p {
    font-size: 1.125rem;
    color: #718096;
}

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

.service-card-split {
    display: flex;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
}

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

.service-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.service-content p {
    font-size: 1rem;
    color: #4a5568;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 1.5rem;
}

.btn-select {
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 1rem 2rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.btn-select.selected {
    background-color: #48bb78;
}

.btn-select.selected:hover {
    background-color: #38a169;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    gap: 4rem;
    padding: 0 2rem;
}

.split-content-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content-left h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.split-content-left p {
    font-size: 1.0625rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.split-form-right {
    flex: 1;
}

.contact-form {
    background-color: #f7fafc;
    padding: 2.5rem;
    border-radius: 8px;
}

.service-selection-display {
    background-color: #e6fffa;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #38b2ac;
}

.service-selection-display strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #234e52;
}

.service-selection-display span {
    color: #2c7a7b;
    font-weight: 500;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2b6cb0;
}

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

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

.testimonial-split {
    display: flex;
    max-width: 1400px;
    margin: 5rem auto;
    min-height: 400px;
}

.testimonial-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    align-items: center;
    background-color: #edf2f7;
}

.testimonial-content blockquote {
    border-left: 4px solid #2b6cb0;
    padding-left: 2rem;
}

.testimonial-content p {
    font-size: 1.375rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-content cite {
    font-style: normal;
    font-weight: 600;
    color: #4a5568;
}

.testimonial-visual {
    flex: 1;
}

.main-footer {
    background-color: #1a202c;
    color: #e2e8f0;
    padding: 3rem 2rem 1rem;
}

.footer-content-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h3,
.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.footer-column p {
    color: #a0aec0;
    line-height: 1.7;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: #2d3748;
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 0.875rem;
    color: #cbd5e0;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    text-align: center;
    color: #a0aec0;
}

.page-hero {
    background-color: #2b6cb0;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-hero p {
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.9;
}

.page-content {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin: 2rem 0 1rem;
    color: #1a202c;
}

.page-content h3 {
    font-size: 1.5rem;
    margin: 1.5rem 0 0.75rem;
    color: #2d3748;
}

.page-content p {
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #4a5568;
}

.page-content li {
    margin-bottom: 0.5rem;
}

.contact-info-box {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.contact-info-item {
    margin: 1rem 0;
}

.contact-info-item strong {
    display: block;
    margin-bottom: 0.25rem;
    color: #2d3748;
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #48bb78;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thanks-icon::after {
    content: '✓';
    font-size: 3rem;
    color: #ffffff;
    font-weight: bold;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.thanks-container p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 1rem;
}

.service-selected-info {
    background-color: #e6fffa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #38b2ac;
}

.service-selected-info strong {
    color: #234e52;
}

.thanks-actions {
    margin-top: 2rem;
}

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

    .value-split.reverse {
        flex-direction: column;
    }

    .service-card-split,
    .service-card-split.reverse {
        flex-direction: column;
    }

    .footer-content-split {
        flex-wrap: wrap;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .header-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        gap: 1rem;
        font-size: 0.875rem;
    }

    .hero-left {
        padding: 2rem 1.5rem;
    }

    .split-content {
        padding: 2rem 1.5rem;
    }

    .services-section {
        padding: 3rem 1rem;
    }

    .contact-split {
        gap: 2rem;
    }

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