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

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

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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
}

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

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

.nav-links a:hover {
    color: #2563eb;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

.hero-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-block {
    flex: 1;
    color: #fff;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
    line-height: 1.7;
}

.hero-image-card {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
    background: #4a5568;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 36px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    padding: 12px 28px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
}

.intro-cards {
    padding: 100px 20px;
    background: #f9fafb;
}

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

.info-card {
    flex: 1;
    background: #fff;
    padding: 40px 32px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.info-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.card-icon {
    margin-bottom: 20px;
    color: #2563eb;
}

.info-card.highlight .card-icon {
    color: #fff;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    font-weight: 700;
}

.info-card p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

.insight-section {
    padding: 100px 20px;
    background: #fff;
}

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

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.image-block {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    background: #e5e7eb;
}

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

.services-preview {
    padding: 100px 20px;
    background: #f3f4f6;
}

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

.section-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.section-header p {
    font-size: 19px;
    color: #6b7280;
    line-height: 1.7;
}

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

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 3px solid #2563eb;
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #2563eb;
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.service-image {
    height: 220px;
    overflow: hidden;
    background: #e5e7eb;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 21px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 20px;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 20px;
}

.cta-link-wrapper {
    text-align: center;
    margin-top: 50px;
}

.link-arrow {
    color: #2563eb;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    padding-right: 25px;
}

.link-arrow::after {
    content: '→';
    position: absolute;
    right: 0;
    transition: right 0.3s;
}

.link-arrow:hover::after {
    right: -5px;
}

.testimonial-cards {
    padding: 100px 20px;
    background: #fff;
}

.testimonial-cards h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 800;
}

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

.testimonial-card {
    flex: 1;
    background: #f9fafb;
    padding: 35px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

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

.process-cards {
    padding: 100px 20px;
    background: #1f2937;
    color: #fff;
}

.process-cards h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 60px;
    font-weight: 800;
}

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

.process-card {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 32px 24px;
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.1);
    transition: background 0.3s, transform 0.3s;
}

.process-card:hover {
    background: rgba(255,255,255,0.08);
    transform: translateY(-5px);
}

.process-number {
    font-size: 36px;
    font-weight: 800;
    color: #60a5fa;
    margin-bottom: 16px;
}

.process-card h3 {
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 700;
}

.process-card p {
    font-size: 15px;
    line-height: 1.7;
    opacity: 0.85;
}

.contact-form-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

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

.form-intro h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 800;
}

.form-intro p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.7;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.main-footer {
    background: #111827;
    color: #d1d5db;
    padding: 60px 20px 30px;
}

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

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: 700;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 10px;
}

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

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

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

.footer-col ul li a:hover {
    color: #60a5fa;
}

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

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 10px;
}

.disclaimer-text {
    font-size: 13px;
    color: #9ca3af;
    font-style: italic;
    margin-top: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #fff;
    padding: 24px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    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;
    gap: 30px;
}

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

.cookie-content a {
    color: #60a5fa;
}

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

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

.btn-accept {
    background: #10b981;
    color: #fff;
}

.btn-accept:hover {
    background: #059669;
    transform: translateY(-1px);
}

.btn-reject {
    background: transparent;
    color: #fff;
    border: 2px solid #6b7280;
}

.btn-reject:hover {
    border-color: #9ca3af;
    transform: translateY(-1px);
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.content-section {
    padding: 80px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.content-section h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #374151;
    font-weight: 700;
}

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

.content-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-card {
    background: #fff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    text-align: center;
    max-width: 600px;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-icon svg {
    width: 48px;
    height: 48px;
    stroke: #fff;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 800;
}

.thanks-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 20px;
}

.thanks-card .btn-primary {
    margin-top: 20px;
}

.contact-info-section {
    padding: 80px 20px;
    background: #f9fafb;
}

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

.contact-info-card {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-info-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 12px;
}

@media (max-width: 1024px) {
    .service-card {
        flex: 0 0 calc(50% - 15px);
    }

    .card-grid,
    .testimonial-grid,
    .process-grid {
        flex-wrap: wrap;
    }

    .footer-grid {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-col {
        flex: 0 0 calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content,
    .split-layout,
    .contact-grid {
        flex-direction: column;
    }

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

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

    .card-grid,
    .testimonial-grid,
    .process-grid {
        flex-direction: column;
    }

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

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

    .footer-col {
        flex: 0 0 100%;
    }
}
