.page-rental {
    background: #f5f5f5;
}

.rental-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.product-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.tab-button {
    flex: 1;
    padding: 18px 25px;
    background: #e9ecef;
    border: 2px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-size: 19px;
    font-weight: bold;
    color: #495057;
    transition: all 0.3s;
}

.tab-button:hover {
    background: #dee2e6;
    transform: translateY(-2px);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.tab-button.active {
    background: #2c5282;
    color: #fff;
    border-color: #2c5282;
    box-shadow: 0 3px 10px rgba(44, 82, 130, 0.3);
}

.product-content {
    display: none;
}

.product-content.active {
    display: block;
}

.rental-header {
    background: #fff;
    padding: 0;
    margin-bottom: 30px;
    border: 1px solid #ddd;
}

.price-box {
    background: #2c5282;
    color: #fff;
    padding: 30px;
    text-align: center;
}

.price-box h2 {
    font-size: 28px;
    font-weight: bold;
    margin: 0 0 20px 0;
    color: #fff;
}

.offer-text {
    font-size: 17px;
    margin: 0;
    line-height: 1.8;
    font-weight: 300;
    color: #e6f2ff;
}

.rental-section {
    background: #fff;
    padding: 30px;
    margin-bottom: 30px;
    border: 1px solid #ddd;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    color: #2d3748;
    margin-bottom: 25px;
    border-bottom: 2px solid #2c5282;
    padding-bottom: 10px;
}

.section-content p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.intro-text {
    font-size: 18px;
    color: #333;
}

.step-item {
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    background: #2c5282;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    margin-right: 20px;
}

.step-content {
    flex: 1;
}

.step-content p {
    margin-bottom: 15px;
}

.address-box {
    background: #f7fafc;
    border-left: 4px solid #2c5282;
    padding: 20px;
    margin: 20px 0;
}

.address-box p {
    margin: 0;
    line-height: 1.8;
}

.option-box {
    background: #f7fafc;
    border-left: 3px solid #4a90a4;
    padding: 20px;
    margin: 15px 0;
}

.option-box h4 {
    font-size: 18px;
    font-weight: bold;
    color: #2c5282;
    margin-top: 0;
    margin-bottom: 10px;
}

.option-box p {
    margin-bottom: 10px;
}

.option-box p:last-child {
    margin-bottom: 0;
}

.contact-info {
    background: #fff3cd;
    border-left: 4px solid #ff9800;
    padding: 20px;
    margin: 25px 0;
}

.contact-info p {
    margin: 0;
    color: #856404;
    font-size: 16px;
}

.contact-info a {
    color: #2c5282;
    font-weight: bold;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .rental-wrapper {
        padding: 20px 15px;
    }

    .tab-button {
        font-size: 16px;
        padding: 12px 15px;
    }

    .rental-section,
    .price-box {
        padding: 20px;
    }

    .price-box h2 {
        font-size: 22px;
    }

    .offer-text {
        font-size: 16px;
    }

    .section-title {
        font-size: 20px;
    }

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

    .step-number {
        margin-bottom: 15px;
    }
}
