:root {
    --primary-color: #4facfe;
    --primary-dark: #00f2fe;
    --secondary-color: #16213e;
    --accent-color: #ff007c;
    --success-color: #00b894;
    --text-main: #2d3436;
    --text-light: #636e72;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(255, 255, 255, 0.5);
    --shadow-soft: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);

    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: #f7f9fc;
    color: var(--text-main);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* --- UI Components --- */

.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    font-family: var(--font-heading);
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(79, 172, 254, 0.4);
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    margin-left: 15px;
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary-color);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-white {
    background: var(--white);
    color: var(--accent-color);
    width: 100%;
    margin-top: 15px;
    border: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.badge {
    background: var(--accent-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    vertical-align: middle;
    margin-left: 10px;
    box-shadow: 0 4px 10px rgba(255, 0, 124, 0.4);
}

/* --- Header & Countdown --- */
#top-bar {
    background: rgba(22, 33, 62, 0.95);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 12px 0;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.countdown-label {
    font-weight: 600;
    font-size: 0.95rem;
}

#countdown {
    display: flex;
    gap: 5px;
    align-items: center;
}

.time-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 8px;
    border-radius: 6px;
    text-align: center;
    min-width: 50px;
}

.time-box span {
    font-weight: 800;
    font-family: monospace;
    color: var(--primary-dark);
    display: block;
    line-height: 1;
    font-size: 1.2rem;
}

.time-box small {
    font-size: 0.6rem;
    text-transform: uppercase;
    opacity: 0.8;
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(8, 22, 56, 0.85), rgba(16, 55, 92, 0.9)), url('../assets/hero-bg.jpg');
    /* Darker overlay for contrast */
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A2980 0%, #26D0CE 100%);
    z-index: -2;
}

.hero-bg::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    top: -100px;
    left: -100px;
    border-radius: 50%;
    animation: flow 10s infinite alternate;
}

@keyframes flow {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    max-width: 900px;
    z-index: 2;
    padding: 20px;
}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
}

.hero .lead {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.highlight {
    background: linear-gradient(180deg, #ff4d4d 0%, #c0392b 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    white-space: nowrap;
    filter: drop_shadow(0 4px 6px rgba(0, 0, 0, 0.5));
    padding-bottom: 10px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    /* Bold as requested */
    margin-bottom: 10px;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-text {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.scroll-down {
    position: absolute;
    bottom: 30px;
    animation: bounce 2s infinite;
    font-size: 1.5rem;
    opacity: 0.7;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}


/* --- Section Global --- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 60px;
    color: var(--secondary-color);
    text-align: center;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--success-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Resources (Compacted) --- */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.glass-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    text-align: left;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.glass-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: opacity 0.3s;
}

.glass-card:hover::before {
    opacity: 1;
}

.icon-box {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    background: rgba(79, 172, 254, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.glass-card h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.glass-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

.coming-soon-text {
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--accent-color);
    font-weight: 700;
}

/* --- Clickable Cards --- */
.clickable-card {
    cursor: pointer;
    color: inherit;
    text-decoration: none;
}

.clickable-card:hover {
    transform: translateY(-15px) scale(1.02);
}

.clickable-card strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* --- Card Action Buttons --- */
.btn-card-action {
    margin-top: auto;
    padding: 12px 24px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-card-action:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(79, 172, 254, 0.5);
}

.btn-card-action i {
    font-size: 1rem;
}

/* --- Motivational Card --- */
.motivational-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.4);
    position: relative;
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.motivational-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 15s linear infinite;
}

.motivational-icon {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: pulse 2s ease-in-out infinite;
}

.motivational-card h3 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.motivational-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.motivational-card strong {
    color: var(--white);
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

/* --- Medicine Section (Split) --- */
.bg-gradient-light {
    background: linear-gradient(180deg, #ffffff 0%, #eef2f3 100%);
}

.split-layout {
    display: grid;
    grid-template-columns: 2fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    font-size: 1.1rem;
}

.feature-list i {
    color: var(--success-color);
    margin-right: 15px;
    font-size: 1.3rem;
    margin-top: 5px;
}

.lead {
    font-size: 1.25rem;
    color: var(--text-main);
    font-weight: 500;
}

/* Price Card */
.price-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(118, 75, 162, 0.4);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 60%);
    animation: rotate 10s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.price-header {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.price-amount {
    font-size: 4rem;
    font-weight: 800;
    margin: 20px 0;
    position: relative;
    z-index: 2;
}

.currency {
    font-size: 2rem;
    vertical-align: top;
}

.price-note {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.price-card button {
    position: relative;
    z-index: 2;
}

/* --- Testimonials (Grid & Expand) --- */
.testimonials-section {
    margin-top: 80px;
}

.section-subtitle {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.testimonial-card {
    background: var(--white);
    padding: 25px;
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border-left: 5px solid var(--primary-color);
    font-size: 0.95rem;
    color: var(--text-light);
    display: none;
    /* Hidden by default, JS handles display */
}

/* Show only first 4 initially */
.testimonial-card.visible-initial {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.testimonial-card.visible-expanded {
    display: block;
    animation: slideUp 0.5s ease-out;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card small {
    display: block;
    font-weight: 700;
    color: var(--text-main);
    text-align: right;
    font-style: normal;
}

.center-btn {
    text-align: center;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Future Sections --- */
.dual-section-wrapper {
    background: var(--secondary-color);
    color: var(--white);
    padding: 80px 0;
}

.future-section {
    padding: 40px 0;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
}

.glass-panel h2 {
    color: var(--white);
    display: inline-block;
}

.highlight-text {
    color: var(--primary-dark);
    font-weight: 600;
    margin-top: 10px;
}

/* --- Footer --- */
.footer {
    background-color: #0f172a;
    color: var(--white);
    padding: 80px 0 30px;
    text-align: center;
}

.footer-content {
    max-width: 700px;
    margin: 0 auto;
}

.footer h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    background: linear-gradient(to right, #ffffff, #a5b4fc);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-mission {
    font-size: 1.1rem;
    opacity: 0.7;
    margin-bottom: 40px;
    line-height: 1.8;
}

.social-links {
    margin-bottom: 50px;
}

.social-links a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    margin: 0 10px;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    opacity: 0.5;
}

/* --- Animations --- */
.animate-pop-in {
    animation: popIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

@keyframes popIn {
    0% {
        transform: scale(0.9);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-up-delay-1 {
    transition-delay: 0.2s;
}

.fade-up-delay-2 {
    transition-delay: 0.4s;
}

.fade-up-delay-3 {
    transition-delay: 0.6s;
}

/* --- Resources & Errors Combined (Ultra Compact) --- */
.bg-light-gray-gradient {
    background: linear-gradient(180deg, #ffffff 0%, #f0f2f5 100%);
    padding-top: 60px;
    padding-bottom: 40px;
}

.margin-bottom-large {
    margin-bottom: 30px;
}

.title-small {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

/* --- Common Errors (Compacted) --- */
.bg-light-gray {
    background-color: #f0f2f5;
}

.highlight-error {
    color: var(--accent-color);
    font-size: 1.2em;
}

.card-grid-alert {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
}

.alert-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border-left: 5px solid #ff4757;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.alert-card:hover {
    transform: translateY(-5px);
}

.icon-warning {
    font-size: 1.5rem;
    color: #ff4757;
    margin-bottom: 10px;
}

.alert-card h3 {
    margin-bottom: 8px;
    color: var(--secondary-color);
    font-size: 1.1rem;
}

.alert-card p {
    font-size: 0.9rem;
}

/* --- Medicine Section Overhaul (Compact) --- */
.features-grid-7,
.features-grid-9 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    /* Dense columns */
    gap: 15px;
    margin-bottom: 50px;
}

.feature-item {
    background: var(--white);
    padding: 15px 20px;
    /* Reduced padding */
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.feature-item i {
    font-size: 1.8rem;
    /* Smaller icon */
    color: var(--primary-color);
    margin-bottom: 10px;
    display: inline-block;
}

.feature-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
    /* Smaller heading */
    color: var(--secondary-color);
    line-height: 1.2;
}

.feature-item p {
    font-size: 0.85rem;
    /* Smaller text */
    color: var(--text-light);
    line-height: 1.4;
    max-width: 90%;
}

/* Updated Pricing Container */
.pricing-container {
    background: radial-gradient(circle at top right, #1a2a4f 0%, #0d1b35 100%);
    color: var(--white);
    padding: 60px 40px;
    border-radius: 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(13, 27, 53, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header-label {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 800;
}

.pricing-flex-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 10px;
}

.badge-pricing {
    background: rgba(255, 255, 255, 0.15);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #a5b4fc;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.price-display {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    color: #4facfe;
    text-shadow: 0 0 30px rgba(79, 172, 254, 0.3);
}

.currency-symbol {
    font-size: 2.5rem;
    vertical-align: super;
    font-weight: 600;
    color: #4facfe;
    margin-right: 5px;
}

.pricing-access-text {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 30px;
    font-weight: 500;
    opacity: 0.9;
}

.pricing-subtext {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.highlight-blue {
    color: #4facfe;
    font-weight: 700;
}

.btn-large {
    padding: 18px 50px;
    font-size: 1.1rem;
    width: auto;
    min-width: 300px;
}

.glow-effect {
    background: linear-gradient(90deg, #00c6ff, #0072ff);
    box-shadow: 0 0 20px rgba(0, 198, 255, 0.5);
    border: none;
    position: relative;
    overflow: hidden;
}

.glow-effect::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: glowBtn 3s infinite;
}

@keyframes glowBtn {
    0% {
        left: -100%;
    }

    20% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* Responsive */
@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .pricing-container {
        padding: 40px 20px;
    }

    .price-display {
        font-size: 4rem;
    }
}

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

    .hero h1 {
        font-size: 2.5rem;
        /* Smaller hero title */
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .btn {
        width: 100%;
        display: block;
        margin: 10px 0;
        text-align: center;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .countdown-container {
        flex-direction: column;
        gap: 15px;
    }

    .grid-3,
    .card-grid-alert {
        grid-template-columns: 1fr;
        /* Stack cards */
    }

    .features-grid-7,
    .features-grid-9 {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        /* Smaller grid items on mobile to fit 2 per row if possible, or 1 */
    }

    .feature-item {
        padding: 15px;
    }

    .pricing-flex-row {
        flex-direction: column;
        gap: 10px;
    }

    .pricing-header-label {
        font-size: 0.7rem;
        width: 100%;
    }

    .motivational-card {
        padding: 30px 20px;
        margin-top: 30px;
    }

    .motivational-card h3 {
        font-size: 1.5rem;
    }

    .motivational-card p {
        font-size: 1rem;
    }

    .motivational-icon {
        font-size: 2.5rem;
    }
}