/* Minimally Invasive Dentistry CSS */

:root {
    --beige: #F0EFE7;
    --logo-gray: #183D4A;
    --logo-blue: #13C2CF;
    --logo-gold: #ECD8B6;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--logo-gray);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: 'Libre Baskerville', serif;
}

/* Page Layout */
.minimally-invasive-page {
    position: relative;
    width: 100%;
}

/* Common Section Styles */
.section-title {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 32px;
    color: var(--logo-gray);
    margin-bottom: 50px;
}


/* Procedure Table Styles */
.procedure-table-section {
    background: var(--beige);
    padding: 60px 0;
}

.procedure-category-title {
    font-family: 'Lora', serif;
    font-weight: 600;
    font-size: 38px;
    color: var(--logo-gray);
    color: var(--logo-gray);
    text-align: left;
    margin-bottom: 40px;
}

.custom-table {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1050px;
    margin: 0 auto;
    border: 1px solid var(--logo-gray);
    border-radius: 4px;
    overflow: hidden;
}

.table-row {
    display: flex;
    width: 100%;
    min-height: 70px;
    background: var(--beige);
    border-bottom: 1px solid var(--logo-gray);
    /* Border logic from Figma seems mixed, simplifying */
}

.table-row:last-child {
    border-bottom: none;
}

.table-col-left {
    width: 38%;
    /* Approx 400px / 1050px */
    background: var(--logo-gray);
    color: var(--logo-gold);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-family: 'Lora', serif;
    font-weight: 700;
    font-size: 22px;
    line-height: 1.4;
    border-right: 1px solid var(--logo-gold);
}

.table-col-right {
    width: 62%;
    /* Approx 750px / 1050px */
    background: var(--logo-gold);
    color: var(--logo-gray);
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-family: 'Lora', serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.4;
}

/* Benefits Section (Reusing standard styles) */
.benefits {
    background: var(--beige);
    padding: 60px 0;
}

.benefit-list {
    list-style: none;
    padding: 0;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-list li {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-family: 'Montserrat';
    font-weight: 400;
    font-size: 22px;
    line-height: 1.5;
    color: var(--logo-gray);
}

.tooth-icon-wrapper {
    position: relative;
    width: 24px;
    height: 24px;
    margin-right: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tooth-icon-wrapper::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--logo-blue);
    mask: url('../../assets/service/surgical-icu/teeth_icon.png') no-repeat center;
    -webkit-mask: url('../../assets/service/surgical-icu/teeth_icon.png') no-repeat center;
    mask-size: contain;
    -webkit-mask-size: contain;
}

/* Responsive */
@media (max-width: 768px) {


    .table-row {
        flex-direction: column;
    }

    .table-col-left,
    .table-col-right {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }
}