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

.ad-disclosure {
    background: #f7fafc;
    padding: 8px 20px;
    text-align: center;
    font-size: 12px;
    color: #718096;
    border-bottom: 1px solid #e2e8f0;
}

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

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

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

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

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

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

.hero-content {
    flex: 1;
    padding: 60px 80px;
    background: #f7fafc;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: #2b6cb0;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

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

.hero-image {
    flex: 1;
    background: #cbd5e0;
}

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

.intro-asymmetric {
    display: flex;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 2;
    padding-right: 40px;
}

.intro-text h2 {
    font-size: 36px;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-text p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat-card {
    padding: 32px;
    background: #edf2f7;
    border-radius: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #4a5568;
}

.approach-section {
    padding: 80px 40px;
    background: #ffffff;
}

.approach-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.approach-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.approach-item {
    flex: 1;
}

.approach-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background: #e2e8f0;
}

.approach-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 600;
}

.approach-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.6;
}

.services-showcase {
    padding: 80px 40px;
    background: #f7fafc;
}

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

.services-header h2 {
    font-size: 40px;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 700;
}

.services-header p {
    font-size: 18px;
    color: #4a5568;
}

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

.service-featured {
    flex: 1.5;
    padding: 48px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    position: relative;
}

.service-badge {
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 8px 16px;
    background: #2b6cb0;
    color: #ffffff;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.service-featured h3 {
    font-size: 28px;
    color: #1a202c;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-featured p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-benefits {
    list-style: none;
    margin-bottom: 32px;
}

.service-benefits li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: #2d3748;
}

.service-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2b6cb0;
    font-weight: 700;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 24px;
}

.cta-service {
    width: 100%;
    padding: 16px 32px;
    background: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.service-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-compact {
    padding: 32px;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.service-compact h3 {
    font-size: 20px;
    color: #1a202c;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-compact p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-compact .service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 16px;
}

.service-compact .cta-service {
    padding: 12px 24px;
    font-size: 15px;
}

.testimonials-inline {
    padding: 80px 40px;
    background: #ffffff;
}

.testimonials-inline h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.testimonial-flow {
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    padding: 32px 40px;
    background: #f7fafc;
    border-left: 4px solid #2b6cb0;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    color: #2d3748;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial cite {
    font-size: 15px;
    color: #718096;
    font-style: normal;
    font-weight: 600;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-container > p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 32px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    color: #2d3748;
    transition: border-color 0.3s;
}

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

.cta-submit {
    padding: 16px 32px;
    background: #2b6cb0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 60px 40px 32px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.footer-section p {
    font-size: 15px;
    color: #a0aec0;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #718096;
    margin-bottom: 12px;
}

.disclaimer {
    font-size: 13px;
    color: #4a5568;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #63b3ed;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.cookie-accept,
.cookie-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #2b6cb0;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #2c5282;
}

.cookie-reject {
    background: #4a5568;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #2d3748;
}

.thanks-page {
    padding: 80px 40px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.thanks-page h1 {
    font-size: 48px;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-page p {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 32px;
    max-width: 600px;
}

.thanks-page .service-name {
    font-weight: 600;
    color: #2b6cb0;
}

.contact-page {
    padding: 80px 40px;
}

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

.contact-container h1 {
    font-size: 48px;
    color: #1a202c;
    margin-bottom: 32px;
    font-weight: 700;
}

.contact-split {
    display: flex;
    gap: 60px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 24px;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 600;
}

.contact-detail {
    margin-bottom: 32px;
}

.contact-detail h3 {
    font-size: 16px;
    color: #718096;
    margin-bottom: 8px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.contact-detail p {
    font-size: 18px;
    color: #2d3748;
    line-height: 1.6;
}

.services-page {
    padding: 80px 40px;
}

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

.services-container h1 {
    font-size: 48px;
    color: #1a202c;
    margin-bottom: 24px;
    font-weight: 700;
}

.services-intro {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 60px;
    line-height: 1.7;
}

.service-detailed {
    padding: 48px;
    background: #f7fafc;
    border-radius: 12px;
    margin-bottom: 32px;
}

.service-detailed h2 {
    font-size: 32px;
    color: #1a202c;
    margin-bottom: 16px;
    font-weight: 700;
}

.service-detailed p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-detailed .service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 24px;
}

.about-page {
    padding: 80px 40px;
}

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

.about-container h1 {
    font-size: 48px;
    color: #1a202c;
    margin-bottom: 32px;
    font-weight: 700;
}

.about-container h2 {
    font-size: 32px;
    color: #1a202c;
    margin-top: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-container p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 40px;
}

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

.legal-container h1 {
    font-size: 48px;
    color: #1a202c;
    margin-bottom: 32px;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 28px;
    color: #1a202c;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    color: #2d3748;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-container ul {
    margin-left: 32px;
    margin-bottom: 16px;
}

.legal-container li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 8px;
    line-height: 1.7;
}

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

    .hero-content {
        padding: 40px 24px;
    }

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

    .intro-asymmetric {
        flex-direction: column;
    }

    .approach-grid {
        flex-direction: column;
    }

    .services-split-layout {
        flex-direction: column;
    }

    .contact-split {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}