* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

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

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

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

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

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

.hero-section {
    display: flex;
    min-height: 85vh;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
}

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

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a5490;
    margin-bottom: 28px;
    font-weight: 800;
}

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

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

.cta-button:hover {
    background: #134072;
}

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

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

.problem-section {
    padding: 100px 40px;
    background: #ffffff;
}

.content-wrapper-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.problem-section h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 30px;
    line-height: 1.3;
}

.problem-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 22px;
}

.solution-visual {
    background: #f8fafc;
    padding: 90px 40px;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 25px;
}

.split-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 28px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: #2c3e50;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: bold;
    font-size: 20px;
}

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

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

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

.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 40px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    display: block;
    background: #e2e8f0;
}

.service-card h3 {
    padding: 24px 24px 12px;
    font-size: 22px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 24px;
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 18px;
}

.price {
    padding: 0 24px;
    font-size: 28px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 20px;
}

.service-link {
    display: block;
    padding: 14px 24px;
    background: #f1f5f9;
    color: #1a5490;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.service-link:hover {
    background: #e2e8f0;
}

.process-section {
    padding: 100px 40px;
    background: #1a5490;
    color: #ffffff;
}

.content-wrapper-wide {
    max-width: 1400px;
    margin: 0 auto;
}

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 70px;
    color: #ffffff;
}

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 260px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: rgba(255,255,255,0.3);
    margin-bottom: 15px;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #ffffff;
}

.step p {
    font-size: 16px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.testimonials {
    padding: 90px 40px;
    background: #f8fafc;
}

.testimonials h2 {
    font-size: 38px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 50px;
}

.testimonial-block {
    background: #ffffff;
    padding: 35px;
    margin-bottom: 30px;
    border-left: 4px solid #1a5490;
    border-radius: 6px;
}

.testimonial-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 15px;
    color: #64748b;
    font-weight: 600;
}

.contact-form-section {
    padding: 90px 40px;
    background: #ffffff;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 18px;
    text-align: center;
}

.form-container > p {
    text-align: center;
    font-size: 17px;
    color: #64748b;
    margin-bottom: 40px;
}

.quote-form {
    background: #f8fafc;
    padding: 40px;
    border-radius: 10px;
}

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

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

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

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

.submit-button {
    width: 100%;
    padding: 16px;
    background: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #134072;
}

.guarantee {
    padding: 80px 40px;
    background: #f1f5f9;
}

.guarantee h2 {
    font-size: 34px;
    color: #2c3e50;
    margin-bottom: 24px;
    text-align: center;
}

.guarantee p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
}

.footer {
    background: #1e293b;
    color: #cbd5e0;
    padding: 60px 40px 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 240px;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
    color: #94a3b8;
}

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

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

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #334155;
    text-align: center;
    color: #94a3b8;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    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;
    flex-wrap: wrap;
}

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

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

.cookie-btn.reject {
    background: #64748b;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #475569;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.thanks-box {
    background: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    max-width: 700px;
    text-align: center;
}

.thanks-box h1 {
    font-size: 42px;
    color: #1a5490;
    margin-bottom: 24px;
}

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

.thanks-box .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.thanks-box .back-link:hover {
    background: #134072;
}

.page-header {
    background: linear-gradient(135deg, #1a5490 0%, #2563eb 100%);
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 46px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 19px;
    opacity: 0.9;
}

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

.page-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-top: 50px;
    margin-bottom: 20px;
}

.page-content h3 {
    font-size: 24px;
    color: #1a5490;
    margin-top: 35px;
    margin-bottom: 16px;
}

.page-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 18px;
}

.page-content ul,
.page-content ol {
    margin: 20px 0 20px 30px;
}

.page-content li {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
}

.services-page-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.service-detail {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 40px;
    background: #f8fafc;
    border-radius: 10px;
}

.service-detail-image {
    flex: 0 0 400px;
    background: #cbd5e0;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h3 {
    font-size: 28px;
    color: #1a5490;
    margin: 0 0 16px 0;
}

.service-detail-text p {
    margin-bottom: 16px;
}

.service-detail-text .price {
    font-size: 32px;
    font-weight: 700;
    color: #1a5490;
    margin: 20px 0;
}

.service-detail-text ul {
    margin: 20px 0;
    list-style: none;
    padding: 0;
}

.service-detail-text ul li {
    padding: 8px 0 8px 28px;
    position: relative;
    color: #2c3e50;
}

.service-detail-text ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-size: 24px;
    line-height: 1;
}

.contact-info-section {
    background: #f8fafc;
    padding: 50px 40px;
    border-radius: 10px;
    margin-top: 40px;
}

.contact-info-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info-item {
    flex: 1;
    min-width: 280px;
}

.contact-info-item h3 {
    font-size: 22px;
    color: #1a5490;
    margin-bottom: 16px;
}

.contact-info-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 10px;
}

.disclaimer-box {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 24px;
    margin: 40px 0;
    border-radius: 6px;
}

.disclaimer-box p {
    font-size: 15px;
    color: #78350f;
    margin-bottom: 10px;
}

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

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

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

    .service-detail-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .process-steps {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 16px 20px;
    }

    .nav-links {
        gap: 20px;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}
