/* =============================================
   CONEKTA TU CLINICA - Landing Page CSS
   Diseño basado en AP Learning
   ============================================= */

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

:root {
    /* Brand Book Colors - Conekta tu Clínica */
    --primary: #41c0be;
    --primary-dark: #298584;
    --dark: #333333;
    --dark-bg: #333333;
    --text: #333333;
    --text-light: #666666;
    --text-muted: #999999;
    --white: #ffffff;
    --bg-light: #f8f9fa;
    --border: #e5e7eb;
    --red: #ef4444;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
    --radius: 12px;
    --radius-lg: 20px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
}

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

h1, h2, h3 {
    line-height: 1.2;
    color: var(--dark);
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 1rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 0.875rem;
    margin: 0;
}

.cookie-content a {
    color: var(--primary);
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.5rem 1.25rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
}

.cookie-btn.accept {
    background: var(--primary);
    color: var(--white);
}

.cookie-btn.reject {
    background: transparent;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* =============================================
   HEADER - SOLO LOGO
   ============================================= */
.header {
    padding: 1.25rem 0;
    text-align: center;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    height: 44px;
    width: auto;
}

/* =============================================
   PAIN POINTS SECTION
   ============================================= */
.pain-points {
    padding: 4rem 0;
    background: var(--white);
}

.pain-points h2 {
    text-align: center;
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.pain-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-left: 4px solid var(--red);
}

.pain-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
}

.pain-card p {
    font-size: 0.95rem;
    margin: 0;
}

.pain-card strong {
    color: var(--dark);
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
    padding: 4rem 0;
    background: var(--bg-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero-badge svg {
    color: var(--primary);
}

.hero h1 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1.25rem;
}

.hero h1 .highlight {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(65, 192, 190, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* =============================================
   LEARN SECTION
   ============================================= */
.learn-section {
    padding: 5rem 0;
    background: var(--white);
}

.learn-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.learn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.learn-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: all 0.3s ease;
}

.learn-card:hover {
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.learn-icon {
    width: 48px;
    height: 48px;
    background: rgba(65, 192, 190, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1rem;
}

.learn-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.learn-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* =============================================
   RESULTS SECTION
   ============================================= */
.results-section {
    padding: 5rem 0;
    background: var(--dark-bg);
    color: var(--white);
}

.results-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 3rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.result-item {
    text-align: center;
}

.result-number {
    display: block;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.result-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

/* =============================================
   QUOTE SECTION
   ============================================= */
.quote-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.main-quote {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 2rem;
    border-left: 4px solid var(--primary);
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: var(--shadow);
}

.main-quote p {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
    color: var(--text);
    font-style: italic;
    line-height: 1.7;
}

.main-quote strong {
    color: var(--dark);
    font-style: normal;
}

/* =============================================
   FOR WHO SECTION
   ============================================= */
.for-who-section {
    padding: 5rem 0;
    background: var(--white);
}

.for-who-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.for-who-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
}

.for-who-card h3 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.for-who-list {
    list-style: none;
}

.for-who-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.for-who-list li:last-child {
    margin-bottom: 0;
}

.for-who-list svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.for-who-list strong {
    display: block;
    color: var(--dark);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.for-who-list span {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
    padding: 5rem 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(65, 192, 190, 0.1);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.about-content > p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-list {
    list-style: none;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.about-list svg {
    color: var(--primary);
    flex-shrink: 0;
}

/* =============================================
   GALLERY SECTION
   ============================================= */
.gallery-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.gallery-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius);
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.02);
}

/* =============================================
   CTA SECTION - INLINE FORM
   ============================================= */
.cta-section {
    padding: 5rem 0;
    background: var(--primary);
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.cta-subtitle {
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.inline-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
}

.form-row input::placeholder {
    color: var(--text-muted);
}

.form-row input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: inherit;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--dark-bg);
    transform: translateY(-2px);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--dark);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #0f172a;
    transform: translateY(-2px);
}

/* Hero Stats Inline */
.hero-stats-inline {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-stats-inline span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.hero-stats-inline strong {
    color: var(--primary);
    font-weight: 700;
}

/* =============================================
   COURSE SECTION
   ============================================= */
.course-section {
    padding: 5rem 0;
    background: var(--white);
}

.course-section h2 {
    text-align: center;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.modules-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 3rem;
}

.module-card {
    display: flex;
    gap: 1rem;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.module-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.module-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(65, 192, 190, 0.05), rgba(65, 192, 190, 0.1));
}

.module-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.module-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.module-content p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.module-lessons {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(65, 192, 190, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
}

/* Gallery Label */
.gallery-item {
    position: relative;
}

.gallery-label {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: var(--white);
    color: var(--dark);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: var(--shadow);
}

/* =============================================
   PRICING SECTION
   ============================================= */
.pricing-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0fdfa, #e0f7f6);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 3rem;
    text-align: center;
}

.pricing-header h2 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.pricing-includes {
    text-align: left;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: var(--radius);
}

.include-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.include-item:last-child {
    margin-bottom: 0;
}

.include-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

.include-item span {
    font-size: 0.95rem;
    color: var(--text);
}

.pricing-prices {
    margin-bottom: 1.5rem;
}

.pricing-early {
    margin-bottom: 0.75rem;
}

.price-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-regular {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.price-crossed {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.pricing-spots {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--primary-dark);
    font-weight: 600;
}

.btn-buy {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1.25rem 2rem;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(65, 192, 190, 0.4);
}

.btn-buy:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(65, 192, 190, 0.5);
}

.pricing-guarantee {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* About Title */
.about-title {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

/* =============================================
   OBJECTIVES LIST
   ============================================= */
.objectives-list {
    list-style: none;
    max-width: 800px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.objectives-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    font-size: 0.95rem;
    line-height: 1.5;
}

.objectives-list li::before {
    content: "";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    margin-top: 2px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Alt section background */
.alt-section {
    background: var(--bg-light);
}

/* =============================================
   TRUST / CREDIBILITY SECTION
   ============================================= */
.trust-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.trust-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.trust-badge {
    display: inline-block;
    background: rgba(65, 192, 190, 0.15);
    color: var(--primary-dark);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trust-content h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.trust-intro {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

.trust-list {
    list-style: none;
    margin-bottom: 2rem;
}

.trust-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background: var(--white);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.trust-list li svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.trust-list li span {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text);
}

.trust-quote {
    font-style: italic;
    color: var(--text-light);
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--primary);
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-size: 0.95rem;
}

.trust-quote strong {
    display: block;
    margin-top: 0.5rem;
    font-style: normal;
    color: var(--dark);
    font-size: 0.85rem;
}

@media (max-width: 968px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .trust-image {
        order: -1;
    }
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
    padding: 3rem 0;
    background: var(--dark-bg);
    text-align: center;
}

.footer-logo {
    height: 36px;
    margin-bottom: 1rem;
}

.footer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 968px) {
    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Hero image appears AFTER text on mobile */
    .hero-image {
        order: 1;
    }

    .hero-content {
        order: 0;
    }

    .about-image {
        order: -1;
    }

    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .pain-grid,
    .learn-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        flex-direction: column;
    }

    .trust-badges {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .results-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }

    .modules-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .modules-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats-inline {
        justify-content: center;
    }

    .for-who-grid {
        grid-template-columns: 1fr;
    }

    .main-quote {
        padding: 1.5rem;
    }

    .objectives-list {
        grid-template-columns: 1fr;
    }
}
