/*********************************************************************/
/******************************* ROOT *******************************/
/*********************************************************************/

:root {
    --primary: #1a65e8;
    --dark: #0f1b4c;
    --text: #6c757d;

    --title-xl: clamp(2rem, 5vw, 42px);
    --title-lg: clamp(1.8rem, 4vw, 35px);
    --title-md: clamp(1.5rem, 3vw, 28px);
    --title-sm: clamp(1.3rem, 2.5vw, 24px);
    --title-xs: clamp(1.1rem, 2vw, 20px);

    --text-lg: clamp(1.1rem, 2vw, 20px);
    --text-md: clamp(1rem, 1.5vw, 18px);
    --text-sm: clamp(0.95rem, 1.2vw, 16px);
    --text-xs: clamp(0.85rem, 1vw, 14px);
}

.iconLogo {
    width: 20px;
    height: 20px;
    margin-right: 10px;
    object-fit: contain;
}

/*********************************************************************/
/******************************* HERO *******************************/
/*********************************************************************/

.hero {
    background-image: url('/assets/images/docmo/home/bannerHome1.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 100px 0;
    min-height: 60vh;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: var(--title-xl);
    font-weight: 700;
    line-height: 1.2;
}

.hero p {
    font-size: var(--text-md);
    color: #e0e0e0;
}

.hero .subtitle {
    font-size: var(--text-sm);
    opacity: 0.85;
}

.hero .btn-primary {
    background: var(--primary);
    border: none;
    padding: 12px 24px;
    font-size: var(--text-md);
    border-radius: 10px;
}

.hero .btn-primary:hover {
    transform: scale(1.01);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .15);
}

.hero .note {
    font-size: var(--text-xs);
    margin-top: 25px;
    opacity: 0.8;
    white-space: nowrap;
}

/*********************************************************************/
/******************************* PROMO *******************************/
/*********************************************************************/

.cost-section {
    background-color: #1a65e8;
    color: #fff;
    padding: 10px 0;
}

.cost-section h2 {
    font-size: var(--title-sm);
    font-weight: 200;
    line-height: 1.3;
}

.cost-section .highlight {
    font-weight: 700;
}

.cost-gif {
    max-width: 400px;
}

@media (max-width: 991px) {
    .cost-section {
        text-align: center;
    }

    .cost-gif {
        max-width: 250px;
        margin: 0 auto;
    }
}

/*********************************************************************/
/***************************** TIMELINE ******************************/
/*********************************************************************/

.how-section {
    padding: 50px 0;
    background: #f8f9fc;
}

.how-badge {
    display: inline-block;
    background: #f5b7a5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: var(--text-xs);
}

.how-title {
    font-size: var(--title-lg);
    font-weight: 700;
    color: var(--dark);
}

.how-subtitle {
    font-size: var(--text-md);
    color: #555;
}

.highlight-on-scroll {
    transition: color 0.5s ease;
}

.highlight-on-scroll.active {
    color: var(--primary);
    font-weight: 700;
}

.how-wrapper {
    position: relative;
    padding-left: 100px;
}

.how-item {
    margin-bottom: 50px;
}

.how-step {
    color: var(--primary);
    font-weight: 600;
    font-size: var(--text-md);
}

.how-item h4 {
    font-size: var(--title-sm);
    font-weight: 500;
    color: var(--dark);
}

.how-item p {
    font-size: var(--text-sm);
    color: var(--text);
}

.how-item strong {
    color: var(--dark);
}

.how-item ul {
    list-style: none;
    padding-left: 0;
}

.how-item li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: var(--text-sm);
    color: var(--text);
    margin-bottom: 8px;
}

.icon {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.how-img {
    max-width: 70%;
}

.timeline {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 100%;
    background: var(--primary);
    opacity: 0.3;
}

.timeline-circle {
    position: sticky;
    top: 50%;
    transform: translate(-0%, -50%);
    left: 50%;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: var(--text-sm);
    font-weight: 400;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    opacity: 0.9;
}

@media (max-width: 991px) {
    .how-wrapper {
        padding-left: 0;
    }

    .how-item {
        text-align: center;
        margin-left: 25px;
    }

    .how-item ul {
        display: inline-block;
        text-align: left;
    }
}

/*********************************************************************/
/************************ BENEFITS SECTION ***************************/
/*********************************************************************/

.benefits-section {
    background-image: url('/assets/images/docmo/home/bannerHome3.png');
    background-size: cover;
    background-position: center;
    padding: 50px 0;
}

.badge-benefits {
    background: #f5b7a5;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: var(--text-xs);
    margin-bottom: 200px;
}

.benefits-title {
    font-size: var(--title-lg);
    font-weight: 700;
    color: var(--dark);
}

.benefits-subtitle {
    font-size: var(--text-lg);
    max-width: 700px;
    color: var(--text);
    text-align: center;
    margin: 0 auto;
}

.benefit-card {
    background: #fff;
    border-radius: 22px;
    padding: 45px 25px;
    min-height: 290px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(26, 101, 232, .10);
    border: 2px solid transparent;
    transition: all .45s ease;
    transform: scale(1);
    font-size: var(--text-lg);
    color: var(--dark);
    font-weight: 600;
}

.benefit-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    margin-bottom: 50px;
}

.benefit-card.active {
    border: 2px solid #1a65e8;
    transform: scale(1.06);
    box-shadow: 0 25px 45px rgba(26, 101, 232, .18);
    z-index: 5;
}

.gradient-underline {
    position: relative;
    display: inline-block;
}

.gradient-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #1a65e8, #f5b7a5);
    border-radius: 4px;
    transition: width 0.4s ease;
}

.benefit-card.active .gradient-underline::after {
    width: 100%;
}

.btn-benefit {
    background: #0b0b4f;
    color: #fff;
    border: none;
    padding: 12px 24px;
    font-size: var(--text-md);
    border-radius: 10px;
}

.btn-benefit:hover {
    transform: scale(1.01);
    background: #0f55ca;
    color: #fff;
}

@media(max-width:768px) {

    .benefit-card {
        min-height: auto;
        padding: 35px 20px;
    }

    .benefit-card h4 {
        font-size: 1.2rem;
    }

    .benefit-card.active {
        transform: scale(1.03);
    }
}

/*********************************************************************/
/*************************** RESULTS SECTION *************************/
/*********************************************************************/

.results-section {
    background-image: url('/assets/images/docmo/home/bannerHome2.png');
    background-size: cover;
    background-position: center;
    padding: 50px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.badge-outline {
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: var(--text-xs);
}

.results-title {
    font-size: var(--title-lg);
    font-weight: 600;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 20px;
    max-width: 500px;
}

.avatar {
    width: 50px;
    height: 50px;
    background: #ddd;
    border-radius: 10px;
}

.metric-card {
    margin-bottom: 20px;
    transform: scale(1);
    transition: all 0.4s ease;
    margin-left: 100px;
}

.metric-card h3 {
    font-size: var(--title-md);
    font-weight: 100;
    font-family: 'Intel One Mono', monospace;
}

.metric-card p {
    font-size: var(--text-sm);
}

.badge-outline-margin {
    margin-left: 100px;
}

@media (max-width: 991px) {
    .metric-card {
        margin-left: 0px;
    }

    .badge-outline-margin {
        margin-left: 0px;
    }

}

/*********************************************************************/
/************************ CALCULATOR *********************************/
/*********************************************************************/

.cost-calculator-section {
    position: relative;
    padding-bottom: 100px;
    background: #f8f9fc;
}

.bg-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #1a65e8;
    z-index: 0;
}

.content {
    position: relative;
    z-index: 1;
}

.image-card {
    border-radius: 30px;
    overflow: hidden;
}

.cost-calculator-img {
    width: 100%;
    height: auto;
    display: block;
}

.cost-calculator-title {
    font-size: var(--title-lg);
    font-weight: 700;
    color: var(--dark);
}

.cost-calculator-text {
    font-size: var(--text-md);
    color: var(--text);
    max-width: 500px;
}

.btn-primary-custom {
    background: #0b0b4f;
    color: #fff;
    padding: 12px 24px;
    font-size: var(--text-md);
    border-radius: 10px;
}

.btn-primary-custom:hover {
    transform: scale(1.01);
    background: #0f55ca;
    color: #fff;
}

.btn-outline-custom {
    border: 2px solid var(--primary);
    color: var(--primary);
    padding: 12px 24px;
    font-size: var(--text-md);
    border-radius: 10px;
}

.btn-outline-custom:hover {
    transform: scale(1.01);
    background: #0f55ca;
    color: #fff;
}

@media (max-width: 991px) {
    .cost-calculator-section {
        text-align: center;
    }

    .cost-calculator-text {
        margin: 0 auto;
    }
}

/*********************************************************************/
/************************ CALCULATOR MODAL ***************************/
/*********************************************************************/

.bg-calculator-modal {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.calculator-modal h4 {
    font-size: var(--title-md);
    color: var(--dark);
    font-weight: 700;
    text-align: start;
}

.calculator-card {
    max-width: 900px;
    background: transparent;
    background-image: url('/assets/images/docmo/home/bannerHome3.png');
    background-size: cover;
    background-position: center;
}

.calculator-text {
    font-size: --title-md;
    color: #6c757d;
}

.calculator-form {
    margin-top: 10px;
}

.calc-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.calc-row label {
    flex: 1;
    font-size: 18px;
    color: #555;
}

.calc-row input {
    width: 180px;
    border: none;
    border-bottom: 2px solid #999;
    outline: none;
    font-size: 18px;
    padding: 6px 4px;
    text-align: center;
    background: transparent;
}

.calc-row input:focus {
    border-color: #1a65e8;
}

.calculator-result {
    text-align: center;
    margin: 45px 0 35px;
}

.calculator-result span {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #08085a;
}

.calculator-result p {
    font-size: 28px;
    font-weight: 700;
    color: #08085a;
    margin: 0;
}

.calculator-footer {
    text-align: center;
    font-size: 20px;
    color: #08085a;
    font-weight: 600;
    line-height: 1.6;
}

.btn-calc-docmo {
    background: #1a65e8;
    color: #fff;
    padding: 12px 24px;
    font-size: var(--text-md);
    border-radius: 10px;
}

.btn-calc-docmo:hover {
    transform: scale(1.01);
    background: #0f55ca;
    color: #fff;
}

@media(max-width:768px) {

    .calculator-card {
        padding: 30px 22px;
    }

    .calc-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .calc-row input {
        width: 100%;
    }

    .calculator-result span {
        font-size: 2.2rem;
    }

    .calculator-result p {
        font-size: 1.3rem;
    }

    .calculator-footer {
        font-size: 1rem;
    }

    .btn-calc-docmo {
        width: 100%;
        display: block;
    }
}

/*********************************************************************/
/**************************** DEMO BANNER ****************************/
/*********************************************************************/

.demo-hero-section {
    padding: 100px 0;
}

.demo-hero-bg {
    background-image: url('/assets/images/docmo/demo/bannerDemo.png');
    background-size: cover;
    background-position: center;
}

.demo-hero-title {
    position: relative;
    font-size: var(--title-xl);
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
}

@media (max-width: 991px) {
    .demo-hero-section {
        min-height: 520px;
    }
}

@media (max-width: 768px) {
    .demo-hero-section {
        min-height: 450px;
        padding: 80px 0;
    }

    .demo-hero-title {
        line-height: 1;
    }
}


/*********************************************************************/
/*************************** VIDEO SECTION ***************************/
/*********************************************************************/


.video-demo-section {
    padding: 100px 0;
    background: #ffffff;
}

.video-demo-title {
    font-size: var(--title-md);
    font-weight: 500;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 70px;
}

.video-demo-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0 20px 50px rgba(0,0,0,.08);
    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.video-demo-wrapper:hover {
    transform: translateY(-4px);
    box-shadow:
        0 30px 60px rgba(26,101,232,.14);
}

.video-demo {
    width: 100%;
    display: block;
    border-radius: 16px;
    background: #d9d9d9;
}

@media (max-width: 768px) {
    .video-demo-section {
        padding: 80px 0;
    }

    .video-demo-title {
        margin-bottom: 40px;
    }
}

/*********************************************************************/
/********************** CONTACT DEMO BANNER **************************/
/*********************************************************************/

.contact-demo-bg {
    background-image: url('/assets/images/docmo/demo/bannerDemo2.png');
    background-size: cover;
    background-position: center;
}

/*********************************************************************/
/**************************** PLAN BANNER ****************************/
/*********************************************************************/

.plans-hero {
    position: relative;
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 90px;
}

.plans-hero-bg {
    background-image: url('/assets/images/docmo/plans/bannerPlans1.png');
    background-size: cover;
    background-position: center;
}

.plans-hero-title {
    font-size: var(--title-xl);
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.plans-hero-subtitle {
    font-size: var(--title-md);
    color: rgba(255, 255, 255, .9);
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .plans-hero {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}

/*********************************************************************/
/************************ PRICE SECTION ******************************/
/*********************************************************************/

.pricing-section {
    padding: 100px 0;
    background: #f8f9fc;
}

.pricing-subtitle {
    font-size: var(--title-sm);
    color: var(--text);
}

.pricing-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    height: 100%;
    overflow: hidden;
    border: 2px solid rgba(26, 101, 232, .08);
    transition:
        transform .35s ease,
        box-shadow .35s ease,
        border-color .35s ease;
}

.pricing-card:hover {
    transform: scale(1.01);
    border-color: var(--primary);
    box-shadow: 0 25px 45px rgba(26, 101, 232, .15);
}

.pricing-title {
    font-size: var(--text-md);
    font-weight: 500;
    color: var(--dark);
    margin-bottom: 30px;
}

.pricing-price {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--dark);
    line-height: 1.2;
}

.pricing-note {
    font-size: var(--text-sm);
    color: var(--dark);
    margin-top: 4px;
    margin-bottom: 35px;
}

.pricing-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px;
}

.pricing-list li {
    position: relative;
    padding-left: 10px;
    margin-bottom: 10px;
    font-size: var(--text-md);
    color: #7a7a7a;
}

.pricing-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
    padding: 12px 24px;
    font-size: var(--text-md);
    border-radius: 10px;
}

.pricing-btn-primary {
    background: var(--primary);
    color: #fff;
}

.pricing-btn-outline {
    border: 1px solid rgba(0, 0, 0, .15);
    color: #000;
}

.pricing-btn:hover {
    transform: scale(1.01);
    background: #0f55ca;
    color: #fff;
}

@media (max-width: 991px) {
    .pricing-section {
        padding: 80px 0;
    }

    .pricing-card {
        padding: 28px;
    }
}

/*********************************************************************/
/************************ QUESTION BANNER ****************************/
/*********************************************************************/

.plan-help-section {
    padding: 100px 0;
}

.plan-help-bg {
    background-image: url('/assets/images/docmo/plans/bannerPlans2.png');
    background-size: cover;
    background-position: center;
}

.plan-help-title {
    font-size: var(--title-lg);
    font-weight: 600;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.15;
}

.plan-help-text {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, .92);
    max-width: 850px;
    margin: 0 auto 40px;
    line-height: 1.5;
}

.btn-plan-help {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 380px;
    border: 2px solid rgba(255, 255, 255, .8);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    font-size: var(--text-md);
    border-radius: 10px;
}

.btn-plan-help:hover {
    background: rgba(255, 255, 255, .08);
    transform: scale(1.01);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .15);
}

@media (max-width: 768px) {
    .plan-help-section {
        padding: 80px 0;
    }
}

/*********************************************************************/
/***************************** FAQ BANNER ****************************/
/*********************************************************************/

.faq-section {
    background-image: url('/assets/images/docmo/plans/bannerPlans3.png');
    background-size: cover;
    background-position: center;
}

.faq-title {
    font-size: var(--title-lg);
    color: #07075d;
}

.faq-subtitle {
    font-size: 28px;
    color: #777;
}

.faq-accordion {
    max-width: 900px;
    margin: auto;
}

.faq-accordion .accordion-item {
    border: none;
    border-bottom: 1px solid #e6e6e6;
    background: transparent;
}

.faq-accordion .accordion-button {
    background: transparent;
    font-size: var(--text-lg);
    color: #09095e;
    padding: 30px 0;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: transparent;
    color: #09095e;
}

.faq-accordion .accordion-body {
    font-size: var(--text-md);
    color: #666;
    padding: 0 0 25px 0;
}

.faq-btn-section {
    display: inline-block;
    background: #06066a;
    color: #fff;
    text-decoration: none;
    min-width: 380px;
    padding: 12px 24px;
    font-size: var(--text-md);
    border-radius: 10px;
}

.faq-btn-section:hover {
    transform: scale(1.01);
    background: #0f55ca;
    color: #fff;
}

.modal .faq-accordion .accordion-button {
    background: transparent;
    font-size: 16px;
    color: #09095e;
    padding: 20px 0;
    box-shadow: none;
}

.modal .faq-accordion .accordion-body {
    font-size: 16px;
    color: #666;
    padding: 0 0 25px 0;
}

/*********************************************************************/
/************************** QUESTION BANNER **************************/
/*********************************************************************/

.question-section {
    padding: 110px 0;
    background: #f8f9fc;
}

.question-title {
    font-size: var(--title-lg);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 35px;
}

.question-text {
    font-size: var(--text-lg);
    color: var(--dark);
    line-height: 1.5;
    max-width: 760px;
    margin: 0 auto 45px;
}

.question-text strong {
    font-weight: 700;
}

.btn-question {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 380px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 10px 25px rgba(26, 101, 232, .18);
    padding: 12px 24px;
    font-size: var(--text-md);
    border-radius: 10px;
}

.btn-question:hover {
    transform: scale(1.01);
    box-shadow: 0 18px 35px rgba(26, 101, 232, .25);
}

@media (max-width: 768px) {
    .question-section {
        padding: 80px 0;
    }
}

/*********************************************************************/
/************************* CONTACT BANNER ****************************/
/*********************************************************************/

.contact-hero-section {
    padding: 100px 0;
}

.contact-hero-bg {
    background-image: url('/assets/images/docmo/contact/bannerContact1.png');
    background-size: cover;
    background-position: center;
}

.contact-hero-title {
    position: relative;
    font-size: var(--title-xl);
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
}
.contact-hero-subtitle {
    font-size: var(--title-md);
    margin: 50px 0 10px;
    color: #fff;
}

@media (max-width: 991px) {
    .demo-hero-section {
        min-height: 520px;
    }
}

@media (max-width: 768px) {
    .demo-hero-section {
        min-height: 450px;
        padding: 80px 0;
    }
}

/*********************************************************************/
/************************ CONTACT SECTION ****************************/
/*********************************************************************/

.section-contact {
    padding: 50px 20px;
    background: #ffffff;
}

.contact-info {
    padding-top: 40px;
}

.contact-title {
    color: #08085a;
    font-size: var(--title-md);
    line-height: 1.1;
    max-width: 420px;
}

.contact-subtitle {
    text-align: left;
    font-size: var(--text-lg);
    margin: 35px 0 30px;
    max-width: 420px;
    color: #6c757d;
    line-height: 1.6;
}

.contact-mini-text {
    font-size: var(--text-md);
    color: #6c757d;
    line-height: 1.5;
    max-width: 420px;
}

.contact-form {
    max-width: 520px;
    margin-left: auto;
}

.contact-form .form-control {
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    padding: 1rem 1rem;
    font-size: var(--text-md);
    box-shadow: none;
}

.contact-form .form-control:focus {
    border: 1px solid #1a65e8;
    box-shadow: none;
}

.contact-form .form-floating label {
    color: #666;
    padding-left: 1rem;
}

.contact-form textarea.form-control {
    border-radius: 10px;
}

.btn-contact {
    background: #1a65e8;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 16px 26px;
    font-size: var(--text-md);
    font-weight: 700;
    width: 100%;
    transition: .3s;
}

.btn-contact:hover {
    background: #0f55ca;
    transform: scale(1.01);
}

.fake-captcha {
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fafafa;
}

.form-check-label a {
    color: #1a65e8;
    text-decoration: none;
    font-weight: 600;
}

.form-check-label a:hover {
    text-decoration: underline;
}

@media(max-width:991px) {
    .contact-info {
        padding-top: 0;
        margin-left: 10px;
    }

    .contact-title,
    .contact-subtitle,
    .contact-mini-text {
        max-width: 100%;
    }

    .contact-form {
        max-width: 100%;
        margin-left: 10px;
    }
}

@media(max-width:768px) {
 
    .contact-subtitle {
        margin: 22px 0;
    }

    .contact-mini-text {
        margin-bottom: 10px;
    }

    .contact-field {
        border-radius: 18px;
        padding: 16px 18px 12px;
    }

    .btn-contact {
        width: 100%;

    }
}

/*********************************************************************/
/********************** CONTACT INFO SECTION *************************/
/*********************************************************************/

.section-info-contact {
    padding: 50px 0;
    background-image: url('/assets/images/docmo/contact/bannerContact2.png');
    background-size: cover;
    background-position: center;
}

.info-title,
.social-title {
    color: #08085a;
    margin-bottom: 28px;
    font-size: var(--text-md);
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    font-size: var(--text-md);
    color: #707070;
    margin-bottom: 10px;
}

.info-list li i {
    color: #1a65e8;
    font-size: var(--text-md);
    min-width: 22px;
}

.info-list a {
    color: #707070;
    text-decoration: underline;
}

.info-list a:hover {
    color: #1a65e8;
}

.social-block {
    padding-left: 40px;
}

.social-icons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.social-icons a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #2f6fe8;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: var(--text-md);
    transition: .3s;
}

.social-icons a:hover {
    transform: translateY(-5px);
    background: #08085a;
}

@media(max-width:991px) {

    .social-block {
        padding-left: 0;
    }
}

@media(max-width:768px) {

    .info-docmo {
        padding: 70px 20px;
    }

    .info-title,
    .social-title {
        margin-bottom: 20px;
    }

    .info-list li {
        gap: 12px;
        margin-bottom: 14px;
    }

    .info-list li i {
        margin-top: 5px;
    }

    .social-icons a {
        width: 48px;
        height: 48px;
    }
}

/*********************************************************************/
/**************************** MODAL **********************************/
/*********************************************************************/

.bg-modal {
    background-image: url('/assets/images/docmo/marcadeaguagris.png');
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.bg-modal .btn-close {
    margin-left: 15px;
    margin-top: 5px;
}

.modal .text-modal {
    color: #08085a;
}

.modal .text-muetd-modal {
    font-size: 16px;
    color: #666;
    padding: 0 0 25px 0;
}


/*********************************************************************/
/**************************** COOKIE BANNER **************************/
/*********************************************************************/

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #ffffff;
    border: 2px solid #e9edf5;
    box-shadow: 0 10px 25px rgba(0, 0, 0, .06);
    background-image: url('/assets/images/docmo/marcadeaguagris.png');
    background-size: cover;
    background-position: center;
    color: #08085a;
    padding: 15px;
    border-radius: 12px;
    display: none;
    z-index: 9999;
    width: 500px;
}

.cookie-banner button {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
}