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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f9fa;
}

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

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

.navigation {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

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

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

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #1e3a8a;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #fff;
    padding: 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    padding: 15px 40px;
    background: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.4);
}

.cta-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: #fff;
    color: #2563eb;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: 2px solid #2563eb;
}

.cta-secondary:hover {
    background: #2563eb;
    color: #fff;
}

.intro-cards {
    padding: 80px 0;
    background: #fff;
}

.card-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background: #f8fafc;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid #e2e8f0;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: #2563eb;
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.info-card p {
    color: #64748b;
    line-height: 1.7;
}

.about-preview {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.content-text {
    flex: 1;
    min-width: 300px;
}

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

.content-text p {
    margin-bottom: 20px;
    color: #475569;
    font-size: 16px;
    line-height: 1.8;
}

.link-arrow {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
}

.link-arrow:hover {
    gap: 10px;
    color: #1e40af;
}

.link-arrow::after {
    content: ' →';
}

.content-image {
    flex: 1;
    min-width: 300px;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    object-fit: cover;
}

.services-section {
    padding: 80px 0;
    background: #fff;
}

.services-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    border: 1px solid #e2e8f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #cbd5e1;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1e293b;
}

.service-content p {
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.select-service {
    width: 100%;
    padding: 12px 20px;
    background: #2563eb;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
}

.select-service:hover {
    background: #1e40af;
}

.form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

.selected-service-display {
    margin-bottom: 30px;
    padding: 15px;
    background: #eff6ff;
    border-radius: 8px;
    color: #1e40af;
    font-size: 16px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

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

.trust-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.testimonial-cards {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border-left: 4px solid #2563eb;
}

.testimonial-card p {
    color: #475569;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.cta-section {
    padding: 80px 0;
    background: #1e3a8a;
}

.cta-card {
    text-align: center;
    color: #fff;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.footer {
    background: #1e293b;
    color: #e2e8f0;
    padding: 60px 0 30px;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

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

.footer-col p {
    color: #cbd5e1;
    font-size: 14px;
}

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

.disclaimer {
    font-size: 13px;
    color: #94a3b8;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 25px;
    z-index: 2000;
    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;
    color: #475569;
}

.cookie-content a {
    color: #2563eb;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background: #2563eb;
    color: #fff;
}

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

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

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

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

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

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

.content-section {
    padding: 60px 0;
    background: #fff;
}

.content-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1e293b;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #334155;
}

.content-section p {
    margin-bottom: 15px;
    color: #475569;
    line-height: 1.8;
}

.content-section ul,
.content-section ol {
    margin-bottom: 20px;
    padding-left: 30px;
    color: #475569;
    line-height: 1.8;
}

.content-section li {
    margin-bottom: 10px;
}

.contact-info-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    margin-bottom: 30px;
}

.contact-info-card h3 {
    margin-top: 0;
}

.contact-info-card p {
    margin-bottom: 10px;
}

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

.thanks-content {
    max-width: 600px;
}

.thanks-icon {
    font-size: 80px;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1e293b;
}

.thanks-content p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 30px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-content p {
        font-size: 16px;
    }

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

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

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