* {
    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: #2c3e50;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    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: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

.btn-cookie-accept {
    background: #2ecc71;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #27ae60;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 28px;
    font-weight: 700;
    color: #1a237e;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    gap: 32px;
    align-items: center;
}

.header-right a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.header-right a:hover,
.header-right a.nav-active {
    color: #1a237e;
}

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
}

.hero-text-container {
    max-width: 580px;
}

.hero-text-container h1 {
    font-size: 52px;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 19px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    line-height: 1.6;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #2ecc71;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.cta-primary:hover {
    background: #27ae60;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

.intro-asymmetric {
    padding: 100px 60px;
    background: #f8f9fa;
}

.intro-content {
    max-width: 1200px;
    margin: 0 auto;
}

.intro-offset-box {
    max-width: 720px;
    margin-bottom: 60px;
}

.intro-offset-box h2 {
    font-size: 42px;
    color: #1a237e;
    margin-bottom: 24px;
    line-height: 1.3;
}

.intro-offset-box p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
}

.intro-stats-split {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

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

.stat-label {
    font-size: 16px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.philosophy-split {
    display: flex;
    min-height: 70vh;
}

.philosophy-image {
    flex: 1;
    overflow: hidden;
}

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

.philosophy-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fff;
}

.section-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #e8eaf6;
    color: #1a237e;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.philosophy-text h2 {
    font-size: 38px;
    color: #1a237e;
    margin-bottom: 24px;
    line-height: 1.3;
}

.philosophy-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: #1a237e;
    text-decoration: none;
    border: 2px solid #1a237e;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    margin-top: 16px;
    align-self: flex-start;
}

.cta-secondary:hover {
    background: #1a237e;
    color: #fff;
}

.services-main {
    padding: 100px 60px;
    background: #fff;
}

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

.services-header h2 {
    font-size: 42px;
    color: #1a237e;
    margin-bottom: 16px;
}

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

.services-grid-split {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.service-card-inner {
    padding: 36px;
}

.service-card h3 {
    font-size: 24px;
    color: #1a237e;
    margin-bottom: 16px;
}

.service-card > div > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
    font-size: 15px;
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 24px;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #1a237e;
}

.price-note {
    font-size: 14px;
    color: #888;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background: #1a237e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background: #0d1642;
    transform: translateY(-2px);
}

.cta-inline-split {
    padding: 80px 60px;
    background: linear-gradient(135deg, #283593 0%, #1a237e 100%);
}

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

.cta-inline-content h2 {
    font-size: 40px;
    color: #fff;
    margin-bottom: 16px;
}

.cta-inline-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.testimonial-split {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

.testimonial-item {
    flex: 1;
    min-width: 320px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.testimonial-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: #1a237e;
    font-size: 16px;
}

.testimonial-author span {
    color: #888;
    font-size: 14px;
}

.process-split {
    display: flex;
    min-height: 80vh;
}

.process-text-side {
    flex: 1.2;
    padding: 80px 60px;
    background: #fff;
}

.process-text-side h2 {
    font-size: 38px;
    color: #1a237e;
    margin-bottom: 48px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: flex;
    gap: 24px;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #2ecc71;
    min-width: 50px;
}

.step-content h3 {
    font-size: 22px;
    color: #1a237e;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.process-image-side {
    flex: 0.8;
    overflow: hidden;
}

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

.contact-form-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

.form-container-split {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 50px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 12px;
}

.form-intro p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    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: #1a237e;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px;
    background: #2ecc71;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 12px;
}

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

.final-cta-split {
    display: flex;
    padding: 80px 60px;
    background: #fff;
    align-items: center;
    gap: 60px;
}

.final-cta-left {
    flex: 1;
}

.final-cta-left h2 {
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 16px;
    line-height: 1.3;
}

.final-cta-left p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.final-cta-right {
    flex: 0.8;
    text-align: center;
}

.cta-large {
    display: inline-block;
    padding: 20px 48px;
    background: #1a237e;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(26, 35, 126, 0.3);
}

.cta-large:hover {
    background: #0d1642;
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(26, 35, 126, 0.4);
}

.cta-note {
    margin-top: 16px;
    font-size: 14px;
    color: #888;
}

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

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

.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-brand {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2ecc71;
}

.footer-col p {
    font-size: 14px;
    color: #aaa;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: #fff;
}

.footer-col a {
    display: block;
    color: #aaa;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #2ecc71;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

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

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

    .intro-stats-split {
        gap: 40px;
    }

    .final-cta-split {
        flex-direction: column;
        text-align: center;
    }

    .header-split {
        padding: 20px 30px;
    }

    .hero-left,
    .philosophy-text,
    .process-text-side {
        padding: 60px 40px;
    }

    .services-main,
    .contact-form-section {
        padding: 80px 40px;
    }
}

@media (max-width: 768px) {
    .header-right {
        gap: 20px;
    }

    .hero-text-container h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .intro-offset-box h2,
    .services-header h2 {
        font-size: 32px;
    }

    .form-row {
        flex-direction: column;
    }

    .form-container-split {
        padding: 30px;
    }

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

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

    .footer-main {
        gap: 40px;
    }

    .header-split {
        padding: 16px 20px;
    }

    .services-main,
    .contact-form-section,
    .intro-asymmetric,
    .testimonial-split {
        padding: 60px 20px;
    }
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 100px 40px;
    text-align: center;
}

.thanks-icon {
    font-size: 72px;
    margin-bottom: 24px;
}

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

.thanks-container p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-service-info {
    background: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    margin: 32px 0;
}

.thanks-service-info strong {
    color: #1a237e;
    font-size: 16px;
}

.thanks-service-info span {
    display: block;
    font-size: 20px;
    color: #2ecc71;
    margin-top: 8px;
}

.page-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.page-container h1 {
    font-size: 42px;
    color: #1a237e;
    margin-bottom: 24px;
}

.page-container h2 {
    font-size: 28px;
    color: #1a237e;
    margin-top: 40px;
    margin-bottom: 16px;
}

.page-container h3 {
    font-size: 22px;
    color: #333;
    margin-top: 28px;
    margin-bottom: 12px;
}

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

.page-container ul,
.page-container ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

.page-container li {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

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

.contact-info-item {
    margin-bottom: 20px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item strong {
    display: block;
    color: #1a237e;
    font-size: 16px;
    margin-bottom: 6px;
}

.contact-info-item span {
    display: block;
    color: #555;
    font-size: 16px;
    line-height: 1.6;
}

.contact-info-item a {
    color: #2ecc71;
    text-decoration: none;
}

.contact-info-item a:hover {
    text-decoration: underline;
}

.about-hero {
    padding: 100px 60px;
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    color: rgba(255, 255, 255, 0.9);
}

.about-content-split {
    display: flex;
    padding: 100px 60px;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    color: #1a237e;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.values-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    color: #1a237e;
    text-align: center;
    margin-bottom: 60px;
}

.values-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background: #fff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 24px;
    color: #1a237e;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .about-content-split {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 80px 30px;
    }

    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 17px;
    }

    .values-section {
        padding: 80px 30px;
    }

    .about-content-split {
        padding: 80px 30px;
    }
}