:root{
    --standard-border-radius: 10px;
    --standard-padding: 20px;
    --standard-list-style: none;
    --standard-margin: 20px;
    --standard-font-size: 3rem;


}

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

/* General Section Styles */
section {
    padding: 40px 20px;
    width: 100%;;
}

ul, li {
    list-style: none;
}

ul a {
    text-decoration: none;
    color: inherit;
}

/* Base Styling (Mobile-First Approach) */
body {
    font-family: Arial, sans-serif;
    scroll-behavior: smooth;
    line-height: 1.5rem;
    color: #333;
    background-color: #f8f8f8;
}

header {
    background-color: white;
    border-bottom: 5px solid lightslategrey;
}

/* Top Navbar Section */
.navbar-top {
    display: flex;
    justify-content: space-between;
    padding: 20px 40px;
}

.logo {
    height: 98px;
}

/* Contact Buttons */
.contact-buttons {
    display: flex;
    gap: 20px;
}

.contact-button {
    background-color: lightslategray;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 10px;
    transition: background-color 0.3s;
    position: relative;
    max-width: 1400px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
    margin: auto;
    letter-spacing: 0.675px;
}

.contact-button:hover {
    background-color: gray;
}

/* Bottom Navbar Section */
.navbar-bottom {
    display: none;
    justify-content: center;
    padding: 10px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    padding: 10px;
    transition: color 0.3s, background-color 0.3s;
}

.nav-links li:hover a {
    color: white;
    background-color: lightslategray;
}

/* Dropdown Styling */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 150px;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.dropdown-content a {
    color: #333;
    padding: 10px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #ddd;
}

.dropdown:hover .dropdown-content {
    display: block;
}
.navbar-top {
    flex-direction: column; /* Stack items vertically */
    padding: 10px 20px; /* Adjust padding */
}


.nav-links {
    display: none; /* Hide links by default */
    flex-direction: column; /* Stack links vertically */
    gap: 1rem; /* Adjust gap between links */
    padding: 0; /* Remove padding */
    width: 100%; /* Full width */
    text-align: center; /* Center align text */
}

.nav-links.active {
    display: flex; /* Show links when active */
}

/* Hero Section */
#hero {
    background-color: #ffffff;
    padding: 50px 20px;
    border-bottom: 1px solid #ddd;
}

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

.slideshow {
    flex: 1;
    position: relative;
    width: 100%;
    min-height: 300px;
    background: #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    animation: slideAnimation 25s infinite;
}

.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 8s; }
.slide:nth-child(3) { animation-delay: 16s; }

@keyframes slideAnimation {
    0%, 100% { opacity: 0; }
    20%, 80% { opacity: 1; }
}

.welcome-message {
    flex: 1;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.welcome-message h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 15px;
}

.welcome-message p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #0073e6;
    color: white;
    padding: 12px 25px;
    font-size: 1.2rem;
    border-radius: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}


/* Testimonials Section */
#testimonials {
    background-color: #f9f9f9;
    padding: 40px;
    text-align: center;
}

.testimonialSlider {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    flex: 1 1 calc(33% - 20px);
    max-width: 300px;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.review-icon img {
    width: 120px;
    margin-top: 10px;
}

/* Services Section */
#services::after {
    background-color: #f9f9f9; /* Light background */
    padding: 50px 20px;
    text-align: center;
}

.container-services::after{
    max-width: 1200px; /* Limit width for readability */
    margin: 0 auto;
    float: left;
    clear: both;
}

.container-services h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
}

.container-services .intro-text {
    font-size: 1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.6;
}

/* Services Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
    gap: 20px; /* Space between grid items */
}

/* Service Item Styling */
.service-item {
    background-color: white; /* White background for contrast */
    border: 1px solid #ddd; /* Light border */
    border-radius: 10px; /* Rounded corners */
    padding: 20px;
    text-align: center; /* Center-align content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px); /* Slight lift on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
}

.service-item img {
    width: 100%; /* Make image responsive */
    height: auto;
    border-radius: 10px; /* Rounded corners for images */
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.5rem;
    color: #0073e6; /* Accent color for titles */
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-button {
    display: inline-block;
    background-color: #0073e6;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.service-button:hover {
    background-color: #005bb5; /* Darker blue on hover */
}

/* Sponsors Section */
#sponsors {
    background: linear-gradient(to bottom, #f3f3f3, #ffffff);
    padding: 50px 20px;
    text-align: center;
}

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

.container-sponsors h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 30px;
}

.sponsor-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
}

.sponsor-content,
.sponsor-image {
    flex: 1 1 45%; /* Equal width for image and content */
    padding: 20px;
}

.sponsor-content {
    text-align: left;
}

.sponsor-content h3 {
    font-size: 1.8rem;
    color: #0073e6;
    margin-bottom: 15px;
}

.sponsor-content p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.sponsor-button {
    display: inline-block;
    background-color: #0073e6;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    transition: background-color 0.3s ease;
}

.sponsor-button:hover {
    background-color: #005bb5;
}

.sponsor-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


/* About Us Section */
#about {
    background-color: #f9f9f9; /* Light background */
    padding: 50px 20px; /* Padding around the section */
    text-align: center;
}

.container-about {
    max-width: 1200px; /* Limit width */
    margin: 0 auto; /* Center the content */
    padding: 20px;
}

.container-about h2 {
    font-size: 2.5rem; /* Section title */
    color: #333; /* Dark text */
    margin-bottom: 20px; /* Space below the title */
}

.about-intro {
    font-size: 1.1rem; /* Slightly larger text */
    color: #555; /* Muted text color */
    margin-bottom: 30px;
    line-height: 1.6; /* Better readability */
}

.about-email {
    font-size: 1rem;
    color: #333;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.about-email .email-text {
    font-size: 1.2rem;
    color: #0073e6;
    font-weight: bold;
}

.about-email .email-button {
    display: inline-block;
    background-color: #0073e6;
    color: white;
    text-decoration: none;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.about-email .email-button:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

.about-email .email-button:active {
    transform: translateY(1px);
}


.about-content {
    display: flex; /* Flex layout for content */
    flex-wrap: wrap; /* Wrap content on smaller screens */
    gap: 40px; /* Space between items */
    justify-content: center; /* Center align content */
}

/* Opening Hours Section */
.about-hours {
    flex: 1 1 300px; /* Responsive width */
    background-color: white;
    border: 1px solid #ddd; /* Light border */
    border-radius: 10px; /* Rounded corners */
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    text-align: left; /* Align text to the left */
}

.about-hours h3 {
    font-size: 1.5rem;
    color: #0073e6; /* Accent color */
    margin-bottom: 15px;
}

.about-hours ul {
    list-style: none; /* Remove default bullet points */
    padding: 0;
}

.about-hours ul li {
    font-size: 1rem;
    color: #555; /* Muted text color */
    margin-bottom: 10px;
}

.about-hours ul li strong {
    color: #333; /* Darker text for emphasis */
}

/* Our Team Section */
.about-team {
    flex: 1 1 300px; /* Responsive width */
    text-align: center;
    
}

.about-team h3 {
    font-size: 1.5rem;
    color: #0073e6; /* Accent color */
    margin-bottom: 15px;
}

.about-team img {
    max-width: 100%; /* Responsive image */
    height: auto; /* Maintain aspect ratio */
    border-radius: 10px; /* Rounded corners */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
}

/* Responsive Adjustments */
/* @media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        align-items: center;
    }
} */
/* Map Section */
.about-map {
    margin-top: 40px; /* Add spacing above the map */
    text-align: center; /* Center-align the map heading */
}

.about-map h3 {
    font-size: 1.8rem; /* Heading size */
    color: #0073e6; /* Accent color */
    margin-bottom: 20px; /* Spacing below heading */
}

.about-map iframe {
    border-radius: 10px; /* Optional: Rounded corners for the map */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a shadow */
}
/* Inquiry Section */
#inquiry {
    background: linear-gradient(to bottom, #ffffff, #f9f9f9);
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-inquiry {
    max-width: 900px;
    width: 100%;
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
}

.inquiry-header {
    text-align: center;
    margin-bottom: 30px;
}

.inquiry-header h2 {
    font-size: 2.2rem;
    color: #333;
    margin-bottom: 10px;
}

.inquiry-description {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

.contact-container {
    margin: 0 auto;
    width: 100%;
}

.contact-form {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.form-group {
    flex: 1 1 calc(50% - 20px); /* Two columns on larger screens */
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 15px;
    font-size: 1rem;
    color: #333;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #0073e6;
    box-shadow: 0 0 5px rgba(0, 115, 230, 0.3);
    outline: none;
}

.form-footer {
    flex: 1 1 100%; /* Full width for the submit button */
    text-align: center;
}

.submit-button {
    display: inline-block;
    background-color: #0073e6;
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
}

.submit-button:hover {
    background-color: #005bb5;
    transform: translateY(-2px);
}

.submit-button:active {
    transform: translateY(1px);
}




/* Footer */
.footer {
    text-align: center;
    background-color: #333;
    color: white;
    padding: 20px;
    margin-top: 20px;
}

.footer ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding-bottom: 10px;
}

.footer ul a {
    color: white;
    text-decoration: none;
}
/* Hamburger Button */


/* Mobile styles */
/* Responsive Adjustments for Small Screens (375px and below) */
@media (max-width: 375px) {
    body {
        font-size: 0.85rem; /* Slightly smaller text for readability */
    }
    .logo-container {
        display: flex;
        justify-content: center; /* Center the logo */
        align-items: center;
        padding: 10px; /* Add spacing around the logo */
    }

    .logo {
        max-width: 100%; /* Allow the logo to scale within its container */
        width: 100%; /* Ensure a fixed width for clarity */
        height: auto; /* Maintain the aspect ratio */
        object-fit: contain; /* Ensure the image fits properly without distortion */
    }

    .navbar-top {
        flex-direction: column; /* Stack items vertically */
        padding: 10px 15px; /* Reduce padding */
    }

    .contact-buttons {
        flex-direction: column; /* Stack buttons vertically */
        gap: 10px; /* Adjust spacing between buttons */
        align-items: center; /* Center-align buttons */
    }

    .contact-button {
        font-size: 0.8rem; /* Smaller button text */
        padding: 8px 10px; /* Compact button size */
    }

    #hero {
        flex-direction: column; /* Stack hero content vertically */
        padding: 20px 10px; /* Reduce padding */
        
    }

    .slideshow {
        margin-left: 0; /* Center slideshow on smaller screens */
        width: 100%; /* Full width */
        min-height: 200px; /* Adjust minimum height for smaller devices */
    }

    .welcome-message h2{
        font-size: 1.9em; /* Smaller size for better fit */
        letter-spacing: 1.8px; /* Slightly more spacing between letters */
        line-height: 1.3; /* Adjusted line height for readability */
        margin-bottom: 20px; /* Extra space below the heading */
    }

    .welcome-message p {
        font-size: 1.3rem; /* Adjust paragraph font size */
        line-height: 1.5; /* Ensure good spacing for smaller text */
    }

    .cta-button {
        font-size: 1rem;
        padding: 10px 15px; /* Maintain button prominence on small screens */
    }

    #services {
        padding: 30px 10px;
    }

    .services-grid {
        gap: 15px;
    }

    .service-item {
        padding: 10px;
    }

    .service-item h3 {
        font-size: 1.1rem;
    }

    .service-item p {
        font-size: 0.85rem;
    }

    footer {
        font-size: 0.85rem; /* Reduce footer font size */
        padding: 15px 10px; /* Compact padding */
    }

    .footer ul {
        flex-direction: column; /* Stack footer links vertically */
        gap: 5px; /* Adjust spacing between links */
    }
    #testimonials {
        padding: 30px 10px;
    }
    #testimonials {
        padding: 30px 10px;
    }

    .testimonialSlider {
        gap: 10px; /* Maintain spacing between cards */
        padding-left: 15px; /* Ensure space on the left for the first card */
        padding-right: 15px; /* Ensure space on the right for the last card */
        overflow-x: auto; /* Allow horizontal scrolling */
        scroll-snap-type: x mandatory;
    }

    .testimonial-card {
        flex: 0 0 85%; /* Ensure cards are 85% of the viewport width */
        max-width: 85%; /* Consistent sizing */
        padding: 15px; /* Compact padding for smaller screens */
        scroll-snap-align: center; /* Snap cards to the center */
    }

    .testimonial-card:first-child {
        margin-left: 200px; /* Add extra left margin for the first card */
    }

    .testimonial-card:last-child {
        margin-right: 10px; /* Add extra right margin for the last card */
    }

    .testimonial-card h3 {
        font-size: 1.1rem; /* Adjust title size for readability */
    }

    .testimonial-card p {
        font-size: 0.85rem; /* Adjust paragraph size */
    }
    #about {
        padding: 30px 10px;
    }

    .container-about h2 {
        font-size: 1.8rem;
    }

    .about-intro {
        font-size: 0.85rem;
    }

    .about-hours,
    .about-team {
        padding: 15px;
    }

    .about-hours h3,
    .about-team h3 {
        font-size: 1.2rem;
    }

    .about-hours ul li {
        font-size: 0.85rem;
    }
    .about-email {
        gap: 8px;
    }

    .about-email .email-text {
        font-size: 0.9rem;
    }

    .about-email .email-button {
        font-size: 0.85rem;
        padding: 7px 12px;
    }

    #sponsors {
        padding: 30px 10px;
    }

    .sponsor-content h3 {
        font-size: 1.3rem;
    }

    .sponsor-content p {
        font-size: 0.9rem;
    }

    .sponsor-button {
        font-size: 0.9rem;
        padding: 7px 10px;
    }

    .sponsor-image img {
        border-radius: 5px;
    }
    #sponsors {
        padding: 30px 10px;
    }

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

    .sponsor-content h3 {
        font-size: 1.3rem;
    }

    .sponsor-content p {
        font-size: 0.9rem;
    }

    .sponsor-button {
        font-size: 0.9rem;
        padding: 7px 10px;
    }

    .sponsor-image img {
        border-radius: 5px;
    }

    /* Specific to QuickSmile */
    .sponsor-row:first-child {
        flex-direction: column-reverse; /* Stack image above the content */
    }

    .sponsor-row:first-child .sponsor-image {
        order: -1; /* Place image at the top */
        margin-bottom: 15px;
    }

    .sponsor-row:first-child .sponsor-content {
        text-align: center; /* Center-align content for better aesthetics */
    }

    .sponsor-row:first-child .sponsor-content p {
        margin-top: 10px;
    }
    #inquiry {
        padding: 30px 10px;
    }

    .container-inquiry {
        padding: 20px 15px;
    }

    .inquiry-header h2 {
        font-size: 1.8rem;
    }

    .inquiry-description {
        font-size: 0.9rem;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 0.85rem;
        padding: 8px 12px;
    }

    .submit-button {
        font-size: 0.9rem;
        padding: 8px 10px;
    }

    .footer {
        padding: 15px 5px;
    }

    .footer-links {
        flex-direction: column;
        gap: 5px;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .footer p {
        font-size: 0.8rem;
    }
}



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

    .service-item {
        padding: 15px;
    }

    .service-item h3 {
        font-size: 1.2rem;
    }

    .service-item p {
        font-size: 0.9rem;
    }

    .testimonialSlider {
        gap: 5px;
    }

    .testimonial-card {
        flex: 0 0 90%;
        max-width: 90%;
    }

    .testimonial-card h3 {
        font-size: 1.2rem;
    }

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

    .review-icon img {
        width: 100px;
    }

   

}






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

    .container-services .intro-text {
        margin-bottom: 20px;
    }
/* test */
    .testimonialSlider {
        flex-wrap: nowrap;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding: 10px;
    }

    .testimonial-card {
        flex: 0 0 80%;
        scroll-snap-align: center;
        max-width: 80%;
        margin: 0 auto;
    }
    #about {
        padding: 40px 15px;
    }

    .container-about h2 {
        font-size: 2rem;
    }

    .about-intro {
        font-size: 0.95rem;
    }

    .about-hours h3,
    .about-team h3 {
        font-size: 1.3rem;
    }

    .about-hours ul li {
        font-size: 0.9rem;
    }
    .hero-container {
        flex-direction: column;
        align-items: center;
    }

    .slideshow {
        width: 100%;
        min-height: 200px;
    }

    .welcome-message {
        padding: 15px;
    }

    .welcome-message h2 {
        font-size: 1.8rem;
    }

    .welcome-message p {
        font-size: 0.9rem;
    }

    .cta-button {
        font-size: 1.1rem;
        padding: 10px 20px;
    }
    .form-group {
        flex: 1 1 100%; /* Stack fields vertically */
    }

    .container-inquiry {
        padding: 30px 20px;
    }

    .submit-button {
        font-size: 1rem;
        padding: 10px 15px;
    }
}





@media (max-width: 1024px) {
    .container-services h2 {
        font-size: 2rem;
    }

    .container-services .intro-text {
        font-size: 0.95rem;
    }

    .service-item h3 {
        font-size: 1.3rem;
    }

    .service-item p {
        font-size: 0.95rem;
    }
    .about-content {
        flex-direction: column; /* Stack sections */
        gap: 20px;
    }

    .about-hours,
    .about-team {
        flex: 1 1 100%;
    }
    .hero-container {
        flex-wrap: wrap;
        text-align: center;
    }

    .slideshow {
        min-height: 250px;
    }

    .welcome-message h2 {
        font-size: 2rem;
    }

    .welcome-message p {
        font-size: 0.95rem;
    }

    .container-sponsors h2 {
        font-size: 2rem;
    }

    .sponsor-row {
        flex-direction: column;
        gap: 30px;
    }

    .sponsor-content,
    .sponsor-image {
        flex: 1 1 100%; /* Full width for stacked layout */
    }

    #sponsors {
        padding: 40px 15px;
    }

    .container-sponsors h2 {
        font-size: 1.8rem;
    }

    .sponsor-content h3 {
        font-size: 1.5rem;
    }

    .sponsor-content p {
        font-size: 0.95rem;
    }

    .sponsor-button {
        font-size: 0.95rem;
        padding: 8px 15px;
    }

}



















/* Responsive Adjustments */
/* @media (max-width: 768px) {
    .sponsor-row {
        flex-direction: column;
        text-align: center;
    }

    .sponsor-content {
        text-align: center;
    }
} */

/* Responsive Adjustments */
/* @media (max-width: 768px) {
    .service-item {
        padding: 15px;

    .service-button {
        font-size: 0.9rem;
    }
} */
/* Responsive Adjustments */
/* @media (max-width: 768px) {
    .container-inquiry {
        padding: 30px 20px;
    }

    .form-group {
        gap: 20px;
        
    }

    .submit-button {
        font-size: 1rem;
    }
}