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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #ecf0f1;
    --bg-white: #ffffff;
    --border-color: #bdc3c7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: white;
    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 1 300px;
    margin: 0;
    font-size: 14px;
}

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

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

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

.btn-cookie-accept:hover {
    background: #2980b9;
}

.btn-cookie-reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.header-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 12px;
    color: var(--text-light);
    padding: 4px 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
}

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

.main-nav a {
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    min-height: 500px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 60px 5%;
    background: var(--bg-light);
}

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

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 500px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.cta-hero:hover {
    background: #2980b9;
}

.hero-visual {
    flex: 1;
    min-height: 500px;
}

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

.intro-alternating {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.intro-visual {
    flex: 1;
}

.intro-visual img {
    border-radius: 8px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.services-preview {
    padding: 80px 5%;
    background: var(--bg-light);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.service-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
}

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

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.link-arrow {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.split-feature {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.feature-text {
    flex: 1;
}

.feature-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.feature-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: var(--text-dark);
    font-size: 17px;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    border-radius: 8px;
}

.stats-section {
    padding: 60px 5%;
    background: var(--primary-color);
    color: white;
}

.stats-container {
    display: flex;
    justify-content: space-around;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-alt {
    padding: 80px 5%;
    background: var(--bg-light);
}

.testimonials-alt h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonials-flex {
    display: flex;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-block {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-block p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-block cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.equipment-form-section {
    padding: 80px 5%;
}

.form-container-split {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-info p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.form-wrapper {
    flex: 1;
}

.rental-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.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 select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #2980b9;
}

.location-highlight {
    padding: 80px 5%;
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.location-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.location-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-2px);
}

.footer-modern {
    background: var(--primary-color);
    color: white;
    padding: 60px 5% 20px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 40px;
    gap: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-hero-split {
    display: flex;
    min-height: 400px;
    align-items: center;
}

.about-hero-text {
    flex: 1;
    padding: 60px 5%;
    background: var(--bg-light);
}

.about-hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-hero-text p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.about-hero-image {
    flex: 1;
    min-height: 400px;
}

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

.about-story {
    padding: 80px 5%;
}

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

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

.story-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.values-split {
    padding: 80px 5%;
    background: var(--bg-light);
    display: flex;
    gap: 40px;
}

.value-block {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
}

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

.value-block p {
    color: var(--text-light);
    line-height: 1.6;
}

.team-approach {
    padding: 80px 5%;
}

.team-approach h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: var(--primary-color);
}

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.approach-text {
    flex: 1;
}

.approach-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.approach-image {
    flex: 1;
}

.approach-image img {
    border-radius: 8px;
}

.cta-about {
    padding: 80px 5%;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

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

.cta-about p {
    font-size: 18px;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: var(--secondary-color);
    font-weight: 600;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.services-header {
    padding: 60px 5%;
    background: var(--bg-light);
    text-align: center;
}

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-header p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-catalog {
    padding: 60px 5%;
}

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

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

.service-details {
    flex: 2;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-details p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.equipment-list {
    list-style: none;
    padding: 0;
}

.equipment-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
    font-size: 16px;
}

.equipment-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-size: 24px;
    line-height: 1;
}

.service-pricing {
    flex: 1;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

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

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

.btn-request {
    display: block;
    padding: 14px 32px;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    text-align: center;
    transition: background 0.3s ease;
}

.btn-request:hover {
    background: #2980b9;
}

.pricing-info {
    padding: 60px 5%;
    background: var(--bg-light);
}

.pricing-info h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.pricing-details-split {
    display: flex;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-column {
    flex: 1;
}

.pricing-column h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pricing-column p {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.services-cta {
    padding: 80px 5%;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.services-cta p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.contact-header {
    padding: 60px 5%;
    background: var(--bg-light);
    text-align: center;
}

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-header p {
    font-size: 20px;
    color: var(--text-light);
}

.contact-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

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

.info-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.info-section p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
}

.info-section .note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-map-placeholder {
    flex: 1;
}

.map-substitute {
    background: var(--bg-light);
    padding: 60px 40px;
    border-radius: 8px;
    text-align: center;
}

.map-substitute p {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.visit-info {
    padding: 60px 5%;
    background: var(--bg-light);
}

.visit-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.visit-info p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-info-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
}

.delivery-text {
    flex: 1;
}

.delivery-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.delivery-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.delivery-list {
    list-style: none;
    padding: 0;
}

.delivery-list li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: var(--text-dark);
    font-size: 17px;
}

.delivery-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.delivery-image {
    flex: 1;
}

.delivery-image img {
    border-radius: 8px;
}

.contact-cta {
    padding: 80px 5%;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

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

.contact-cta p {
    font-size: 18px;
    margin-bottom: 32px;
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

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

.thanks-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-service-info {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 32px;
    font-weight: 600;
    color: var(--primary-color);
}

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

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

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

.thanks-next-steps li {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 12px;
    line-height: 1.6;
}

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

.btn-primary {
    padding: 14px 32px;
    background: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #2980b9;
}

.btn-secondary {
    padding: 14px 32px;
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.legal-content {
    padding: 60px 5%;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-content li {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 20px;
    }

    .header-right {
        flex-direction: column;
        gap: 15px;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .hero-split,
    .intro-alternating,
    .split-feature,
    .approach-split,
    .service-item-split,
    .contact-split,
    .delivery-info-split,
    .form-container-split,
    .about-hero-split {
        flex-direction: column;
    }

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

    .hero-content h1,
    .about-hero-text h1,
    .services-header h1,
    .contact-header h1 {
        font-size: 36px;
    }

    .intro-text h2,
    .feature-text h2,
    .services-preview h2,
    .testimonials-alt h2 {
        font-size: 30px;
    }

    .services-grid,
    .testimonials-flex,
    .values-split,
    .pricing-details-split,
    .stats-container,
    .footer-main {
        flex-direction: column;
    }

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

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