:root {
    --color-green-dark: #005C4B;
    --color-green-light: #00A981;
    --color-green-bright: #14EB4B;
    --color-green-hover: #22866E;
    --color-bg-gray: #EDF2F4;
    --color-text-dark: #333;
    --color-text-light: #FFFFFF;
    --color-red: #FF0000;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--color-text-dark);
    overflow-x: hidden;
    padding-top: 50px;
}

/* Top Bar Urgency */
.top-bar {
    background: linear-gradient(135deg, #FF6B35, #F7931E);
    color: white;
    text-align: center;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

/* Sticky Navigation */
.sticky-nav {
    position: fixed;
    top: 50px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 15px 20px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.sticky-nav.visible {
    transform: translateY(0);
}

.sticky-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sticky-nav .logo {
    display: flex;
    align-items: center;
}

.sticky-nav .logo-img {
    height: 72px;
    width: auto;
    max-width: 360px;
    object-fit: contain;
}

.sticky-nav .nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.sticky-nav .nav-menu li {
    margin: 0;
}

.sticky-nav .nav-menu a {
    color: var(--color-text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: color 0.3s ease;
    padding: 5px 0;
}

.sticky-nav .nav-menu a:hover {
    color: var(--color-green-light);
}

.sticky-nav .nav-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sticky-nav .btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--color-green-light);
    padding: 12px 25px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid var(--color-green-light);
}

.sticky-nav .btn-secondary:hover {
    background: var(--color-green-light);
    color: white;
    transform: translateY(-2px);
}

.sticky-nav .btn-primary {
    padding: 12px 30px;
    font-size: 16px;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(to bottom, var(--color-green-dark), var(--color-green-light));
    padding: 100px 20px 50px;
    text-align: center;
    color: white;
}

.hero h1 {
    font-size: 3.7em;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .gradient-text {
    background: linear-gradient(to right, #fff, #F0F0F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(to bottom, var(--color-green-bright), var(--color-green-light));
    color: white;
    padding: 16px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 169, 129, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 169, 129, 0.4);
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-text-dark);
    font-size: 14px;
    font-weight: 600;
}

.trust-badge i {
    color: var(--color-green-light);
    font-size: 20px;
}

/* Trust Badges in Hero Section (White text and icons) */
.hero .trust-badge {
    color: white;
}

.hero .trust-badge i {
    color: white;
}

/* Video Section */
.video-section {
    margin: 60px auto;
    max-width: 800px;
    position: relative;
}

.video-thumbnail {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.video-thumbnail img {
    width: 100%;
    height: auto;
    display: block;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(0,0,0,0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.play-button i {
    color: white;
    font-size: 30px;
    margin-left: 5px;
}

.video-thumbnail:hover .play-button {
    background: rgba(0, 169, 129, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-iframe {
    display: none;
    width: 100%;
    height: 450px;
    border-radius: 10px;
}

/* Features Section */
.features-section {
    background: #EDF2F4;
    padding: 80px 20px;
}

.features-section h2 {
    text-align: center;
    font-size: 3em;
    font-weight: 800;
    color: var(--color-green-light);
    margin-bottom: 50px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.feature-card i {
    font-size: 40px;
    color: var(--color-green-light);
    margin-bottom: 20px;
}

.feature-card h3 {
    color: var(--color-green-light);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--color-green-dark);
    line-height: 1.6;
}

/* Resources Section Feature Cards (White text variant) */
.resources-section .feature-card {
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.resources-section .feature-card i,
.resources-section .feature-card h3,
.resources-section .feature-card p {
    color: white !important;
}

/* Comparison Table */
.comparison-table {
    max-width: 1000px;
    margin: 60px auto 0;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    background: var(--color-green-light);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 700;
    font-size: 18px;
}

.comparison-table th:first-child {
    text-align: left;
    background: var(--color-green-dark);
}

.comparison-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--color-text-dark);
}

.comparison-table .check {
    color: var(--color-green-light);
    font-size: 24px;
}

.comparison-table .cross {
    color: var(--color-red);
    font-size: 24px;
}

/* Testimonials Section */
.testimonials-section {
    background: white;
    padding: 80px 20px;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 3em;
    font-weight: 800;
    color: var(--color-green-light);
    margin-bottom: 50px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 80px;
    color: var(--color-green-light);
    opacity: 0.2;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author .avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-green-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
}

.testimonial-author .info h4 {
    color: var(--color-green-dark);
    font-weight: 700;
    margin-bottom: 3px;
}

.testimonial-author .info p {
    color: #666;
    font-size: 14px;
}

/* Image Text Sections */
.image-text-section {
    background: linear-gradient(to bottom, var(--color-green-dark), var(--color-green-light));
    padding: 80px 20px;
    color: white;
}

.image-text-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 40px;
}

.image-text-grid.reverse {
    direction: rtl;
}

.image-text-grid.reverse > * {
    direction: ltr;
}

.image-text-grid img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.image-text-content h2 {
    font-size: 2.5em;
    font-weight: 800;
    margin-bottom: 25px;
}

.image-text-content p {
    font-size: 20px;
    line-height: 1.8;
}

/* Resources Section */
.resources-section {
    background: linear-gradient(to bottom, var(--color-green-dark), var(--color-green-light));
    padding: 80px 20px;
    color: white;
}

.resources-section h2 {
    text-align: center;
    font-size: 3.7em;
    font-weight: 800;
    margin-bottom: 50px;
}

.resources-section .gradient-text {
    background: linear-gradient(to right, #fff, #F0F0F0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Pricing Section */
.pricing-section {
    background: white;
    padding: 80px 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border: 2px solid var(--color-green-light);
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.pricing-card h3 {
    color: var(--color-green-light);
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 20px;
}

.pricing-features {
    text-align: left;
    margin: 20px 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 6px 0;
    display: flex;
    align-items: center;
    font-size: 14px;
}

.pricing-features li strong {
    font-weight: 500;
    color: #333;
}

.pricing-features li i {
    color: var(--color-green-light);
    margin-right: 10px;
    font-size: 14px;
    min-width: 16px;
}

.pricing-features li.excluded {
    color: #999;
    opacity: 0.7;
}

.pricing-features li.excluded i {
    color: #ccc;
    font-size: 12px;
}

.pricing-features li.excluded strong {
    color: #999;
    text-decoration: line-through;
}

.old-price {
    color: var(--color-red);
    text-decoration: line-through;
    font-size: 18px;
    margin-bottom: 10px;
}

.new-price {
    color: var(--color-green-light);
    font-size: 84px;
    font-weight: 800;
    line-height: 1;
    margin: 20px 0;
}

.payment-info {
    color: var(--color-red);
    font-weight: 600;
    margin-bottom: 30px;
}

/* Pricing Options (Monthly/Annual) */
.pricing-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 30px 0;
    align-items: stretch;
}

.price-option {
    text-align: center;
    padding: 20px 15px;
    border-radius: 12px;
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.price-option:hover {
    border-color: var(--color-green-light);
    background: #f0fdf4;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 169, 129, 0.15);
}

.price-option.annual {
    background: linear-gradient(135deg, rgba(0, 169, 129, 0.08), rgba(0, 92, 75, 0.05));
    border: 2px solid var(--color-green-light);
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 169, 129, 0.2);
}

.price-option.annual::before {
    content: 'RECOMENDADO';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-green-light);
    color: white;
    padding: 5px 18px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 169, 129, 0.3);
}

.price-label {
    font-size: 13px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
}

.price-option.annual .price-label {
    color: var(--color-green-dark);
    font-weight: 700;
}

.price-option .new-price {
    font-size: 42px;
    margin: 8px 0 4px;
    line-height: 1;
    color: var(--color-green-light);
}

.price-option.annual .new-price {
    font-size: 48px;
    color: var(--color-green-dark);
}

.price-period {
    font-size: 14px;
    color: #888;
    font-weight: 500;
    margin-bottom: 8px;
}

.price-option.annual .price-period {
    color: var(--color-green-dark);
    font-weight: 600;
}

.price-divider {
    display: none;
}

.price-savings {
    margin-top: auto;
    font-size: 12px;
    color: white;
    font-weight: 700;
    background: var(--color-green-light);
    padding: 6px 10px;
    border-radius: 12px;
    display: inline-block;
    box-shadow: 0 2px 4px rgba(0, 169, 129, 0.2);
}

.pricing-card .btn-primary {
    width: 100%;
    margin-top: 25px;
}

.pricing-note {
    margin-top: 20px;
    font-size: 12px;
    color: #888;
    text-align: center;
    line-height: 1.6;
}

.pricing-note p {
    margin: 4px 0;
}

.pricing-note strong {
    font-weight: 500;
}

.pricing-card .trust-badges {
    justify-content: center;
    margin-top: 15px;
    gap: 20px;
}

.pricing-card .trust-badge {
    font-size: 12px;
}

.pricing-card .trust-badge i {
    font-size: 16px;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 20px;
}

.faq-section h2 {
    text-align: center;
    font-size: 65px;
    font-weight: 800;
    color: var(--color-green-light);
    margin-bottom: 50px;
}

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

.faq-item {
    margin-bottom: 15px;
    border: 3px solid #E0E0E0;
    border-radius: 5px;
    overflow: hidden;
}

.faq-header {
    background: var(--color-green-light);
    color: white;
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.faq-header:hover {
    background: var(--color-green-hover);
}

.faq-header i {
    transition: transform 0.3s ease;
}

.faq-header.active i {
    transform: rotate(180deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: #505050;
    line-height: 1.8;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-content.active {
    max-height: 500px;
    padding: 20px;
}

/* Form Validation */
.contact-form input.valid,
.contact-form textarea.valid {
    border-color: var(--color-green-light);
    background: #f0fff4;
}

.contact-form input.invalid,
.contact-form textarea.invalid {
    border-color: var(--color-red);
    background: #fff5f5;
}

.form-message {
    margin-top: 15px;
    padding: 15px;
    border-radius: 10px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(to bottom, var(--color-green-dark), var(--color-green-light));
    padding: 80px 20px;
    color: white;
    text-align: center;
}

.guarantee-section h2 {
    font-size: 2.2em;
    font-weight: 800;
    margin-bottom: 30px;
}

.guarantee-section p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 80px;
    color: white;
    margin-bottom: 30px;
    opacity: 0.9;
}

.guarantee-icon i {
    display: block;
}

/* Contact Section */
.contact-section {
    background: #EDF2F4;
    padding: 80px 20px;
}

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

.contact-section h2 {
    color: var(--color-green-light);
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 35px;
    text-align: center;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px 18px;
    margin-bottom: 25px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: inherit;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-green-light);
    background: white;
    box-shadow: 0 0 0 3px rgba(0, 169, 129, 0.1);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

.contact-form button {
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    width: 100%;
}

.contact-info-wrapper {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

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

.contact-info li {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-info li:hover {
    background: #f0f0f0;
    transform: translateX(5px);
}

.contact-info li i {
    color: var(--color-green-light);
    font-size: 24px;
    margin-right: 18px;
    width: 30px;
    text-align: center;
}

.contact-info li span {
    color: #333;
    font-size: 16px;
    font-weight: 500;
}

.whatsapp-btn-large {
    width: 100%;
    text-align: center;
    padding: 18px 30px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.whatsapp-btn-large i {
    margin-right: 10px;
    font-size: 22px;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, var(--color-green-dark), var(--color-green-light));
    padding: 50px 20px 30px;
    color: white;
    text-align: center;
}

/* Mobile Features Slider */
@media (max-width: 768px) {
    .features-grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .feature-card {
        min-width: 280px;
        scroll-snap-align: start;
    }
}

.footer p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

.footer p:first-of-type {
    font-size: 13px;
    opacity: 0.9;
}

.footer p:last-of-type {
    margin-top: 20px;
}

.footer-contact {
    font-size: 13px;
    opacity: 0.85;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-link:hover {
    opacity: 1;
    text-decoration: underline;
}

.footer-link i {
    font-size: 14px;
}

.footer-separator {
    opacity: 0.5;
    margin: 0 5px;
}

/* Responsive */
@media (max-width: 768px) {
    body {
        padding-top: 90px;
    }
    
    .top-bar {
        font-size: 13px;
        padding: 10px 15px;
    }
    
    .sticky-nav {
        top: 40px;
        padding: 12px 15px;
    }
    
    .sticky-nav .logo-img {
        height: 54px;
        max-width: 264px;
    }
    
    .sticky-nav .nav-menu {
        display: none;
    }
    
    .sticky-nav .nav-buttons {
        gap: 10px;
    }
    
    .sticky-nav .btn-secondary {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .sticky-nav .btn-primary {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .hero {
        padding: 60px 20px 50px;
    }
    
    .hero h1 {
        font-size: 2em;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .trust-badges {
        flex-direction: column;
        gap: 15px;
    }
    
    .image-text-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form,
    .contact-info-wrapper {
        padding: 30px 20px;
    }
    
    .resources-section h2,
    .faq-section h2,
    .testimonials-section h2 {
        font-size: 2em;
    }
    
            .new-price {
                font-size: 60px;
            }
            
            .pricing-options {
                grid-template-columns: 1fr;
                gap: 12px;
            }
            
            .price-option {
                padding: 18px 12px;
            }
            
            .price-option .new-price {
                font-size: 36px;
            }
            
            .price-option.annual .new-price {
                font-size: 40px;
            }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        overflow-x: auto;
    }
    
    .comparison-table table {
        min-width: 600px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
