/* Endodontic 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 */
.endodontic-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;
}


/* Learn More promo section */
.learn-more-promo {
    position: relative;
    text-align: center;
    padding: 80px 0;
    background: var(--beige);
}

.promo-text {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: 500;
    font-size: 32px;
    color: var(--logo-gray);
    margin-bottom: 40px;
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
}

.promo-btn {
    display: inline-block;
    padding: 10px 30px;
    background: var(--logo-blue);
    color: var(--logo-gray);
    font-family: 'Lora', serif;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    border-radius: 4px;
    /* Default radius, Figma implies block but common style usually has radius */
}


/* Responsive */
@media (max-width: 768px) {
    .root-canal-text {
        font-size: 18px;
        line-height: 1.6;
        padding-left: 20px;
    }

    .promo-text {
        font-size: 24px;
        padding: 0 20px;
    }
}