/* Base Styles */
body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}

.customservicedetails-section {
    padding: 20px;
}

.customservicedetails-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: row; /* Ensure content and sidebar stay in the same row */
    gap: 20px;
    box-sizing: border-box;
}

/* Content Section Styling */
.customservicedetails-content {
    flex: 2; /* 70% width */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.customservicedetails-breadcrumbs {
    margin-bottom: 20px;
    font-size: 1rem;
}

.customservicedetails-breadcrumbs a {
    color: #007bff;
    text-decoration: none;
}

.customservicedetails-breadcrumbs span {
    color: #6c757d;
}

.customservicedetails-image {
    flex: 1;
    min-width: 300px;
}

.customservicedetails-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.customservicedetails-info {
    flex: 2;
    min-width: 300px;
}

.customservicedetails-info h1 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.customservicedetails-info p {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.customservicedetails-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #28a745;
}

/* Sidebar Section Styling */
.rightsidebar-container {
    flex: 1; /* 30% width */
    max-width: 350px;
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .customservicedetails-container {
        flex-direction: column; /* Stack content and sidebar vertically */
    }

    .customservicedetails-content {
        flex: 1; /* Full width for content */
    }

    .rightsidebar-container {
        flex: 1; /* Full width for sidebar */
        margin-top: 20px;
    }
}
