/* 
  =========================================
  CSS VARIABLES & THEME (Vert pâle & Blanc)
  =========================================
*/
:root {
    /* Colors */
    --primary-color: #B2E89A;
    /* Vert pâle apaisant demande par le client */
    --primary-color-hover: #9bd681;
    --secondary-color: #cdeebf;

    --bg-color: #ffffff;
    /* Fond général blanc */
    --bg-subtle: #f8fbf6;
    /* Fond très légèrement teinté pour contraster avec le blanc pur */

    --text-dark: #2d3728;
    /* Gris très foncé / verdâtre pour lisibilité */
    --text-light: #5a6654;
    --text-white: #ffffff;

    --border-color: rgba(178, 232, 154, 0.3);
    /* Bordure vert pâle transparent */

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.5);
    --glass-shadow: 0 8px 32px 0 rgba(178, 232, 154, 0.15);

    /* Typography */
    --font-serif: 'Cormorant Garamond', serif;
    /* Titres élégants */
    --font-sans: 'Jost', sans-serif;
    /* Texte moderne et lisible */

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* 
  =========================================
  RESET & BASE STYLES
  =========================================
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    /* Smooth scrolling for anchor links */
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-serif);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.text-center {
    text-align: center;
}

.mt-xl {
    margin-top: var(--spacing-xl);
}

.bg-subtle {
    background-color: var(--bg-subtle);
}

/* 
  =========================================
  UTILITY CLASSES (Glassmorphism & Effects)
  =========================================
*/
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-shadow);
}

.blur-backdrop {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: none;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-dark);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: var(--primary-color-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(178, 232, 154, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.btn-outline:hover {
    background-color: var(--text-dark);
    color: var(--text-white);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.glow-effect {
    position: relative;
    overflow: hidden;
}

.glow-effect::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 60%);
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.3s, transform 0.6s;
    pointer-events: none;
}

.glow-effect:hover::after {
    opacity: 0.4;
    transform: scale(1);
}

/* 
  =========================================
  HEADER & NAVIGATION
  =========================================
*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all var(--transition-normal);
    padding: var(--spacing-sm) 0;
}

.header.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 400;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--primary-color);
    transition: width var(--transition-normal);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--bg-color);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: right var(--transition-normal);
}

.mobile-nav-overlay.active {
    right: 0;
}

.close-menu-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-dark);
    cursor: pointer;
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-nav-link {
    font-family: var(--font-serif);
    font-size: 2rem;
}

.mobile-nav-link.highlight {
    color: var(--primary-color);
    font-family: var(--font-sans);
    font-size: 1.2rem;
    margin-top: 1rem;
    padding: 1rem 2rem;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
}

/* 
  =========================================
  HERO SECTION
  =========================================
*/
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--spacing-xl) + 80px) var(--spacing-md) var(--spacing-xl);
    position: relative;
    overflow: hidden;
    background-color: var(--bg-subtle);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.8)), url('hero_image.png');
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: rgba(178, 232, 154, 0.3);
    color: var(--text-dark);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 2rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-inline: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Abstract Shapes for background */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
}

.shape-1 {
    top: 10%;
    left: -5%;
    width: 500px;
    height: 500px;
    background-color: var(--primary-color);
}

.shape-2 {
    bottom: -10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background-color: var(--secondary-color);
}

/* 
  =========================================
  TYPOGRAPHY & SECTION HEADERS
  =========================================
*/
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    font-family: var(--font-sans);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

/* 
  =========================================
  ABOUT SECTION
  =========================================
*/
.about-image {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Fallback visualization for the image */
.about-icon {
    font-size: 5rem;
    color: var(--primary-color);
    opacity: 0.8;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--text-light);
}

.features {
    margin-top: 2.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    background-color: rgba(178, 232, 154, 0.2);
    padding: 0.8rem;
    border-radius: 50%;
}

/* 
  =========================================
  SERVICES & PRICES SECTION (Accordions)
  =========================================
*/
.services-container {
    max-width: 800px;
    margin: 0 auto;
    padding: var(--spacing-md);
    background-color: var(--bg-color);
    /* Overriding glass inner background for readability */
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--text-dark);
    transition: color var(--transition-fast);
}

.accordion-header:hover {
    color: var(--primary-color-hover);
}

.accordion-icon {
    transition: transform var(--transition-normal);
    color: var(--primary-color);
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.price-list {
    padding: 1rem 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
}

.price-list li:last-child {
    border-bottom: none;
}

.price-info {
    display: flex;
    flex-direction: column;
}

.service-name {
    font-weight: 500;
    color: var(--text-dark);
}

.service-duration {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.service-price {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    min-width: 60px;
    text-align: right;
}

/* 
  =========================================
  GALLERY SECTION
  =========================================
*/
.gallery-section {
    background-color: var(--bg-color);
    overflow: hidden;
}

.gallery-carousel-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-top: var(--spacing-lg);
    padding: 1rem 0;
}

.gallery-carousel {
    position: relative;
    width: 100%;
}

.gallery-slider {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollGallery 45s linear infinite;
}

.gallery-slider:hover {
    animation-play-state: paused;
}

.gallery-slide {
    width: 320px;
    height: 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(178, 232, 154, 0.2);
    transition: transform var(--transition-normal);
    flex-shrink: 0;
    border: 4px solid var(--text-white);
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-slide:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(178, 232, 154, 0.4);
}

.gallery-slide:hover img {
    transform: scale(1.08);
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }

    /* Translate left by half the width of all items (the original 7 + gap) */
    100% {
        transform: translateX(calc(-50% - 0.75rem));
    }
}

@media (max-width: 768px) {
    .gallery-slide {
        width: 250px;
        height: 250px;
    }
}

/* 
  =========================================
  REVIEWS SECTION
  =========================================
*/
.reviews-section {
    background-color: var(--bg-subtle);
    position: relative;
    overflow: hidden;
}

.reviews-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    padding-bottom: 1rem;
    /* For scrollbar breathing room */
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar for clean look */
    scrollbar-width: none;
}

.reviews-grid::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 320px;
    /* Fixed width for cards */
    scroll-snap-align: start;
    padding: 2rem;
    background-color: var(--bg-color);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform var(--transition-normal);
    border: 1px solid rgba(178, 232, 154, 0.1);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(178, 232, 154, 0.15);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
}

.reviewer-name {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
}

.review-stars {
    color: #FFB800;
    /* Google Gold */
    font-size: 1.1rem;
    margin-top: 0.25rem;
    display: flex;
    gap: 2px;
}

.google-icon {
    width: 24px;
    height: 24px;
    opacity: 0.8;
}

.review-content {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    position: relative;
}

.review-content::before {
    content: '"';
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -15px;
    left: -10px;
}

.mobile-only-hint {
    display: none;
}

@media (max-width: 768px) {
    .mobile-only-hint {
        display: inline;
    }
}

/* 
  =========================================
  CTA SECTION
  =========================================
*/
.cta-section {
    background-color: var(--bg-color);
    position: relative;
}

.cta-text h2 {
    font-size: clamp(2rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}

.cta-text p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    max-width: 90%;
}

.cta-features {
    padding: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: 2rem;
    background-color: var(--secondary-color);
    /* Vert plus soutenu pour contraster avec le fond blanc */
}

.cta-feature {
    display: flex;
    gap: 1.5rem;
}

.cta-feature i {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.cta-feature h4 {
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.cta-feature p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* 
  =========================================
  CONTACT SECTION
  =========================================
*/
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.contact-card {
    padding: var(--spacing-lg) var(--spacing-md);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--text-light);
}

.info-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

/* 
  =========================================
  FOOTER
  =========================================
*/
.footer {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-lg);
}

.footer-brand .logo {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.footer-brand p {
    max-width: 300px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links h4 {
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: var(--text-light);
}

.footer-links a:hover {
    color: var(--text-dark);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(178, 232, 154, 0.5);
    padding-top: var(--spacing-md);
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

/* 
  =========================================
  ANIMATIONS & RESPONSIVE
  =========================================
*/
/* Animations triggers */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .section-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .about-image {
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-shapes {
        display: none;
        /* Hide complex shapes on mobile to save performance */
    }
}

@media (max-width: 768px) {

    .nav-links,
    .header .btn-primary {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .features {
        grid-template-columns: 1fr;
    }
}

/* 
  =========================================
  CONTACT & FOOTER ADDITIONS
  =========================================
*/

.hours-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    width: 100%;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
    font-size: 0.95rem;
    color: var(--text-light);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list li span:first-child {
    font-weight: 500;
    color: var(--text-dark);
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.map-container {
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.footer-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    border-radius: var(--radius-lg);
    margin-top: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(178, 232, 154, 0.4);
    border-radius: var(--radius-md);
    background-color: var(--bg-color);
    color: var(--text-dark);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    transition: all var(--transition-short);
}

.form-input::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(178, 232, 154, 0.2);
}

/* Legal Pages Base */
.legal-section {
    padding: 8rem 0 4rem;
    min-height: 80vh;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-family: var(--font-serif);
    color: var(--text-dark);
}

.legal-content p,
.legal-content ul {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.legal-content ul {
    padding-left: 2rem;
}

/* 
  =========================================
  FLOATING PLANITY BUTTON
  =========================================
*/
.floating-planity-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background-color: var(--primary-color);
    color: var(--text-dark);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 10px 25px rgba(178, 232, 154, 0.4);
    z-index: 9999;
    transition: all var(--transition-normal);
    border: 2px solid white;
    text-decoration: none;
}

.floating-planity-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(178, 232, 154, 0.6);
    background-color: var(--primary-color-hover);
    color: var(--text-dark);
}

.fp-text {
    font-family: var(--font-sans);
}

.fp-icon {
    font-size: 1.5rem;
}

@media (max-width: 768px) {
    .floating-planity-btn {
        bottom: 1.5rem;
        right: 1.5rem;
        padding: 0;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        border: 2px solid white;
    }
    
    .floating-planity-btn .fp-text {
        display: none;
    }
    
    .floating-planity-btn .fp-icon {
        font-size: 1.8rem;
        margin: 0;
    }
}