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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

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

.nav-links a:hover {
    color: #1a5490;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 60px auto;
    gap: 60px;
    padding: 0 40px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.hero-visual {
    flex: 1;
    background: #f5f7fa;
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #134070;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 84, 144, 0.3);
}

.insight-block {
    background: #f8f9fb;
    padding: 90px 40px;
    margin: 80px 0;
}

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 70px;
    align-items: center;
}

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

.content-side {
    flex: 1;
}

.content-side h2 {
    font-size: 38px;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.3;
}

.content-side p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.visual-side {
    flex: 1;
    background: #e8eaf0;
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-section {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.centered-content h2 {
    font-size: 40px;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.centered-content p {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.7;
}

.phase-cards {
    display: flex;
    gap: 35px;
    margin-top: 50px;
}

.phase-card {
    flex: 1;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.phase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.phase-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a5490;
    opacity: 0.2;
    margin-bottom: 15px;
}

.phase-card h3 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.phase-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-preview {
    background: #ffffff;
    padding: 90px 40px;
}

.service-selection-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d0d5dd;
    border-radius: 6px;
    font-size: 16px;
    background: #ffffff;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a5490;
}

.trust-section {
    background: #1a1a1a;
    color: #ffffff;
    padding: 90px 40px;
    margin: 80px 0 0 0;
}

.trust-section .centered-content h2 {
    color: #ffffff;
}

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

.testimonial {
    flex: 1;
    background: rgba(255,255,255,0.08);
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #1a5490;
}

.testimonial p {
    font-size: 17px;
    line-height: 1.7;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.testimonial-author {
    font-size: 14px;
    color: #a0a0a0;
    font-style: italic;
}

.main-footer {
    background: #0d1117;
    color: #c9d1d9;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
    color: #8b949e;
}

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #30363d;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #8b949e;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 13px;
    color: #6e7681;
    line-height: 1.6;
    max-width: 900px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px;
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a4a4a;
}

.cookie-content a {
    color: #1a5490;
    text-decoration: underline;
}

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

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

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

.btn-accept:hover {
    background: #134070;
}

.btn-reject {
    background: #e0e0e0;
    color: #2c3e50;
}

.btn-reject:hover {
    background: #d0d0d0;
}

.service-card {
    background: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.service-price {
    font-size: 22px;
    color: #1a5490;
    font-weight: 700;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-card ul {
    list-style: none;
    margin-bottom: 25px;
}

.service-card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #4a4a4a;
}

.service-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: 700;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.about-hero {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.about-hero h1 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 25px;
}

.about-hero p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
}

.about-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
    background: #f0f2f5;
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

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

.contact-container {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-split {
    display: flex;
    gap: 80px;
    margin-top: 50px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 35px;
}

.info-block h3 {
    font-size: 20px;
    color: #1a5490;
    margin-bottom: 12px;
}

.info-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.contact-visual {
    flex: 1;
    background: #f5f7fa;
    border-radius: 8px;
    overflow: hidden;
    min-height: 500px;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.legal-container h1 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.legal-container h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-top: 40px;
    margin-bottom: 15px;
}

.legal-container h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 12px;
}

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

.legal-container ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

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

.thanks-container h1 {
    font-size: 48px;
    color: #1a5490;
    margin-bottom: 25px;
}

.thanks-container p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-container .cta-primary {
    margin-top: 30px;
}

@media (max-width: 968px) {
    .hero-split,
    .split-layout,
    .phase-cards,
    .testimonial-grid,
    .footer-content,
    .about-split,
    .contact-split {
        flex-direction: column;
    }

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

    .nav-container {
        padding: 0 20px;
    }

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }
}