.rad-crm-services-container {
    max-width: 1200px;
    margin: 0 auto;
    font-family: inherit;
}
.rad-category-section {
    margin-bottom: 40px;
}
.rad-category-title {
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}
.rad-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}
.rad-service-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.rad-service-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.rad-service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.rad-service-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.rad-service-title {
    font-size: 18px;
    margin: 0 0 10px 0;
}
.rad-service-price-box {
    margin-bottom: 15px;
    color: #2c3e50;
}
.rad-price {
    font-size: 20px;
    font-weight: bold;
    color: #e74c3c;
}
.rad-cycle {
    font-size: 14px;
    color: #7f8c8d;
}
.rad-service-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
    flex-grow: 1;
}
.rad-order-btn {
    background: #3498db;
    color: #fff;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    width: 100%;
}
.rad-order-btn:hover {
    background: #2980b9;
}
