/* Minimalist style */
html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
}

h1, h2, h3, h4, h5 {
    font-family: 'Helvetica', sans-serif;
    font-weight: bold;
}

p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

a {
    color: #a0872e;
    text-decoration: none;
}

a:hover {
    color: #a0872e;
    text-decoration: underline;
}

.logo {
    height: 50px; /* Regola l'altezza del logo */
    width: auto; /* Mantiene le proporzioni */
}

.btn-primary {
    background-color: #B8860B;
    border-color: #B8860B;
    color: white; /* Testo bianco per contrastare */
}

.btn-primary:hover, .btn-primary:focus {
    background-color: #996B0A; /* Un colore leggermente più scuro per l'hover */
    border-color: #996B0A;
    color: white;
}

.bg-light {
    background-color: #fff9f1!important; /* Arancione pallido chiaro */
}

.site-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.content-wrapper {
    flex: 1;
}

/* Menu */

.announcement-bar {
    background-color: #1bad8f; /* Colore di sfondo: blu */
    font-size: 1rem;
    padding: 2px;
}

.announcement-bar a {
    text-decoration: none;
    color: #fff; /* Colore testo: bianco */
    font-weight: bold;
}

.announcement-bar a:hover {
    
    background-color: #127863; /* Colore di sfondo al hover */
    color: #fff;
}

/* Modal */
.modal-content {
    border-radius: 12px;
}

.modal-header {
    background: linear-gradient(90deg, #1bad8f, #18a689);
    border-bottom: none;
}

.modal-header h5 {
    font-size: 1.5rem;
    font-weight: bold;
}

.modal-body h2 {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1bad8f;
}

.modal-body p {
    font-size: 1rem;
    line-height: 1.6;
}

.modal-body a.btn {
    font-size: 1.2rem;
    border-radius: 8px;
    font-weight: bold;
}

.modal-footer {
    background-color: #f8f9fa;
    border-top: none;
}

.modal-footer small {
    font-size: 0.9rem;
    color: #6c757d;
}





/* Banner */
.jumbotron {
    background: linear-gradient(135deg, #007bff, #00a3ff);
    color: #fff;
    padding: 6rem;
    border-radius: 10px;
}

/* Footer styling */
footer {
    background-color: #f8f9fa;
    color: #6c757d;
    font-size: 0.9rem;
}

/* Button */
.btn {
    border-radius: 50px;
    padding: 0.5rem 2rem;
}

/* Testimonials */
blockquote {
    font-style: italic;
    margin: 1.5rem auto;
    padding: 1rem;
    border-left: 5px solid #007bff;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.text-shadow-subtle {
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.7); /* Ombreggiatura leggera sotto il testo */
}

.testimonial {
    font-style: italic;
}

.more-text {
    display: none;
}

.read-more {
    color: #B8860B;
    cursor: pointer;
    text-decoration: underline;
}

.dots {
    display: inline;
}

/* Sezione nuov app */
.app-highlight {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    border-left: 4px solid #f3d3a6;
    transition: all 0.3s ease;
}

.app-highlight:hover {
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
}

.app-new-badge {
    background: #f3d3a6;
    color: #1f1f1f;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 600;
}





/* Pulsante Whatsapp */
/* Stile per il pulsante WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Assicurarsi che sia sopra altri elementi */
    text-decoration: none;
    transition: background-color 0.3s;
}

.whatsapp-button:hover {
    background-color: #20b55b;
}

.whatsapp-button i {
    font-size: 24px;
}

/* Planes */
.card-header {
    font-weight: bold;
    text-transform: uppercase;
}

.table-hover tbody tr:hover {
    background-color: #f9f9f9;
}

.btn-primary {
    background-color: #B8860B;
    border-color: #B8860B;
}

.btn-primary:hover {
    background-color: #A0760B;
    border-color: #A0760B;
}

.btn-outline-primary {
    border-color: #B8860B;
    color:#B8860B;
}

.btn-outline-primary:hover {
    background-color: #B8860B;
    border-color: #B8860B;
}



/* -------------------------- PLANES PAGE ------------------------------- */
.extra-testimonials {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.extra-testimonials.show {
    opacity: 1;
    max-height: 2000px;
}

/* -------------------------- WEBINAR PAGE ------------------------------- */

/* Contenuti del webinar */
.content-card {
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f9f9f9;
}

.content-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.content-card h5 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.content-card p {
    font-size: 1rem;
    color: #555;
}

/* Timer */
.timer-box {
    border-radius: 12px;
    padding: 1rem;
    margin-top: -4rem;
    position: absolute;
    width: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Stile per la timeline centrata */
/* Timeline container */
.timeline {
    position: relative;
    padding-left: 2rem; /* Sposta il contenuto rispetto alla riga centrale */
}

/* Riga verticale */
.timeline::before {
    content: "";
    position: absolute;
    left: 1rem; /* Posiziona la riga verticale */
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #ddd;
}

/* Singolo elemento della timeline */
.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
}

/* Icone */
.timeline-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

/* Card */
.timeline-card {
    flex: 1;
    background-color: #fff;
    border-radius: 8px;
    padding: 1.5rem;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1;
}



/* ----------------- APP QUIZ LANDING --------------------------------------- */

.btn-gold {
    background-color: #f3d3a6;
    border: none;
    color: #1f1f1f;
    font-weight: 600;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: #e8c48d;
    transform: translateY(-2px);
}

/* FEATURES */

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.feature-icon i {
    font-size: 32px;
    color: #f3d3a6;
}

/* BETA FORM */

.beta-card {
    background: white;
    border-radius: 18px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    border-top: 4px solid #f3d3a6;
}








/* Media queries for mobile responsiveness */
@media (max-width: 768px) {
    .jumbotron {
        padding: 2rem;
    }

    h1 {
        font-size: 2rem;
    }

    p {
        font-size: 1rem;
    }

    /* -------------------------- WEBINAR PAGE ------------------------------- */

    /* Timer */
    .timer-box {
        width: 90%;
    }
}


/* =============================================
   DTG PALETTE — Navy + Gold + Ivory
   ============================================= */

:root {
  /* Colores principales */
  --dtg-navy:         #0c223a;
  --dtg-navy-rgb:     12, 34, 58;
  --dtg-gold:         #D4A64A;
  --dtg-ivory:        #FBF7F0;
  --dtg-ivory-deep:   #FAEFD8;
  --dtg-white:        #FFFFFF;
  --dtg-gray:         #829fbc;

  /* Colores secundarios */
  --dtg-blue-light:   #E6F0FF;
  --dtg-blue-mid:     #2563EB;
  --dtg-gray-light:   #F1F3F6;
  --dtg-green-soft:   #E6F4ED;
  --dtg-coral-soft:   #FFE5E0;
}

/* Override global btn-primary to new gold */
.btn-primary {
    background-color: var(--dtg-gold) !important;
    border-color: var(--dtg-gold) !important;
    color: var(--dtg-navy) !important;
    font-weight: 600;
}
.btn-primary:hover,
.btn-primary:focus {
    background-color: #c4943a !important;
    border-color: #c4943a !important;
    color: #fff !important;
}
.btn-outline-primary {
    border-color: var(--dtg-gold) !important;
    color: var(--dtg-gold) !important;
}
.btn-outline-primary:hover {
    background-color: var(--dtg-gold) !important;
    border-color: var(--dtg-gold) !important;
    color: var(--dtg-navy) !important;
}

/* ── Navbar ── */
.navbar {
    background-color: var(--dtg-navy);
    box-shadow: none;
    border: none;
}
.navbar-dark .nav-link,
.navbar-dark .navbar-brand {
    color: rgba(255,255,255,0.9) !important;
}
.navbar-dark .nav-link:hover,
.navbar-dark .nav-link.active {
    color: var(--dtg-gold) !important;
}

/* ── Footer ── */
.dtg-site-footer {
    background: linear-gradient(135deg, var(--dtg-navy), #06182d);
    color: #fff;
    padding: 2.1rem 0 1.1rem;
}

.dtg-site-footer-main {
    display: grid;
    grid-template-columns: 1.4fr 0.9fr 1.8fr auto;
    gap: 2rem;
    align-items: center;
    padding-bottom: 1.5rem;
}

.dtg-site-footer-logo {
    height: 64px;
    width: auto;
    margin-bottom: 0.9rem;
}

.dtg-footer-brand-block p,
.dtg-footer-cta-block p {
    color: rgba(255,255,255,0.86);
    font-size: 0.93rem;
    line-height: 1.65;
    margin: 0;
}

.dtg-footer-social-block {
    display: flex;
    justify-content: center;
    gap: 1.55rem;
}

.dtg-footer-social-block a {
    color: #fff;
    font-size: 1.35rem;
    text-decoration: none;
    transition: color .2s, transform .2s;
}

.dtg-footer-social-block a:hover {
    color: var(--dtg-gold);
    transform: translateY(-1px);
}

.dtg-footer-cta-block {
    border-left: 1px solid rgba(255,255,255,0.22);
    padding-left: 2.2rem;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.2rem;
    align-items: center;
}

.dtg-footer-cta-icon {
    width: 58px;
    height: 58px;
    border: 2px solid var(--dtg-gold);
    border-radius: 8px;
    color: var(--dtg-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dtg-footer-cta-block h2 {
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 1.05rem;
    font-weight: 900;
    margin: 0 0 0.35rem;
}

.dtg-footer-cta-btn {
    background: linear-gradient(135deg, #e8a11a, #cf8500);
    border-radius: 6px;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 225px;
    padding: 0.9rem 1.35rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 9px 20px rgba(207,133,0,0.22);
    transition: transform .2s, box-shadow .2s;
}

.dtg-footer-cta-btn:hover {
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(207,133,0,0.28);
}

.dtg-site-footer-copy {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255,255,255,0.82);
    font-size: 0.85rem;
}

@media (max-width: 991px) {
    .dtg-site-footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .dtg-footer-cta-block {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,0.18);
        padding: 1.5rem 0 0;
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

@media (max-width: 575px) {
    .dtg-site-footer {
        padding: 1.8rem 0 1rem;
    }

    .dtg-site-footer-logo {
        height: 54px;
    }

    .dtg-footer-cta-btn {
        width: 100%;
        min-width: 0;
    }
}

.dtg-footer {
    background-color: var(--dtg-navy) !important;
    color: rgba(255,255,255,0.85);
    padding: 2.5rem 0 1.5rem;
}
.dtg-footer-logo { height: 40px; width: auto; }
.dtg-footer-tagline {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
    margin: 0;
    line-height: 1.65;
}
.dtg-footer-social a {
    color: rgba(255,255,255,0.65);
    font-size: 1.35rem;
    margin-left: 0.8rem;
    text-decoration: none;
    transition: color .2s;
}
.dtg-footer-social a:hover { color: var(--dtg-gold); }
.dtg-footer hr { border-color: rgba(255,255,255,0.12); margin: 1.4rem 0 1rem; }
.dtg-footer-copy {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.38);
    margin: 0;
}

/* ── Hero ── */
.dtg-hero {
    background-color: var(--dtg-navy);
    color: #fff;
    overflow: hidden;
}
.dtg-hero-text-wrap {
    padding: 5rem 2.5rem 5rem 3rem;
}
@media (min-width: 992px) {
    .dtg-hero-text-wrap { padding: 6rem 3rem 6rem 5rem; }
}
@media (max-width: 767px) {
    .dtg-hero-text-wrap { padding: 3rem 1.5rem 2.5rem; }
}
.dtg-hero-eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--dtg-gold);
    display: block;
    margin-bottom: 0.85rem;
}
.dtg-hero-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 1rem;
}
.dtg-hero-title .text-gold { color: var(--dtg-gold); }
@media (max-width: 767px) {
    .dtg-hero-title { font-size: 2rem; }
}
.dtg-hero-sub {
    font-size: 1rem;
    color: rgba(255,255,255,0.8);
    max-width: 460px;
    margin-bottom: 1.8rem;
    line-height: 1.65;
}
.dtg-hero-img-col {
    overflow: hidden;
    position: relative;
    min-height: 480px;
}
.dtg-hero-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    position: absolute;
    top: 0; left: 0;
}

/* ── Stats bar ── */
.dtg-stats-bar {
    background-color: #0a1e38;
    border-top: 1px solid rgba(212,166,74,0.25);
    padding: 1.2rem 0;
}
.dtg-stat-num {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--dtg-gold);
    line-height: 1.1;
}
.dtg-stat-lbl {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

/* ── Buttons ── */
.btn-dtg-gold {
    background-color: var(--dtg-gold);
    color: var(--dtg-navy);
    border: none;
    font-weight: 700;
    padding: 0.65rem 1.7rem;
    border-radius: 6px;
    transition: background .2s, color .2s;
    text-decoration: none;
}
.btn-dtg-gold:hover { background-color: #c4943a; color: #fff; }

.btn-dtg-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.55);
    border-radius: 6px;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    transition: all .2s;
    text-decoration: none;
}
.btn-dtg-outline-white:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.btn-dtg-navy {
    background: var(--dtg-navy);
    color: #fff;
    border: 2px solid var(--dtg-navy);
    border-radius: 6px;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    transition: all .2s;
    text-decoration: none;
}
.btn-dtg-navy:hover { background: transparent; color: var(--dtg-navy); }

.btn-dtg-outline-navy {
    background: transparent;
    color: var(--dtg-navy);
    border: 2px solid var(--dtg-navy);
    border-radius: 6px;
    font-weight: 600;
    padding: 0.6rem 1.4rem;
    transition: all .2s;
    text-decoration: none;
}
.btn-dtg-outline-navy:hover { background: var(--dtg-navy); color: #fff; }

/* ── Section utilities ── */
.dtg-bg-ivory { background-color: var(--dtg-ivory); }
.dtg-bg-white  { background-color: #fff; }
.dtg-bg-navy   { background-color: var(--dtg-navy); color: #fff; }

.dtg-eyebrow {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--dtg-gold);
    display: block;
    margin-bottom: 0.35rem;
}
.dtg-section-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dtg-navy);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}
.dtg-divider {
    width: 44px;
    height: 3px;
    background: var(--dtg-gold);
    margin: 0.6rem 0 1.4rem;
}
.dtg-divider-center { margin-left: auto; margin-right: auto; }

/* ── Feature cards ── */
.dtg-feature-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.7rem 1.4rem;
    box-shadow: 0 2px 18px rgba(15,39,71,0.07);
    height: 100%;
    transition: box-shadow .25s, transform .25s;
}
.dtg-feature-card:hover {
    box-shadow: 0 8px 28px rgba(15,39,71,0.12);
    transform: translateY(-4px);
}
.dtg-feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(212,166,74,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--dtg-gold);
    margin-bottom: 1rem;
}
.dtg-feature-card h5 { font-weight: 700; font-size: 0.95rem; color: var(--dtg-navy); margin-bottom: 0.4rem; }
.dtg-feature-card p  { font-size: 0.87rem; color: #666; line-height: 1.55; margin: 0; }

/* ── Content cards (Guías, Cedularios) ── */
.dtg-content-card {
    background: #fff;
    border-radius: 14px;
    padding: 2.2rem 1.5rem;
    text-align: center;
    box-shadow: 0 2px 18px rgba(15,39,71,0.07);
    transition: box-shadow .25s, transform .25s;
    color: var(--dtg-navy);
}
.dtg-content-card:hover {
    box-shadow: 0 8px 28px rgba(15,39,71,0.12);
    transform: translateY(-4px);
}
.dtg-content-card i { font-size: 2rem; color: var(--dtg-gold); margin-bottom: 0.8rem; display: block; }
.dtg-content-card h5 { font-weight: 700; font-size: 1.05rem; color: var(--dtg-navy); margin-bottom: 0.4rem; }
.dtg-content-card p  { font-size: 0.9rem; color: #666; margin: 0; }

/* ── Testimonial cards ── */
.dtg-testimonial-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.5rem;
    box-shadow: 0 2px 18px rgba(15,39,71,0.07);
    height: 100%;
    border-left: 4px solid var(--dtg-gold);
}
.dtg-testimonial-card .t-quote {
    font-size: 2.2rem;
    color: var(--dtg-gold);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 0.4rem;
    font-family: Georgia, serif;
}
.dtg-testimonial-card .t-text {
    font-style: italic;
    font-size: 0.88rem;
    color: #555;
    line-height: 1.65;
    margin-bottom: 1rem;
}
.dtg-testimonial-card .t-name   { font-weight: 700; font-size: 0.85rem; color: var(--dtg-navy); }
.dtg-testimonial-card .t-detail { font-size: 0.78rem; color: #999; }

/* ── App store buttons ── */
.btn-store {
    background: #111;
    color: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: background .2s;
    min-width: 155px;
}
.btn-store:hover { background: #333; color: #fff; text-decoration: none; }
.btn-store i { font-size: 1.5rem; }
.btn-store .store-label { font-size: 0.62rem; display: block; opacity: 0.75; text-transform: uppercase; letter-spacing: 0.04em; }
.btn-store .store-name  { font-size: 0.95rem; font-weight: 700; line-height: 1.1; }

/* ── Contenidos horizontal cards ── */
.dtg-recurso-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 1.4rem;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 16px rgba(15,39,71,0.06);
    transition: box-shadow .2s, transform .2s;
    height: 100%;
}
.dtg-recurso-card:hover {
    box-shadow: 0 6px 24px rgba(15,39,71,0.11);
    transform: translateY(-3px);
}
.dtg-recurso-icon {
    width: 50px; height: 50px;
    border-radius: 50%;
    border: 2px solid var(--dtg-gold);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; color: var(--dtg-gold);
    flex-shrink: 0;
}
.dtg-recurso-card h5 { font-weight: 700; font-size: 0.95rem; color: var(--dtg-navy); margin-bottom: 0.25rem; }
.dtg-recurso-card p  { font-size: 0.85rem; color: #666; margin-bottom: 0.6rem; }
.dtg-recurso-link { font-size: 0.82rem; font-weight: 600; color: var(--dtg-gold); text-decoration: none; }
.dtg-recurso-link:hover { text-decoration: underline; color: var(--dtg-gold); }

/* ── Testimonial avatar (initials) ── */
.dtg-t-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(212,166,74,0.18);
    color: var(--dtg-navy);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.95rem;
    flex-shrink: 0;
}

/* ── Curso mini-features ── */
.dtg-curso-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.dtg-curso-feature i {
    font-size: 1.8rem;
    color: var(--dtg-navy);
    margin-top: 0.1rem;
    flex-shrink: 0;
}
.dtg-curso-feature span {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.45;
    font-weight: 500;
}

/* ── CTA bar ── */
.dtg-cta-bar {
    background-color: var(--dtg-navy);
    padding: 4rem 0;
    color: #fff;
}
.dtg-cta-bar h2 {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.dtg-cta-bar p { color: rgba(255,255,255,0.7); font-size: 0.95rem; margin-bottom: 2rem; }
