/* Microscopic 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 */
.microscopic-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;
}

/* Applications Section */
.applications-section {
    background: var(--beige);
    padding: 60px 0;
}

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

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

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

.benefits-content {
    max-width: 1115px;
    margin: 0 auto;
}

.benefit-list {
    list-style: none;
    padding: 0;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    /* Aligns top for multi-line text */
    margin-bottom: 30px;
    font-family: 'Montserrat';
    font-weight: 700;
    font-size: 22px;
    line-height: 1.5;
    /* Adjusted for readability */
    color: var(--logo-gray);
}

.benefit-list li span {
    font-weight: normal;
    /* Description part normal weight if needed, though dump says all bold/700? */
}

/* Icon Wrapper */
.tooth-icon-wrapper {
    position: relative;
    width: 26px;
    /* 26.26px from Figma */
    height: 22px;
    margin-right: 30px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    margin-top: 5px;
    /* Visual alignment for text */
}

.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) {
    .section-title {
        text-align: center;
        font-size: 28px;
    }

    .applications-list li,
    .benefit-list li {
        font-size: 18px;
        line-height: 1.4;
    }
}