/* ===== COMPARISON TABLE FIX ===== */
.clinic-comparison {
    padding: 50px 0;
    background: #fff;
}

.clinic-comparison h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

.comparison-table-container {
    overflow-x: auto;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

/* Header row - orange background */
.comparison-table thead tr th {
    background-color: #E87722 !important;
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    padding: 8px 12px;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* First header cell (Feature) */
.comparison-table thead tr th:first-child {
    text-align: left;
    background-color: #E87722 !important;
}

/* Body rows */
.comparison-table tbody tr {
    border-bottom: 1px solid #f0f0f0;
}

.comparison-table tbody tr:hover {
    background-color: #fff9f5;
}

/* Feature column (left) - orange text */
.comparison-table tbody tr td:first-child {
    color: #E87722 !important;
    font-weight: 600;
    font-size: 14px;
    padding: 7px 12px;
    vertical-align: middle;
}

/* MS Skin Clinic column (middle) - orange text with bold highlights */
.comparison-table tbody tr td:nth-child(2) {
    color: #E87722 !important;
    font-weight: 500;
    font-size: 14px;
    padding: 7px 12px;
    text-align: center;
    vertical-align: middle;
}

.comparison-table tbody tr td:nth-child(2) strong {
    color: #E87722 !important;
    font-weight: 700;
}

/* Others column (right) - regular dark text */
.comparison-table tbody tr td:nth-child(3) {
    color: #555 !important;
    font-size: 14px;
    padding: 7px 12px;
    text-align: center;
    vertical-align: middle;
}

/* ===== WHY CHOOSE US SECTION FIX ===== */
.why-section {
    padding: 50px 0;
    background: #f9f9f9;
}

.why-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
}

/* Grid item cards - white background */
.grid-item {
    background: #fff !important;
    border: 1.5px solid #e8ddd4;
    border-radius: 12px;
    padding: 20px 18px;
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 14px !important;
    height: 100%;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.grid-item:hover {
    box-shadow: 0 6px 20px rgba(232, 119, 34, 0.12);
}

/* Icon wrapper - small orange circle */
.icon-wrapper {
    background-color: #E87722 !important;
    color: #fff !important;
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
    max-width: 42px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 17px !important;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Box content text */
.box-content {
    flex: 1;
}

.box-content h5 {
    color: #222 !important;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.35;
}

.box-content p {
    color: #666 !important;
    font-size: 13.5px;
    margin-bottom: 0;
    line-height: 1.6;
}
.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
    display: none;
}