/* Implant Dentistry CSS */

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

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

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

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

/* Digital Implant Planning Title */
.digital-planning-title {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 600;
    font-size: 50px;
    line-height: 1;
    /* Match Figma 50px line height if needed, usually tight for headers */
    color: var(--logo-gray);
    margin-bottom: 25px;
    /* Visual spacing */
    display: inline-block;
}

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

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

.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: 45px;
    /* From Figma dump */
    color: var(--logo-gray);
}

.tooth-icon-wrapper {
    position: relative;
    width: 22px;
    /* Figma 22px */
    height: 20px;
    /* Figma 19.8px */
    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;
}

.tooth-icon {
    display: none;
    /* Hide img tag, use mask */
}

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

    .section-title,
    .digital-planning-title {
        font-size: 36px;
        /* Adjust for mobile */
        text-align: center;
    }
}