/* style.css */
:root {
    --primary-color: #0a462a;
    --secondary-color: #1a1a1a;
    --accent-white: #ffffff;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--accent-white);
    line-height: 1.7;
    color: #444;
}

/* Navigation */
.navbar {
    background: var(--accent-white);
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.logo {
    font-size: 2.5rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo i {
    font-size: 1.8rem;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.nav-links a.active {
    color: #031f16fd;
    font-weight: 700;
    border-bottom: 2px solid #0f553e;
    font-size: 20px;
}

.nav-links a:hover {
    color: #0d1d15;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    font-size: 1.8rem;
    color: var(--secondary-color);
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 70vh;
    background-image: url(./assets/dental\ banner\ 1.webp);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

/* Optional: Add a dark overlay to make text more readable */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 81%;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust opacity (0.3) as needed */
    z-index: 1;
}

.hero-content {
    position: relative; /* Ensures content appears above the overlay */
    z-index: 3;
    color: white; /* Light text color for better contrast */
    max-width: 800px; /* Optional: limits content width */
    text-align: center;
}



.hero h1 {
    font-size: 4rem;
    color: var(--accent-white);
    margin-bottom: 2rem;
    line-height: 1.2;
    /* -webkit-background-clip: text;
    -webkit-text-fill-color: transparent; */
}

/* Add other section styles from previous answer */
/* Include all other CSS rules from previous response here */

.hero p {
    font-size: 1.2rem;
    color: #f5f5f5;
    margin-bottom: 2rem;
}

.cta-btn {
    background: var(--primary-color);
    color: var(--accent-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
}

.cta-btn:hover {
    transform: translateY(-3px);
    background: #031a0f;
    transition: ease-in-out 2s;
}

/* Add these new styles after your .hero styles */

/* About Us Section */
.about-us {
    padding: 6rem 5%;
    background: var(--accent-white);
}

.section-heading {
    text-align: center;
    margin-bottom: 4rem;
}

.section-heading h2 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.section-heading .tagline {
    color: #666;
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

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

.about-text h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.about-text p {
    color: #666;
    margin-bottom: 2rem;
}

.mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.mv-card {
    background: var(--accent-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: var(--transition);
}

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

.mv-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-image img {
    width: 100%;
    /* height: auto; */
}

.commitment h3 {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.commitment-card {
    background: var(--accent-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: var(--transition);
}

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

.commitment-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Updated Features Section */
.features {
    padding: 6rem 5%;
    background: linear-gradient(45deg, rgba(0,255,136,0.03) 0%, rgba(255,255,255,1) 100%);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
}

/* Footer Styles */
footer {
    background: var(--secondary-color);
    color: var(--accent-white);
    padding: 4rem 5% 2rem;
    margin-top: 6rem;
    border-top: 3px solid var(--primary-color);
}

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

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

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

.footer-col li {
    margin-bottom: 0.8rem;
}

.footer-col a {
    color: var(--accent-white);
    text-decoration: none;
    transition: var(--transition);
}

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

.social-links {
    display: flex;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.opening-hours {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright span {
    margin: 0 0.5rem;
    opacity: 0.6;
}

.copyright a {
    color: var(--accent-white);
    text-decoration: none;
    transition: var(--transition);
}

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

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 5%;
}

.service-card {
    background: var(--accent-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    padding: 2rem 5%;
}

.gallery-item {
    height: 300px;
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-posts {
    padding: 5%;
}

.post {
    background: var(--accent-white);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: relative;
}

.post h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.edit-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
    font-weight: 600;
}

.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    padding: 2rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 2px solid #eee;
    border-radius: 8px;
    font-size: 1rem;
}

.contact-form button {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}

footer {
    background: var(--secondary-color);
    color: var(--accent-white);
    text-align: center;
    padding: 2rem 5%;
    margin-top: 5rem;
}
.copyright span{
    color: #00cc6a;
    font-weight: 600;
}
.copyright span:hover{
    color: #ffffff;
    font-size: 24px;
    transition: ease-in-out 2s;
    transform: translateY(-10px);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero::before{
        height: 82.4%;
    }
    .mobile-menu {
        display: block;
        font-size: 1.5rem;
        color: var(--secondary-color);
        cursor: pointer;
    }
    .logo {
        display: flex;
        flex-wrap: nowrap;
        font-size: 18px;
    }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .about-text h3 {
        font-size: 1.75rem;
        text-align: center;
    }
}
/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .copyright p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .section-heading h2 {
        font-size: 1.8rem;
    }
}

/* service section */
/* Services Page Specific Styles */
.services-hero {
    height: 70vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/service\ banner.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}
.hero-content
.services-main {
    padding: 6rem 5%;
    background-color: #f9f9f9;
}

.services-categories {
    margin-top: 3rem;
}

.service-category {
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 3rem;
    overflow: hidden;
    
}

.category-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-header i {
    font-size: 2rem;
}

.service-items {
    padding: 2rem;
}

.service-item {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.service-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-item h4 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.service-gallery img {
    width: 100%;
    height: 370px; /* Optimal height for visibility */
    object-fit: cover; /* Changed back to cover */
    object-position: center; /* Focus on center */
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-gallery img:hover {
    transform: scale(1.03);
}

/* Office Tour Section */
.office-tour {
    padding: 6rem 5%;
    background: white;
}

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

.office-gallery .gallery-item {
    text-align: center;
}

.office-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Smile Gallery Section */
.smile-gallery {
    padding: 6rem 5%;
    background: #f9f9f9;
}

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

.transformation-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.before-after img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}

/* Technology Section */
.technology {
    padding: 6rem 5%;
    background: white;
}

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

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

.tech-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

/* Service CTA */
.service-cta {
    padding: 4rem 5%;
    background: linear-gradient(15deg, var(--primary-color), #011f10);
    color: white;
    text-align: center;
}

.service-cta h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-cta .cta-btn {
    background: white;
    color: var(--secondary-color);
    margin-top: 2rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.5rem;
    }
    
    .before-after {
        grid-template-columns: 1fr;
    }

    .service-category{
        text-align: center;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 2rem;
    }
    
    .category-header {
        flex-direction: column;
        text-align: center;
    }
}

/* Contact Page Specific Styles */
.contact-hero {
    height: 50vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('./assets/contat\ banner\ 1.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
    height: 500px;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.contact-main {
    padding: 6rem 5%;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    padding-right: 2rem;
}

.info-cards {
    margin-top: 2rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
}

.info-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.social-section {
    margin-top: 3rem;
}

.social-section h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-form-container {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.submit-btn {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.submit-btn:hover {
    background: #00cc6a;
    transform: translateY(-3px);
}

.office-map {
    padding: 6rem 5%;
    background: white;
}

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

.parking-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #f5f5f5;
    border-radius: 8px;
}

.parking-info i {
    color: var(--primary-color);
    font-size: 1.5rem;
}

.emergency-contact {
    padding: 6rem 5%;
    background: linear-gradient(45deg, rgba(0,255,136,0.03) 0%, rgba(255,255,255,1) 100%);
}

.emergency-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.emergency-text h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.emergency-phone {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
}

.emergency-phone i {
    font-size: 2rem;
}

.emergency-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 480px) {
    .contact-info{
        text-align: center;
    }
}

/* Blog Page Specific Styles */
.blog-hero {
    height: 50vh;
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.664)), url('./assets/dental\ blog.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.blog-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: white;
    background: none;
    -webkit-text-fill-color: white;
}

.blog-main {
    padding: 6rem 5%;
    background-color: #f9f9f9;
}

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

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-card.featured {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.featured .card-image {
    height: 100%;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.blog-card:hover .card-image img {
    transform: scale(1.05);
}

.category-label {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
}

.card-content {
    padding: 2rem;
}

.featured .card-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.meta-info {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.meta-info i {
    margin-right: 0.3rem;
}

.blog-card h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.featured h3 {
    font-size: 2rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.read-more i {
    margin-left: 0.5rem;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary-color);
}

.read-more:hover i {
    transform: translateX(5px);
}

.newsletter {
    margin: 6rem 0;
    background: var(--primary-color);
    padding: 3rem;
    border-radius: 15px;
    color: white;
    text-align: center;
}

.newsletter h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 2rem auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--secondary-color);
    color: white;
    padding: 0 2rem;
    border: none;
    border-radius: 0 8px 8px 0;
    font-weight: 600;
    cursor: pointer;
}

.blog-categories {
    margin-top: 4rem;
    text-align: center;
}

.blog-categories h3 {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.8rem;
}

.category-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.category-tag {
    background: white;
    color: var(--secondary-color);
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.category-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-card.featured {
        grid-template-columns: 1fr;
    }
    
    .emergency-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .emergency-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-hero h1,
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .newsletter {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1,
    .blog-hero h1 {
        font-size: 2rem;
    }
    
    .meta-info {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        border-radius: 8px;
    }
    
    .newsletter-form button {
        padding: 1rem;
        margin-top: 0.5rem;
    }
}