* {
    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.7;
    color: #2c3e50;
    background: #ffffff;
}

a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1e40af;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

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

.main-header {
    background: #1e293b;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 24px;
    color: #ffffff;
    font-weight: 700;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.main-nav a {
    color: #e2e8f0;
    font-size: 16px;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: #ffffff;
    border-bottom-color: #3b82f6;
}

.ad-label {
    background: #dc2626;
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e293b;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 200;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
}

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

.hero-section {
    background: #f8fafc;
}

.hero-image-container {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: #334155;
}

.hero-image-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: relative;
    z-index: 10;
    padding: 80px 0;
    width: 100%;
}

.hero-overlay h1 {
    font-size: 52px;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 24px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 20px;
    color: #f1f5f9;
    margin-bottom: 36px;
    max-width: 680px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.btn-hero {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-hero:hover {
    background: #1e40af;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.btn-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #1e40af;
    color: #ffffff;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #ffffff;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #1e293b;
}

.intro-section {
    padding: 100px 0;
    background: #ffffff;
}

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #0f172a;
    line-height: 1.3;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #475569;
}

.features-section {
    padding: 100px 0;
    background: #f1f5f9;
}

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

.feature-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

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

.feature-icon {
    color: #2563eb;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #0f172a;
}

.feature-card p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.services-overview {
    padding: 100px 0;
    background: #ffffff;
}

.services-overview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #0f172a;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-image {
    flex: 1;
    min-width: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background-color: #e2e8f0;
}

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

.service-content {
    flex: 1;
    min-width: 320px;
}

.service-content h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0f172a;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #475569;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-top: 24px;
}

.form-section {
    padding: 100px 0;
    background: #f8fafc;
}

.form-section h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
    color: #0f172a;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 48px;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #ffffff;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.contact-form button {
    width: 100%;
    margin-top: 12px;
}

.trust-section {
    padding: 100px 0;
    background: #ffffff;
}

.trust-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background: #f8fafc;
    padding: 36px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

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

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

.disclaimer-section {
    padding: 60px 0;
    background: #fef3c7;
    border-top: 3px solid #fbbf24;
    border-bottom: 3px solid #fbbf24;
}

.disclaimer-text {
    font-size: 15px;
    color: #78350f;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background: #0f172a;
    color: #cbd5e1;
    padding: 80px 0 40px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

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

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

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

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

.footer-column ul li a {
    color: #cbd5e1;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

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

.page-header {
    background: #1e293b;
    padding: 80px 0 60px;
}

.page-header h1 {
    font-size: 48px;
    color: #ffffff;
    text-align: center;
}

.about-intro {
    padding: 80px 0;
    background: #ffffff;
}

.lead-text {
    font-size: 22px;
    line-height: 1.6;
    color: #475569;
    text-align: center;
}

.about-story {
    padding: 80px 0;
    background: #f8fafc;
}

.story-block {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.story-image {
    flex: 1;
    min-width: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background-color: #e2e8f0;
}

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

.story-content {
    flex: 1;
    min-width: 320px;
}

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f172a;
}

.story-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.about-values {
    padding: 100px 0;
    background: #ffffff;
}

.about-values h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

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

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background: #f1f5f9;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #0f172a;
}

.value-item p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
}

.about-team {
    padding: 80px 0;
    background: #f8fafc;
}

.about-team h2 {
    font-size: 38px;
    margin-bottom: 32px;
    color: #0f172a;
}

.about-team p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.about-fleet {
    padding: 100px 0;
    background: #ffffff;
}

.about-fleet h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f172a;
}

.fleet-info {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.fleet-image {
    flex: 1;
    min-width: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background-color: #e2e8f0;
}

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

.fleet-content {
    flex: 1;
    min-width: 320px;
}

.fleet-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.about-cta {
    padding: 100px 0;
    background: #f1f5f9;
    text-align: center;
}

.about-cta h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #0f172a;
}

.about-cta p {
    font-size: 18px;
    margin-bottom: 36px;
    color: #475569;
}

.services-detailed {
    padding: 80px 0;
    background: #ffffff;
}

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.service-detail-block.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f172a;
}

.service-detail-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #0f172a;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 12px;
}

.price-note {
    font-size: 15px;
    color: #64748b;
    font-style: italic;
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    background-color: #e2e8f0;
}

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

.services-cta {
    padding: 100px 0;
    background: #f8fafc;
    text-align: center;
}

.services-cta h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #0f172a;
}

.services-cta p {
    font-size: 18px;
    margin-bottom: 36px;
    color: #475569;
}

.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #0f172a;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f172a;
    font-weight: 600;
}

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

.email-display {
    color: #475569;
    font-weight: 600;
}

.contact-additional {
    padding: 80px 0;
    background: #f8fafc;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #0f172a;
}

.contact-additional p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #475569;
    line-height: 1.7;
}

.contact-tips {
    list-style-position: inside;
    margin: 24px 0;
}

.contact-tips li {
    font-size: 17px;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-section {
    padding: 120px 0;
    background: #f8fafc;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    color: #0f172a;
    margin-bottom: 24px;
}

.thanks-message {
    font-size: 20px;
    color: #475569;
    margin-bottom: 48px;
    line-height: 1.7;
}

.thanks-next-steps {
    background: #ffffff;
    padding: 36px;
    border-radius: 8px;
    margin-bottom: 48px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #0f172a;
}

.thanks-next-steps ul {
    list-style-position: inside;
    text-align: left;
    display: inline-block;
}

.thanks-next-steps li {
    font-size: 17px;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.legal-content {
    padding: 80px 0;
    background: #ffffff;
}

.legal-updated {
    font-size: 14px;
    color: #64748b;
    margin-bottom: 32px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #0f172a;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #334155;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #475569;
    line-height: 1.7;
}

.legal-content ul {
    margin: 20px 0 20px 32px;
}

.legal-content li {
    font-size: 16px;
    color: #475569;
    margin-bottom: 12px;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .intro-section h2,
    .about-values h2,
    .trust-section h2,
    .services-overview h2 {
        font-size: 32px;
    }

    .service-content h3,
    .service-detail-content h2 {
        font-size: 26px;
    }

    .page-header h1 {
        font-size: 36px;
    }

    .contact-form {
        padding: 32px 24px;
    }

    .service-item,
    .service-item.reverse,
    .service-detail-block,
    .service-detail-block.reverse {
        flex-direction: column;
    }

    .main-nav {
        gap: 16px;
        justify-content: center;
    }
}