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

.ad-disclosure {
    background: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 13px;
}

.header {
    background: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
}

.nav {
    display: flex;
    gap: 35px;
}

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

.nav a:hover {
    color: #27ae60;
}

.btn-header {
    background: #27ae60;
    color: #ffffff;
    padding: 10px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-header:hover {
    background: #229954;
}

.hero-card {
    background: #f8f9fa;
    padding: 80px 40px;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-text p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    background: #27ae60;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #229954;
}

.hero-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #d5d8dc;
}

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

.intro-cards {
    padding: 80px 40px;
}

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

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

.info-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 40px 32px;
    text-align: center;
}

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

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.info-card p {
    color: #546e7a;
    font-size: 15px;
}

.equipment-section {
    padding: 80px 40px;
    background: #ffffff;
}

.equipment-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 60px;
}

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

.equipment-card {
    flex: 0 0 calc(33.333% - 20px);
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #d5d8dc;
}

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

.card-body {
    padding: 28px;
}

.card-body h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.card-body p {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-select:hover {
    background: #229954;
}

.testimonial-card {
    background: #ecf9f2;
    padding: 80px 40px;
}

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

.testimonial-content blockquote {
    border: none;
}

.testimonial-content p {
    font-size: 22px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 16px;
    color: #546e7a;
    font-style: normal;
    font-weight: 600;
}

.rental-form-section {
    padding: 80px 40px;
    background: #ffffff;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 17px;
    color: #546e7a;
}

.booking-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d5d8dc;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #27ae60;
}

.btn-submit {
    width: 100%;
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-submit:hover {
    background: #229954;
}

.why-us-cards {
    padding: 80px 40px;
    background: #f8f9fa;
}

.why-us-cards h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.reason-card {
    flex: 1;
    background: #ffffff;
    padding: 36px;
    border-radius: 12px;
    border: 1px solid #e1e8ed;
}

.reason-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.reason-card p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.6;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 20px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

.footer-col p {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.7;
}

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

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

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

.footer-col ul li a:hover {
    color: #27ae60;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 20px;
    z-index: 200;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

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

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

.btn-cookie,
.btn-cookie-alt {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-cookie {
    background: #27ae60;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #229954;
}

.btn-cookie-alt {
    background: #7f8c8d;
    color: #ffffff;
}

.btn-cookie-alt:hover {
    background: #6c7a7b;
}

.about-hero {
    background: #f8f9fa;
    padding: 100px 40px 80px;
}

.about-hero h1 {
    font-size: 52px;
    text-align: center;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 20px;
    text-align: center;
    color: #546e7a;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 40px;
}

.content-section h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.content-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.two-col-section {
    display: flex;
    gap: 60px;
    align-items: center;
}

.col-text {
    flex: 1;
}

.col-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    background: #d5d8dc;
}

.col-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.service-item {
    flex: 0 0 calc(50% - 20px);
    background: #ffffff;
    border: 1px solid #e1e8ed;
    border-radius: 12px;
    padding: 36px;
}

.service-item h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-item p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-item .price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
}

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

.contact-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.contact-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-card p {
    font-size: 17px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 12px;
}

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

.legal-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 30px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 8px;
}

.thanks-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 100px 40px;
}

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

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #27ae60;
}

.thanks-container p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

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

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

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

    .equipment-card {
        flex: 0 0 100%;
    }

    .reasons-grid {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
        gap: 30px;
    }

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

    .two-col-section {
        flex-direction: column;
    }

    .service-item {
        flex: 0 0 100%;
    }
}