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

:root {
    --primary-color: #2c5f2d;
    --primary-dark: #1e4620;
    --primary-light: #4a8a4d;
    --accent-color: #d97706;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6b6b6b;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --error-color: #dc2626;
    --success-color: #16a34a;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #fbbf24;
}

.main-nav {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 26px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}

.hero-section {
    background-color: var(--bg-light);
    padding: 80px 24px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-section h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.2s;
}

.cta-button:hover {
    background-color: var(--primary-dark);
}

.hero-image {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: var(--border-color);
}

.intro-section {
    padding: 96px 24px;
    background-color: var(--bg-white);
}

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

.container-narrow {
    max-width: 750px;
    margin: 0 auto;
}

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.intro-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.benefits-section {
    padding: 96px 24px;
    background-color: var(--primary-color);
    color: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.benefit-card {
    text-align: center;
}

.benefit-icon {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 16px;
    opacity: 0.9;
}

.visual-break {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--border-color);
}

.services-pricing {
    padding: 96px 24px;
    background-color: var(--bg-light);
}

.services-pricing h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 56px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-item {
    display: flex;
    gap: 40px;
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.07);
}

.service-visual {
    flex: 0 0 45%;
    background-color: var(--border-color);
}

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

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

.service-details h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-details p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0;
}

.select-service {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    margin-top: auto;
}

.select-service:hover {
    background-color: var(--primary-dark);
}

.order-form-section {
    padding: 96px 24px;
    background-color: var(--bg-white);
}

.order-form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 48px;
}

.order-form {
    background-color: var(--bg-light);
    padding: 48px;
    border-radius: 12px;
}

.selected-service-display {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    border-left: 4px solid var(--primary-color);
}

.selected-service-display p {
    margin: 0;
    font-size: 16px;
    color: var(--text-medium);
}

.selected-service-display.active {
    background-color: #d1fae5;
    border-left-color: var(--success-color);
}

.selected-service-display.active p {
    color: var(--text-dark);
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    background-color: var(--accent-color);
    color: white;
    border: none;
    padding: 16px 48px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
}

.submit-button:hover {
    background-color: #b45309;
}

.submit-button:disabled {
    background-color: #d1d5db;
    cursor: not-allowed;
}

.trust-section {
    padding: 96px 24px;
    background-color: var(--bg-light);
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 56px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.trust-item strong {
    display: block;
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.trust-item p {
    font-size: 16px;
    color: var(--text-medium);
}

.disclaimer-section {
    padding: 64px 24px;
    background-color: #fef3c7;
}

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

.main-footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 64px 24px 24px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 48px;
}

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

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

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

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

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

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: white;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    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: 24px;
}

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

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

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.cookie-btn.accept {
    background-color: var(--success-color);
    color: white;
}

.cookie-btn.reject {
    background-color: #6b7280;
    color: white;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 80px 24px;
    text-align: center;
}

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

.header-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

.about-content-section,
.services-intro,
.contact-section,
.legal-page {
    padding: 80px 24px;
}

.content-block {
    margin-bottom: 56px;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.content-block p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 16px;
}

.about-visual-break {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
}

.about-visual-break img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--border-color);
}

.values-section {
    padding: 96px 24px;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 56px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    color: var(--text-medium);
}

.team-section,
.compliance-section {
    padding: 80px 24px;
    background-color: var(--bg-white);
}

.team-section h2,
.compliance-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.fleet-section {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.fleet-section h2 {
    font-size: 36px;
    margin-bottom: 48px;
    text-align: center;
}

.fleet-content {
    display: flex;
    gap: 48px;
    align-items: center;
}

.fleet-text {
    flex: 1;
}

.fleet-text p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.fleet-list {
    list-style: none;
    padding-left: 0;
}

.fleet-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: var(--text-medium);
}

.fleet-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.fleet-image {
    flex: 0 0 45%;
}

.fleet-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: var(--border-color);
}

.cta-about-section,
.cta-services-section,
.cta-contact-section {
    padding: 80px 24px;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-about-section h2,
.cta-services-section h2,
.cta-contact-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-about-section p,
.cta-services-section p,
.cta-contact-section p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-about-section .cta-button,
.cta-contact-section .cta-button {
    background-color: white;
    color: var(--primary-color);
}

.cta-about-section .cta-button:hover,
.cta-contact-section .cta-button:hover {
    background-color: var(--bg-light);
}

.cta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid white;
    transition: all 0.2s;
}

.cta-button-secondary:hover {
    background-color: white;
    color: var(--primary-color);
}

.detailed-services {
    padding: 80px 24px;
}

.service-detailed {
    display: flex;
    gap: 48px;
    margin-bottom: 80px;
    align-items: center;
}

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

.service-img-wrapper {
    flex: 0 0 48%;
}

.service-img-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: var(--border-color);
}

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

.service-text-wrapper h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-text-wrapper p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 14px;
}

.price-display {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 20px 0 8px;
}

.price-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.additional-info {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.additional-info h2 {
    font-size: 32px;
    margin-bottom: 48px;
    text-align: center;
}

.info-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.info-block {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.info-block p {
    font-size: 16px;
    color: var(--text-medium);
}

.contact-layout {
    display: flex;
    gap: 64px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon {
    color: var(--primary-color);
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 16px;
    color: var(--text-medium);
    margin: 0;
}

.email-display {
    font-weight: 600;
    color: var(--text-dark);
    user-select: all;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-top: 4px;
}

.contact-map {
    flex: 1;
}

.contact-map h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.map-placeholder {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 16px;
}

.map-placeholder img {
    width: 100%;
    height: auto;
    object-fit: cover;
    background-color: var(--border-color);
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 8px;
}

.map-overlay p {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.map-description {
    font-size: 15px;
    color: var(--text-medium);
}

.contact-faq {
    padding: 80px 24px;
    background-color: var(--bg-light);
}

.contact-faq h2 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-medium);
    margin: 0;
}

.legal-page {
    background-color: var(--bg-white);
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 48px;
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-footer {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

.thanks-section {
    padding: 120px 24px;
    background-color: var(--bg-light);
}

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

.thanks-icon {
    margin-bottom: 32px;
    color: var(--success-color);
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 40px;
}

.selected-service-summary {
    background-color: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 40px;
    border-left: 4px solid var(--primary-color);
}

.selected-service-summary p {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
}

.next-steps {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps ol {
    padding-left: 24px;
}

.next-steps li {
    font-size: 16px;
    color: var(--text-medium);
    margin-bottom: 12px;
}

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

.btn-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.2s;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.2s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

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

    .hamburger {
        display: flex;
    }

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

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

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

    .service-visual {
        flex: 0 0 auto;
        height: 250px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }

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

    .service-detailed.reverse {
        flex-direction: column;
    }

    .service-img-wrapper {
        flex: 0 0 auto;
    }

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

    .fleet-image {
        flex: 0 0 auto;
    }

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

    .cta-buttons-group {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }
}