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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a202c;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    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-primary {
    background: #4299e1;
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #3182ce;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    padding: 0.75rem 1.5rem;
    cursor: pointer;
    font-size: 1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

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

.site-header {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a202c;
    text-decoration: none;
}

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

.nav-links a {
    color: #2d3748;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4299e1;
}

.ad-label {
    font-size: 0.875rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    background: #edf2f7;
    border-radius: 4px;
}

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

.hero-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f7fafc;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.hero-text p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
    max-width: 500px;
}

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

.cta-primary:hover {
    background: #2c5282;
}

.hero-visual {
    flex: 1;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-statement {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.statement-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.statement-wrapper p {
    font-size: 1.125rem;
    color: #4a5568;
    line-height: 1.8;
}

.split-content {
    display: flex;
    min-height: 500px;
}

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

.split-visual {
    flex: 1;
    overflow: hidden;
}

.split-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

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

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

.split-text p {
    font-size: 1.125rem;
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #2d3748;
}

.feature-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #4299e1;
}

.btn-outline {
    border: 2px solid #2b6cb0;
    color: #2b6cb0;
    padding: 0.875rem 1.75rem;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    align-self: flex-start;
}

.btn-outline:hover {
    background: #2b6cb0;
    color: #ffffff;
}

.insight-grid {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 200px;
}

.insight-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #2d3748;
}

.insight-card p {
    font-size: 0.9375rem;
    color: #718096;
    margin: 0;
}

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

.services-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.services-header p {
    font-size: 1.125rem;
    color: #4a5568;
}

.service-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.service-image {
    height: 200px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.375rem;
    color: #1a202c;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #4a5568;
}

.service-card .price {
    display: block;
    padding: 0 1.5rem 1.5rem;
    font-weight: 700;
    color: #2b6cb0;
    font-size: 1.125rem;
}

.testimonial-section {
    padding: 4rem 2rem;
    background: #2d3748;
}

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

.testimonial {
    border-left: 4px solid #4299e1;
    padding-left: 2rem;
}

.testimonial p {
    font-size: 1.5rem;
    color: #ffffff;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.testimonial cite {
    color: #a0aec0;
    font-style: normal;
    font-size: 1rem;
}

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

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

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

.cta-button {
    background: #2b6cb0;
    color: #ffffff;
    padding: 1.125rem 2.5rem;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #2c5282;
}

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

.footer-grid {
    max-width: 1200px;
    margin: 0 auto 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.footer-section h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    color: #a0aec0;
}

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

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

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

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

.footer-section ul li a:hover {
    color: #4299e1;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

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

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

.footer-bottom p {
    color: #718096;
    font-size: 0.875rem;
}

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

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

    .hero-text,
    .split-text {
        padding: 2rem 1.5rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .service-cards {
        flex-direction: column;
    }
}