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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    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;
    margin: 0;
    min-width: 300px;
}

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

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

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

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

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

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

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

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

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.nav-items a {
    color: #4b5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 11px;
    color: #9ca3af;
    padding: 4px 10px;
    background: #f3f4f6;
    border-radius: 4px;
}

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

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #2c3e50;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

.hero-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background-color: #e5e7eb;
}

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

.hero-content {
    padding: 50px 60px;
    text-align: center;
}

.hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}

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

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

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #f9fafb;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
}

.info-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

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

.info-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.services-section {
    padding: 80px 20px;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.section-header p {
    font-size: 18px;
    color: #6b7280;
}

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

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1;
    min-width: 320px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

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

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

.service-details {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-details h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 14px;
}

.service-details p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

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

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

.btn-select-service:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.3);
}

.form-section {
    padding: 80px 20px;
    background: #fff;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    background: #f9fafb;
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 12px;
    text-align: center;
}

.form-description {
    text-align: center;
    color: #6b7280;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-group input[readonly] {
    background: #e5e7eb;
    color: #6b7280;
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background: #10b981;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.3);
}

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

.trust-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 50px;
    border-radius: 16px;
    text-align: center;
}

.trust-card h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 50px;
}

.trust-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
    flex-wrap: wrap;
}

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

.trust-number {
    font-size: 48px;
    font-weight: 800;
    color: #2563eb;
    margin-bottom: 10px;
}

.trust-item p {
    font-size: 16px;
    color: #6b7280;
}

.footer {
    background: #1f2937;
    color: #d1d5db;
    padding: 60px 20px 30px;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 12px;
}

.disclaimer-text {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 20px;
    line-height: 1.5;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

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

.about-hero, .services-hero, .contact-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    text-align: center;
}

.about-card {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    padding: 60px 50px;
    border-radius: 16px;
}

.about-card h1,
.services-hero h1,
.contact-hero h1 {
    font-size: 42px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 16px;
}

.services-hero h1,
.contact-hero h1 {
    color: #fff;
}

.about-card p,
.services-hero p,
.contact-hero p {
    font-size: 18px;
    color: #6b7280;
}

.services-hero p,
.contact-hero p {
    color: rgba(255, 255, 255, 0.9);
}

.about-content {
    padding: 80px 20px;
    background: #fff;
}

.content-grid {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.content-card {
    display: flex;
    gap: 50px;
    align-items: center;
}

.content-card.reverse {
    flex-direction: row-reverse;
}

.image-wrapper {
    flex: 1;
    min-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #e5e7eb;
}

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

.text-content {
    flex: 1;
}

.text-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 20px;
}

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

.values-section {
    padding: 80px 20px;
    background: #f8f9fa;
    text-align: center;
}

.values-section h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 50px;
}

.values-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 14px;
}

.value-card p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.services-detailed {
    padding: 60px 20px 80px;
    background: #fff;
}

.contact-content {
    padding: 80px 20px;
    background: #fff;
}

.contact-layout {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 350px;
    background: #f9fafb;
    padding: 40px;
    border-radius: 12px;
}

.contact-info-card h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 30px;
}

.info-block {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    font-size: 32px;
}

.info-text h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 8px;
}

.info-text p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
}

.contact-map-card {
    flex: 1;
    min-width: 350px;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 400px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e5e7eb;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 20px;
    text-align: center;
}

.additional-info {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.info-card-small {
    flex: 1;
    min-width: 300px;
    background: #f9fafb;
    padding: 30px;
    border-radius: 12px;
}

.info-card-small h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.info-card-small p {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 8px;
}

.thanks-section {
    padding: 100px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 60px 50px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

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

.thanks-message {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 30px;
}

.order-summary {
    margin-bottom: 30px;
}

.summary-box {
    background: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    text-align: left;
}

.summary-box p {
    font-size: 15px;
    color: #374151;
    margin-bottom: 8px;
}

.next-steps {
    background: #f0f9ff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    text-align: left;
}

.next-steps h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 16px;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    font-size: 15px;
    color: #6b7280;
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.next-steps li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-weight: bold;
}

.legal-content {
    padding: 80px 20px;
    background: #fff;
}

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

.legal-container h1 {
    font-size: 36px;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 30px;
}

.legal-container h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
    margin-top: 40px;
    margin-bottom: 16px;
}

.legal-container h3 {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin-top: 30px;
    margin-bottom: 12px;
}

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

.legal-container ul {
    margin-bottom: 16px;
    padding-left: 30px;
}

.legal-container li {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 8px;
}

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

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

    .nav-toggle {
        display: flex;
    }

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

    .hero-content {
        padding: 40px 30px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .form-card {
        padding: 30px 20px;
    }

    .trust-card {
        padding: 40px 30px;
    }

    .about-card h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }

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

    .content-card.reverse {
        flex-direction: column;
    }

    .image-wrapper {
        min-width: 100%;
    }

    .contact-layout {
        flex-direction: column;
    }

    .thanks-card {
        padding: 40px 30px;
    }
}
