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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.main-header {
    background-color: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    transition: opacity 0.3s ease;
}

.main-nav a:hover {
    opacity: 0.7;
}

.ad-notice {
    background-color: #e74c3c;
    color: #ffffff;
    padding: 4px 12px;
    font-size: 12px;
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.9;
}

.hero-right {
    flex: 1;
    background-color: #34495e;
}

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

.cta-primary {
    display: inline-block;
    background-color: #e74c3c;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #c0392b;
}

.cta-secondary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.why-choose-split {
    padding: 80px 0;
    background-color: #ffffff;
}

.split-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.split-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

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

.link-arrow {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #2980b9;
}

.featured-equipment {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.featured-equipment h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

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

.equipment-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.equipment-card:hover {
    transform: translateY(-5px);
}

.equipment-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #ecf0f1;
}

.equipment-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px 20px;
    color: #2c3e50;
}

.equipment-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 20px 20px 20px;
    color: #666;
}

.rental-form-section {
    padding: 80px 0;
    background-color: #2c3e50;
}

.form-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.form-info {
    flex: 1;
    color: #ffffff;
}

.form-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-info p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 30px;
    opacity: 0.9;
}

.form-features {
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 20px;
    color: #2ecc71;
}

.form-container {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    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: #3498db;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #c0392b;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 0 30px 0;
}

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.7;
    margin-bottom: 10px;
}

.page-header {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.services-section {
    padding: 80px 0;
}

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

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

.service-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.service-details p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #555;
}

.price-tag {
    font-size: 28px;
    color: #e74c3c;
    font-weight: 700;
    margin: 25px 0;
}

.btn-service {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.services-cta {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

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

.about-hero {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.about-split {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-content {
    flex: 1;
}

.about-content h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.2;
}

.about-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

.about-image {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

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

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.approach-split {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.team-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.team-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 20px auto;
    padding: 0 20px;
}

.cta-section {
    padding: 80px 0;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
}

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

.contact-section h1 {
    font-size: 44px;
    margin-bottom: 50px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-main {
    flex: 2;
}

.contact-block {
    margin-bottom: 50px;
}

.contact-block h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-note {
    font-size: 15px;
    color: #777;
    margin-top: 10px;
}

.hours-grid {
    margin-bottom: 20px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.hours-row .day {
    font-weight: 600;
    color: #2c3e50;
}

.hours-row .time {
    color: #555;
}

.hours-note {
    font-size: 15px;
    color: #777;
}

.contact-sidebar {
    flex: 1;
}

.sidebar-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.sidebar-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.btn-sidebar {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-content > p {
    font-size: 18px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 50px;
}

.next-steps {
    text-align: left;
    margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.step-item {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 700;
}

.step-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.thanks-cta {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-cta p {
    font-size: 16px;
    color: #555;
    margin-bottom: 5px;
}

.thanks-links {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn-home,
.btn-services {
    display: inline-block;
    padding: 14px 35px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-home {
    background-color: #3498db;
    color: #ffffff;
}

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

.btn-services {
    background-color: #2c3e50;
    color: #ffffff;
}

.btn-services:hover {
    background-color: #1a252f;
}

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

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-updated {
    font-size: 15px;
    color: #777;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    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: 30px;
    flex-wrap: wrap;
}

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

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

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

.btn-accept {
    background-color: #2ecc71;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #27ae60;
}

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

@media (max-width: 968px) {
    .hero-split {
        flex-direction: column;
        min-height: auto;
    }

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

    .split-container,
    .about-split,
    .form-split {
        flex-direction: column;
    }

    .service-row,
    .service-row.reverse {
        flex-direction: column;
    }

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

    .hero-text h1 {
        font-size: 36px;
    }

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

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

@media (max-width: 768px) {
    .main-nav {
        gap: 15px;
        font-size: 14px;
    }

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

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

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