:root {
    --primary-color: #20b2aa;
    --secondary-color: #ff8c09;
    --dark-color: #2c3e50;
    --light-color: #f8f9fa;
}

html {
    font-size: 62.5%;
}

body {
    font-size: 1.6rem;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}

.container {
    padding-left: 15px;
    padding-right: 15px;
}

.navbar {
    background-color: var(--primary-color);
    padding-top: 0;
    padding-bottom: 0;
}

.navbar-brand img {
    height: 100px;
    width: auto;
}

.navbar-nav {
    .nav-link {
        padding-left: 10px !important;
        padding-right: 10px !important;
        color: #fff;
        transition: all 0.3s ease;

        &:hover {
            background-color: var(--secondary-color);
        }
    }
}

.navbar-toggler {
    border-color: #fff;
}

.custom-hamburger {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    vertical-align: middle;
}

.custom-hamburger .bar {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #fff;
    border-radius: 4px;
    opacity: 1;
    left: 0;
    transition: all 0.3s ease;
}

.custom-hamburger .bar:nth-child(1) {
    top: 5px;
}

.custom-hamburger .bar:nth-child(2) {
    top: 13px;
}

.custom-hamburger .bar:nth-child(3) {
    top: 21px;
}

.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url("https://www.moumachi.com.bd/images/listings/49253/business/20257-kidney-plus-cover.jpg");
    background-size: cover;
    background-position: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
}

.hero-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.highlight-kidney-care {
    color: #ffd700;
    font-weight: 800;
    text-shadow:
        0 0 15px rgba(255, 215, 0, 0.9),
        0 0 30px rgba(255, 140, 9, 0.7),
        0 0 45px rgba(255, 140, 9, 0.5),
        2px 2px 6px rgba(0, 0, 0, 0.5);
    display: inline-block;
    position: relative;
    animation: pulse-glow 2.5s ease-in-out infinite;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 1.05em;
}

@keyframes pulse-glow {

    0%,
    100% {
        text-shadow:
            0 0 15px rgba(255, 215, 0, 0.9),
            0 0 30px rgba(255, 140, 9, 0.7),
            0 0 45px rgba(255, 140, 9, 0.5),
            2px 2px 6px rgba(0, 0, 0, 0.5);
        transform: scale(1);
    }

    50% {
        text-shadow:
            0 0 20px rgba(255, 215, 0, 1),
            0 0 40px rgba(255, 140, 9, 0.9),
            0 0 60px rgba(255, 140, 9, 0.7),
            2px 2px 8px rgba(0, 0, 0, 0.5);
        transform: scale(1.02);
    }
}

.btn {
    font-size: 1.8rem;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #1a9b94;
    border-color: #1a9b94;
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    padding: 12px 30px;
    font-weight: 500;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: #e67e00;
    border-color: #e67e00;
}

.section-padding {
    padding-top: 75px;
    padding-bottom: 75px;
}

@media (max-width: 991px) {
    .section-padding {
        padding-top: 50px;
        padding-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding-top: 35px;
        padding-bottom: 35px;
    }
}

.facts-section {
    background-color: var(--light-color);
}

.fact-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
}

.fact-item:hover {
    border-color: var(--secondary-color);
}

.fact-number {
    font-size: 4.5rem;
    font-weight: bold;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.fact-item:hover .fact-number {
    color: var(--secondary-color);
}

.section-title {
    color: var(--dark-color);
    font-size: 3.5rem;
    font-weight: 700;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.section-title::after {
    content: "";
    position: absolute;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg,
            var(--primary-color),
            var(--secondary-color));
}

@media (max-width: 991px) {
    .fact-number {
        font-size: 3rem;
    }

    .section-title {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.service-cards-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    height: 100%;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    flex-basis: calc(20% - 20px);
    text-align: center;
}

.service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg,
            var(--primary-color),
            var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.25);
    border-color: var(--primary-color);
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 50%;
    background: linear-gradient(135deg,
            rgba(32, 178, 170, 0.1),
            rgba(255, 140, 9, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover .service-icon-wrapper {
    background: var(--secondary-color);
    transform: scale(1.1);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    color: white;
    transform: scale(1.1);
}

.service-title {
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--dark-color);
    margin: 0;
    line-height: 1.5;
}

.service-card:hover .service-title {
    color: var(--primary-color);
}

.doctor-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.doctor-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 25px;
    border: 4px solid var(--primary-color);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.doctor-card:hover .doctor-image {
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    transform: scale(1.05);
}

.doctor-name {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 20px;
}

.education-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #e8f0f5 100%);
    position: relative;
    overflow: hidden;
}

.education-section::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle,
            rgba(32, 178, 170, 0.1) 0%,
            transparent 70%);
    border-radius: 50%;
}

.education-section::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle,
            rgba(255, 140, 9, 0.1) 0%,
            transparent 70%);
    border-radius: 50%;
}

.education-category-title {
    color: var(--dark-color);
    font-weight: 700;
    font-size: 2.4rem;
    margin-bottom: 2rem;
    position: relative;
    display: inline-block;
}

.education-category-title::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg,
            var(--primary-color),
            var(--secondary-color));
    border-radius: 2px;
}

.external-link-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 15px;
    padding: 25px;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.3s ease;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    border: 2px dashed var(--primary-color);
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    height: 100%;
}

.external-link-card:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    border-color: var(--secondary-color);
    border-style: solid;
}

.external-link-icon {
    font-size: 4rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.external-link-card:hover .external-link-icon {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.external-link-content {
    flex: 1;
}

.external-link-title {
    font-weight: 700;
    margin-bottom: 5px;
    font-size: 1.8rem;
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.external-link-badge {
    background: var(--secondary-color);
    color: white;
    font-size: 1.2rem;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: 12px;
    font-weight: 500;
    white-space: nowrap;
    text-transform: uppercase;
}

.external-link-description {
    color: #6c757d;
    font-size: 1.4rem;
    margin: 0;
}

.external-link-arrow {
    color: var(--primary-color);
    font-size: 1.6rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.external-link-card:hover .external-link-arrow {
    color: var(--secondary-color);
}

.pdf-download-card {
    background: white;
    border-radius: 15px;
    padding: 0;
    text-decoration: none;
    color: var(--dark-color);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    border: 2px solid #e0e0e0;
    position: relative;
    overflow: hidden;
    display: block;
}

.pdf-download-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, #dc3545, #c82333);
}

.pdf-download-card:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
    border-color: #dc3545;
}

.pdf-card-header {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe0e0 100%);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 2px dashed #dc3545;
}

.pdf-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.pdf-main-icon {
    font-size: 8rem;
    color: #dc3545;
    transition: all 0.3s ease;
    display: block;
}

.pdf-download-card:hover .pdf-main-icon {
    transform: scale(1.15) rotate(-5deg);
}

.pdf-badge {
    position: absolute;
    top: -8px;
    right: 0px;
    background: var(--secondary-color);
    color: white;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 10px;
    font-weight: 500;
    text-transform: uppercase;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}

.pdf-card-title {
    font-weight: 700;
    margin-bottom: 0;
    color: var(--dark-color);
}

.pdf-card-body {
    padding: 20px;
}

.pdf-download-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.pdf-download-btn {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 10px rgba(220, 53, 69, 0.3);
}

.pdf-download-btn:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    box-shadow: 0 6px 15px rgba(220, 53, 69, 0.4);
    color: white;
}

.pdf-download-btn i {
    font-size: 1.4rem;
}

.pdf-language-badge {
    background: rgba(220, 53, 69, 0.1);
    padding: 4px 12px;
    border-radius: 15px;
    font-weight: 700;
}

@media (max-width: 991px) {
    .pdf-card-header {
        padding: 20px;
    }
}

.forms-section {
    background: white;
}

.payment-cards-grid {
    display: grid;
    grid-gap: 20px;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "payment-card payment-info-card-one"
        "payment-card payment-info-card-two";

    .payment-card {
        grid-area: payment-card;
    }

    .payment-info-card-one {
        grid-area: payment-info-card-one;
    }

    .payment-info-card-two {
        grid-area: payment-info-card-two;
    }
}

@media (max-width: 1199px) {
    .payment-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 991px) {
    .payment-cards-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "payment-card"
            "payment-info-card-one"
            "payment-info-card-two";
    }
}

.payment-section {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.payment-title {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

.payment-title.section-title:after {
    background: #fff;
}

.payment-subtitle {
    color: #fff;
    text-align: center;
    margin-bottom: 3rem;
}

.payment-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.payment-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg,
            var(--primary-color),
            var(--secondary-color));
}

.payment-card:hover {
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
}

.payment-method-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payment-method-title i {
    color: var(--primary-color);
    font-size: 2rem;
}

.payment-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;

    span {
        font-size: 1.4rem;
        font-weight: 700;
        letter-spacing: 1px;
    }
}

.payment-icon {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 3rem;
    color: #495057;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-icon:hover {
    background: var(--light-color);
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.payment-icon.visa {
    color: #1434cb;
}

.payment-icon.mastercard {
    color: #ff5f00;
}

.payment-icon.amex {
    color: #006fcf;
}

.payment-icon.discover {
    color: #f9a021;
}

.payment-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.payment-features li {
    padding: 10px 0;
    color: #6c757d;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.payment-features li i {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.security-badge {
    color: #fff;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-info-card {
    background: #fff;
    backdrop-filter: blur(10px);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
}

.payment-info-icon {
    margin-bottom: 5px;
    color: var(--secondary-color);

    i.fas {
        font-size: 4rem;
    }
}

.payment-info-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.payment-info-text {
    opacity: 0.9;
    margin: 0;
}

.form-card {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.form-card:hover {
    border-color: var(--primary-color);
}

.reviews-section {
    position: relative;
}

.review-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    box-shadow: 0 10px 30px rgba(32, 178, 170, 0.25);
    border-color: var(--primary-color);
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.reviewer-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.8rem;
}

.reviewer-details h5 {
    margin: 0;
    font-weight: 700;
    font-size: 1.6rem;
    color: var(--dark-color);
}

.reviewer-details p {
    margin: 0;
    color: #6c757d;
    font-size: 1.2rem;
}

.review-source {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    white-space: nowrap;
}

.review-source.google {
    background: #4285f4;
    color: white;
}

.review-source.yelp {
    background: #d32323;
    color: white;
}

.review-source.healthgrades {
    background: #1a7fb8;
    color: white;
}

.review-source.vitals {
    background: #00a0df;
    color: white;
}

.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.star {
    color: #ffc107;
    font-size: 1.8rem;
}

.star.empty {
    color: #e0e0e0;
}

.review-text {
    color: #495057;
    font-size: 1.4rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-date {
    color: #6c757d;
    font-size: 1.2rem;
    margin-top: auto;
}

.reviews-cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 767px) {
    .reviewer-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .reviewer-details h5 {
        font-size: 1.4rem;
    }

    .reviewer-details p {
        font-size: 1.1rem;
    }

    .review-text {
        font-size: 1.3rem;
    }

    .review-source {
        font-size: 1rem;
        padding: 4px 10px;
    }
}

.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 50px 0 20px;
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer a:hover {
    color: var(--secondary-color);
}

.phone-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.phone-link:hover {
    color: var(--secondary-color);
}

/* Brand accent color for non-link elements (use instead of text-primary) */
.brand-accent {
    color: var(--primary-color) !important;
}

/* Mobile menu styling */
.mobile-menu {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.3);
    padding: 12px;
}

.mobile-menu .nav-link {
    padding: 12px 14px;
    border-radius: 8px;
    margin: 4px 0;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.mobile-menu .nav-link:hover {
    background-color: var(--light-color);
    transform: translateX(2px);
}

/* Compact buttons on very small screens to avoid wrapping */
@media (max-width: 576px) {
    header {
        .brand-accent {
            font-size: 12px;
        }
    }

    .btn-primary-custom,
    .btn-secondary-custom {
        padding: 8px 12px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        min-height: 50vh;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .doctor-card {
        margin-bottom: 30px;
    }

    .doctor-image {
        width: 150px;
        height: 150px;
    }

    .service-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .service-icon {
        font-size: 2rem;
    }

    .external-link-card {
        padding: 20px;
    }

    .external-link-icon {
        font-size: 3rem;
    }

    .external-link-title {
        font-size: 1.4rem;
    }

    .external-link-description {
        font-size: 1.2rem;
    }

    .external-link-badge {
        font-size: 1rem;
    }

    .external-link-arrow {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .doctor-image {
        width: 120px;
        height: 120px;
    }

    .external-link-icon {
        font-size: 2rem;
    }

    .external-link-title {
        font-size: 1.4rem;
    }

    .external-link-description {
        font-size: 1.2rem;
    }

    .pdf-main-icon {
        font-size: 3.5rem;
    }

    .pdf-download-btn {
        padding: 10px 20px;
        font-size: 1rem;
    }

    .payment-card {
        padding: 25px;
    }

    .payment-icons {
        justify-content: center;
    }
}

/* Privacy Policy Page Styles - Scoped to avoid conflicts */
.privacy-policy-content h1 {
    color: var(--primary-color);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.privacy-policy-content h2 {
    color: var(--primary-color);
    font-size: 2.4rem;
    font-weight: 700;
    margin-top: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.privacy-policy-content h2:first-of-type {
    margin-top: 2rem;
}

.privacy-policy-content h4 {
    color: var(--dark-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-policy-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.privacy-policy-content ul {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-policy-content li {
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.privacy-policy-content strong {
    font-weight: 700;
    color: var(--dark-color);
}

.privacy-policy-content .text-danger {
    color: #dc3545;
    font-weight: 600;
}

@media (max-width: 991px) {
    .privacy-policy-content h1 {
        font-size: 3rem;
    }

    .privacy-policy-content h2 {
        font-size: 2rem;
        margin-top: 3rem;
    }

    .privacy-policy-content h4 {
        font-size: 1.6rem;
    }
}

@media (max-width: 767px) {
    .privacy-policy-content h1 {
        font-size: 2.5rem;
    }

    .privacy-policy-content h2 {
        font-size: 1.8rem;
        margin-top: 2.5rem;
    }

    .privacy-policy-content h4 {
        font-size: 1.4rem;
    }

    .privacy-policy-content p,
    .privacy-policy-content ul {
        font-size: 1.4rem;
    }
}

/* About Us Page Styles - Scoped to avoid conflicts */
.about-us-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-us-content h3 {
    color: var(--primary-color);
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.about-us-content p {
    font-size: 1.6rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-us-content ul {
    font-size: 1.6rem;
    line-height: 1.8;
}

.about-us-content li {
    margin-bottom: 1rem;
    color: var(--dark-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.about-us-content .bi-check-circle-fill {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.about-us-content strong {
    font-weight: 700;
    color: var(--dark-color);
}

.about-us-content .text-primary {
    color: var(--primary-color) !important;
}

.about-us-highlight-box {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin-top: 3rem;
}

.about-us-highlight-box strong {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .about-us-content h3 {
        font-size: 2rem;
    }
}

@media (max-width: 767px) {
    .about-us-content h3 {
        font-size: 1.8rem;
        padding-left: 1rem;
    }

    .about-us-content p,
    .about-us-content ul {
        font-size: 1.4rem;
    }

    .about-us-highlight-box {
        padding: 2rem;
    }
}