/* CSS Variables for the green theme */
:root {
    --primary: 138 179 147;
    --primary-rgb: rgb(138, 179, 147);
    --primary-variant: rgb(136, 180, 147);
    --primary-foreground: rgb(255, 255, 255);
    --background: rgb(255, 255, 255);
    --foreground: rgb(10, 10, 10);
    --card: rgb(255, 255, 255);
    --card-foreground: rgb(10, 10, 10);
    --muted: rgb(245, 245, 245);
    --muted-foreground: rgb(115, 115, 115);
    --border: rgb(229, 229, 229);
    --input: rgb(229, 229, 229);
    --ring: var(--primary-rgb);
    --radius: 0.5rem;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    background-color: var(--background);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Utility classes */
.hidden {
    display: none !important;
}

.icon {
    width: 1rem;
    height: 1rem;
    display: inline-block;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: linear-gradient(to left, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(138, 179, 147, 0.95) 50%, 
        var(--primary-rgb) 100%);
    color: var(--primary-foreground);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-bottom: 2px solid rgba(138, 179, 147, 0.2);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .nav-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .nav-container {
        padding: 0 2rem;
    }
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
}

/* Logo */
.logo-link {
    text-decoration: none;
    color: inherit;
    flex-shrink: 0;
    transition: transform 0.2s;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-image-wrapper {
    width: 3rem;
    height: 3rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 0.5rem;
    padding: 0.25rem;
    backdrop-filter: blur(4px);
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    display: none;
}

@media (min-width: 640px) {
    .logo-text {
        display: block;
    }
}

.logo-title {
    font-size: 1.25rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    color: white;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

.logo-subtitle {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.05));
}

/* Desktop Menu */
.desktop-menu {
    display: none;
    flex: 1;
    justify-content: center;
    margin: 0 2rem;
}

@media (min-width: 768px) {
    .desktop-menu {
        display: flex;
    }
}

.menu-items {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 0.25rem;
}

.menu-item {
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    transition: all 0.3s;
    white-space: nowrap;
    color: var(--primary-foreground);
}

.menu-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.menu-item.active {
    background-color: white;
    color: var(--primary-rgb);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

/* Contact Actions */
.contact-actions {
    display: none;
    align-items: center;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .contact-actions {
        display: flex;
    }
}

.phone-btn {
    background-color: rgba(138, 179, 147, 0.2);
    backdrop-filter: blur(4px);
    color: white;
    border: none;
    border-radius: 9999px;
    padding: 0.5rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.phone-btn:hover {
    background-color: white;
    color: var(--primary-rgb);
}

.whatsapp-btn {
    background-color: rgb(22, 163, 74);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-btn:hover {
    background-color: rgb(21, 128, 61);
    transform: scale(1.05);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: flex;
    background: none;
    border: none;
    color: white;
    padding: 0.75rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn:hover {
    background-color: rgba(138, 179, 147, 0.3);
}

.mobile-menu-btn .icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Mobile Menu */
.mobile-menu {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    background: linear-gradient(to left, 
        rgba(255, 255, 255, 1) 0%, 
        rgba(138, 179, 147, 0.95) 50%, 
        var(--primary-rgb) 100%);
    backdrop-filter: blur(12px);
    padding: 1rem 1rem 1.5rem;
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.mobile-menu-item {
    text-decoration: none;
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.2s;
    color: var(--primary-foreground);
}

.mobile-menu-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.mobile-menu-item.active {
    background-color: white;
    color: var(--primary-rgb);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.mobile-contact-buttons {
    padding-top: 1rem;
    display: flex;
    gap: 0.75rem;
}

.mobile-phone-btn {
    flex: 1;
    background-color: rgba(138, 179, 147, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    border-radius: 0.75rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.mobile-phone-btn:hover {
    background-color: white;
    color: var(--primary-rgb);
}

.mobile-whatsapp-btn {
    flex: 1;
    background-color: rgb(22, 163, 74);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 0.75rem;
    cursor: pointer;
    transition: all 0.2s;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 500;
}

.mobile-whatsapp-btn:hover {
    background-color: rgb(21, 128, 61);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 70vh;
    overflow: hidden;
}

.carousel-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.7s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.carousel-slide.prev {
    opacity: 0;
    transform: translateX(-100%);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.carousel-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 1rem;
    max-width: 64rem;
    margin: 0 auto;
}

.carousel-title {
    font-size: 2.25rem;
    font-weight: bold;
    margin-bottom: 1rem;
    animation: fadeIn 1s ease-in-out;
}

@media (min-width: 768px) {
    .carousel-title {
        font-size: 3.75rem;
    }
}

.carousel-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeIn 1s ease-in-out 0.2s both;
}

@media (min-width: 768px) {
    .carousel-subtitle {
        font-size: 1.25rem;
    }
}

.carousel-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

@media (min-width: 640px) {
    .carousel-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background-color: var(--primary-rgb);
    color: var(--primary-foreground);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background-color: rgba(138, 179, 147, 0.9);
}

.btn-outline {
    backdrop-filter: blur(4px);
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid white;
    color: white;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-outline:hover {
    background-color: white;
    color: black;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    color: white;
    border: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-nav:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.carousel-nav.prev {
    left: 1rem;
}

.carousel-nav.next {
    right: 1rem;
}

.carousel-nav .icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Carousel Dots */
.carousel-dots {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

.dot.active {
    background-color: white;
    transform: scale(1.1);
}

/* Product Grid Section */
.product-grid-section {
    padding: 3rem 0;
    background-color: var(--background);
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    max-width: 32rem;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Product Card */
.product-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    position: relative;
}

.product-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.product-image-container {
    position: relative;
    width: 100%;
    height: 12rem;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

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

.product-badges {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge {
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
}

.badge-new {
    background-color: rgb(34, 197, 94);
}

.badge-featured {
    background-color: var(--primary-rgb);
}

.product-content {
    padding: 1rem;
}

.product-category {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.product-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.product-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-contact {
    flex: 1;
    background-color: rgb(22, 163, 74);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.btn-contact:hover {
    background-color: rgb(21, 128, 61);
}

/* Footer */
.footer {
    background-color: var(--muted);
    border-top: 1px solid var(--border);
    padding: 3rem 0 1rem;
}

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

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-section {
    display: flex;
    flex-direction: column;
}

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

.footer-logo-image {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.footer-logo-title {
    font-size: 1.125rem;
    font-weight: bold;
    color: var(--foreground);
}

.footer-logo-subtitle {
    font-size: 0.75rem;
    color: var(--muted-foreground);
}

.footer-description {
    color: var(--muted-foreground);
    line-height: 1.6;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--muted-foreground);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--foreground);
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-link {
    background: none;
    border: none;
    color: var(--muted-foreground);
    text-align: left;
    cursor: pointer;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    font-size: 1rem;
}

.social-link:hover {
    color: var(--foreground);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    color: var(--muted-foreground);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(1rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Card styles for pages */
.card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.card-content {
    padding: 1.5rem;
}

/* Page layout styles */
.page-container {
    min-height: 100vh;
    background-color: var(--background);
}

.page-content {
    max-width: 1280px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

@media (min-width: 640px) {
    .page-content {
        padding: 3rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .page-content {
        padding: 3rem 2rem;
    }
}

.page-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.page-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .page-title {
        font-size: 3rem;
    }
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* Grid layouts for content pages */
.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Button variants */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: 1px solid transparent;
    text-decoration: none;
}

.btn-lg {
    padding: 0.75rem 2rem;
    font-size: 1rem;
}

.btn-outline-primary {
    border: 1px solid var(--primary-rgb);
    color: var(--primary-rgb);
    background-color: transparent;
}

.btn-outline-primary:hover {
    background-color: var(--primary-rgb);
    color: var(--primary-foreground);
}

/* Contact page specific styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

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

.contact-card {
    background-color: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.contact-card-content {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary-rgb);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.contact-card-body {
    flex: 1;
}

.contact-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.contact-card-text {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.schedule-grid {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: var(--muted-foreground);
}

.schedule-item {
    display: flex;
    justify-content: space-between;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: var(--muted-foreground);
}

.service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-dot {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    background-color: var(--primary-rgb);
    flex-shrink: 0;
}

.cta-card {
    background-color: rgba(138, 179, 147, 0.05);
    text-align: center;
}

.cta-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.cta-text {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

/* About page specific styles */
.about-content {
    margin-bottom: 4rem;
}

.about-section {
    margin-bottom: 3rem;
}

.about-section-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.about-text {
    color: var(--muted-foreground);
    margin-bottom: 1rem;
}

.values-section {
    margin-bottom: 4rem;
}

.values-title {
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--foreground);
    text-align: center;
    margin-bottom: 3rem;
}

.value-card {
    text-align: center;
}

.value-card-content {
    padding: 2rem;
}

.value-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary-rgb);
    margin: 0 auto 1rem;
}

.value-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.value-text {
    color: var(--muted-foreground);
}

.location-section {
    margin-bottom: 4rem;
}

.location-card {
    max-width: 28rem;
    margin: 0 auto;
    text-align: center;
}

.location-icon {
    width: 3rem;
    height: 3rem;
    color: var(--primary-rgb);
    margin: 0 auto 1rem;
}

.location-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.location-text {
    color: var(--muted-foreground);
    margin-bottom: 1.5rem;
}

.btn-full {
    width: 100%;
}