:root {
    --primary-blue: #A8D8FF;
    --secondary-blue: #E6F4FF;
    --pale-yellow: #fff4db;
    --accent-yellow: #FFE5A8;
    --accent-yellow-dark: #FFD470;
    --text-dark: #2C3E50;
    --text-black: #000000;
    --text-light: #6C7A89;
    --white: #FFFFFF;
    --dark-blue: #1E3A8A;
    --blur-amount: 4px;
    scroll-behavior: smooth;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    transition: filter 0.3s ease;
}

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

/* Navigation */
.navbar {
    background: var(--white);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 95;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.logo img {
    padding: 10px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    margin-left: 2rem;
}

/* Buttons */
.btn-primary {
    background: var(--accent-yellow);
    color: var(--text-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
}

.btn-primary:hover {
    background: var(--accent-yellow-dark);
    box-shadow: none;
    transform: translateY(1px);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    padding: 6rem 0 0 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 1rem;
    padding-bottom: 1rem
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero .lead {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    margin-bottom: 2rem;
}

.rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.hero-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--primary-blue);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-yellow);
    transform: scale(1.2);
}

.hero-image {
    position: relative;
    border-radius: 20px 20px 0 0;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    border: 10px solid var(--white);
    border-bottom: none;
}

.carousel-container {
    overflow: hidden;
}

.carousel-track {
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.carousel-slide {
    min-width: 100%;
    display: none;
    opacity: 0;
    transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.carousel-slide.active {
    display: block;
    opacity: 1;
    position: relative;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px 4px 0 0;
}

/* Update the hero carousel button styles */
.hero-carousel .carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
    z-index: 2;
}

.hero-carousel .carousel-button.prev {
    left: -20px;
}

.hero-carousel .carousel-button.next {
    right: -20px;
}

.hero-carousel .carousel-button:hover {
    background: var(--accent-yellow);
}

/* Keep the gradient overlay */
.hero-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, var(--primary-blue) 100%);
    pointer-events: none;
}

h2 {
    text-align: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-image {
        margin-top: 2rem;
        border-radius: 8px 8px 0 0;
    }
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: var(--white);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2rem;
    background: linear-gradient(180deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 12px;
    text-align: center;
}

.feature-card img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.feature-card .icon-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-card .icon-background {
    font-size: 4rem;
    color: var(--accent-yellow);
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

.feature-card .icon-foreground {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    color: var(--text-dark);
}

/* CTA Section */
.cta {
    background: linear-gradient(180deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    padding: 4rem 0;
    text-align: center;
}

.cta h2 {
    margin-bottom: 1rem;
}

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

/* Screenshot Carousel */
.screenshots {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
}

.carousel {
    position: relative;
    margin-top: 3rem;
}

.carousel-container {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: auto;
    display: block;
}

.slide-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    text-align: center;
}

.slide-caption h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.slide-caption p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.carousel-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.carousel-button:hover {
    background: var(--accent-yellow);
}

.carousel-button.prev {
    left: 0;
}

.carousel-button.next {
    right: 0;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: var(--primary-blue);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--accent-yellow);
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .carousel-container {
        margin: 0 0;
        border-radius: 0;
    }
    
    .slide-caption {
        position: relative;
        background: var(--white);
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }

    .carousel-button {
        top: 70% !important;
    }
}

/* Pricing Section */
.pricing {
    padding: 6rem 0;
    background: var(--white);
}

.pricing h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: linear-gradient(180deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.pricing-card.featured {
    background: linear-gradient(180deg, var(--accent-yellow) 0%, var(--accent-yellow-dark) 100%);
    transform: scale(1.05);
}

/* Add specific button styling for featured card */
.pricing-card.featured .btn-primary {
    background: var(--primary-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured .btn-primary:hover {
    background: var(--secondary-blue);
    box-shadow: none;
    transform: translateY(1px);
}

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

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.price {
    margin-bottom: 1rem;
}

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

.price .period {
    color: var(--text-light);
}

.features-list {
    list-style: none;
    margin: 2rem 0;
}

.features-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.pricing-card .btn-primary {
    width: 100%;
    display: inline-block;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.pricing-toggle span {
    font-weight: 500;
}

.pricing-toggle span.active {
    color: var(--text-dark);
}

.pricing-toggle .discount {
    background: var(--accent-yellow);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.875rem;
    margin-left: 0.5rem;
}

/* Toggle Switch */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 32px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--primary-blue);
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 24px;
    width: 24px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--accent-yellow);
}

input:checked + .slider:before {
    transform: translateX(26px);
}

/* Global Typography */
h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.3;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-image {
        margin-top: 2rem;
    }
    
    .hero-image img {
        max-width: 100%;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .pricing-grid {
        gap: 1rem;
    }
}

/* First, remove all previous blur-related styles */
.blur-wrapper {
    transition: all 0.2s ease;
}

/* Update the overlay implementation */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    backdrop-filter: blur(8px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 90;
    pointer-events: none;
}

/* Position buttons above the overlay */
.btn-primary {
    position: relative;
    z-index: 100;
}

/* Show overlay when any button is hovered */
.btn-primary:hover ~ * {
    filter: blur(4px);
}

.btn-primary:hover + *,
.btn-primary:hover ~ * {
    opacity: 0.7;
}

body:has(.btn-primary:hover)::before {
    opacity: 1;
    visibility: visible;
}

/* Keep navigation above overlay */
.navbar {
    position: relative;
    z-index: 95;
}

.nav-links {
    position: relative;
    z-index: 100;
}

.nav-links .btn-primary:hover ~ a {
    filter: blur(4px);
}

.carousel-title {
    text-align: center;
    margin-bottom: 1rem;
    min-height: 2rem;  /* Prevent layout shift */
}

.slide-title {
    display: none;
    margin: 0;
    color: var(--text-dark);
    font-size: 1.5rem;
    font-weight: 600;
}

.slide-title.active {
    display: block;
}

/* Footer Styles */
.footer {
    background: var(--pale-yellow);
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-dark);
}

.footer a {
    color: var(--text-dark);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    width: 32px;
    height: 32px;
    margin-right: 0.5rem;
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.footer-section p {
    color: var(--text-dark);
    max-width: 300px;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
}

.footer-section ul li img {
    max-height: 32px;
    width: auto;
    object-fit: contain;
}

.footer-section ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
    flex: 1;
}

.footer-section ul li a:hover {
    color: var(--text-black);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-dark);
    font-size: 0.875rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-section p {
        margin: 0 auto;
    }
}

/* Update footer styles */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    max-width: 300px;
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
    width: 32px; /* Fixed width for icons column */
}

.social-icons img {
    max-height: 24px;
    width: auto;
    object-fit: contain;
}

.social-links ul {
    flex: 1;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links ul li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.social-links ul li:last-child {
    margin-bottom: 0;
}

.social-links ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

/* Ensure consistent spacing */
.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section p {
    text-align: left;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .social-links {
        max-width: 100%;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-section p {
        text-align: center;
        margin: 0 auto;
    }

    .footer-section ul li {
        text-align: center;
    }

    .social-links {
        margin: 0 auto;
    }
}

/* Legal Pages Styles */
.legal-content {
    padding: 4rem 0;
    background: var(--white);
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content section {
    margin: 2rem 0;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: 1.5rem 0 1rem;
    text-align: left;
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: 1.25rem 0 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-content ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
}

.logo a {
    text-decoration: none;
    color: var(--text-dark);
}

/* Update loader styles */
.carousel-loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.carousel-loader .spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--secondary-blue);
    border-top: 5px solid var(--accent-yellow);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

.carousel-loader p {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.1rem;
    margin: 0;
    white-space: nowrap;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Hide carousel content while loading */
.hero-carousel.loading .carousel-track,
.hero-carousel.loading .carousel-dots,
.hero-carousel.loading .carousel-title,
.hero-carousel.loading .carousel-button {
    opacity: 0;
    pointer-events: none;
}

/* Feature Details Section */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 8rem;
}

/* Default layout - image on right */
.feature-row {
    grid-template-areas: "content image";
}

.feature-row .feature-image {
    padding: 4rem 0 4rem 2rem; /* top right bottom left */
}

/* Reversed layout - image on left */
.feature-row.reverse {
    grid-template-areas: "image content";
    direction: initial;
}

.feature-row.reverse .feature-image {
    padding: 4rem 2rem 4rem 0; /* top right bottom left */
}

/* Place items in their grid areas */
.feature-content {
    grid-area: content;
    padding: 2rem;
}

.feature-image {
    grid-area: image;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: linear-gradient(180deg, var(--secondary-blue) 0%, var(--primary-blue) 100%);
    padding: 2rem;
}

/* Remove the previous direction fix */
.feature-row.reverse .feature-content {
    direction: initial;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        grid-template-areas: 
            "image"
            "content";
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .feature-content {
        padding: 1rem;
        text-align: center;
    }

    .feature-content h2 {
        font-size: 2rem;
        text-align: center;
    }

    .feature-row .feature-image,
    .feature-row.reverse .feature-image {
        padding: 2rem; /* Consistent padding on mobile */
    }
}

.feature-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
}

.feature-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-align: left;
}

.feature-content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.feature-button {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 1.5rem;
    background: var(--accent-yellow);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 2rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-button:hover {
    background: var(--accent-yellow-dark);
    transform: translateY(-1px);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
    border-radius: 8px;
}

.feature-image:hover img {
    transform: scale(1.02);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--pale-yellow) 0%, var(--white) 100%);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 2.5rem;
}

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

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.testimonial-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.testimonial-author {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials {
        padding: 4rem 0;
    }

    .testimonials h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .feature-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
        text-align: center !important;
    }
}

/* Add to existing navbar styles */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 1rem;
    }

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

    .nav-links {
        justify-content: center;
        width: 100%;
    }
}

/* Update Back to Top link styles */
.back-to-top {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.back-to-top:hover {
    color: var(--text-black);
}

.back-to-top i {
    font-size: 1.1rem;
}

/* Update mobile styles */
@media (max-width: 768px) {
    .footer-section .back-to-top {
        margin-top: 1.5rem;
        justify-content: center;
    }
} 