/* Reset and base styles */
:root {
    --primary: #0EA5E9;
    --accent: #14B8A6;
    --background: #ffffff;
    --foreground: #0F172A;
}

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

html, body {
    width: 100%;
    overflow-x: hidden;
    position: relative;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--foreground);
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    box-sizing: border-box;
}

/* Header Styles */
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    transition: all 0.3s ease;
}

.fixed-header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

.logo-button {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.logo-button:hover {
    opacity: 0.8;
}

.logo-img {
    height: 3rem;
    width: 3rem;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: bold;
}

.desktop-menu {
    display: none;
    align-items: center;
    gap: 0.25rem;
}

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

.nav-button {
    background: none;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0.375rem;
}

.nav-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.nav-button.call-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
    border: 1px solid white;
    text-decoration: none;
}

.nav-button.call-button:hover {
    /* background-color: var(--primary); */
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.nav-button.call-button i {
    width: 1rem;
    height: 1rem;
}

/* Mobile menu specific styles for call button */
.mobile-menu .call-button {
    margin: 0.5rem 1rem;
    justify-content: center;
    background-color: var(--primary);
    color: white !important;
    width: calc(100% - 2rem);
    box-sizing: border-box;
}

.mobile-menu .call-button:hover {
    background-color: var(--primary);
    transform: translateY(-2px);
}

.mobile-menu .call-button i {
    margin-right: 0.5rem;
}

.mobile-menu-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    padding: 0.5rem;
    cursor: pointer;
}

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

.mobile-menu-button i {
    width: 1.5rem;
    height: 1.5rem;
    color: inherit;
}

.mobile-menu {
    display: none;
    padding: 1rem 0;
    background-color: var(--foreground);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

.fixed-header.scrolled .mobile-menu {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
}

.mobile-menu.open {
    display: block;
}

.nav-button.mobile {
    width: 100%;
    text-align: left;
    padding: 0.75rem 1rem;
    color: white;
    box-sizing: border-box;
}

.fixed-header.scrolled .nav-button.mobile {
    color: var(--foreground);
}

.nav-button.mobile:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.fixed-header.scrolled .nav-button.mobile:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../assets/hero-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.hero-background::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, 
        rgba(14, 165, 233, 0.9), 
        rgba(14, 165, 233, 0.8), 
        rgba(20, 184, 166, 0.85));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 5rem 1rem;
    color: white;
    animation: fadeIn 1s ease-out;
}

.hero-logo-img {
    width: 10rem;
    height: 10rem;
    margin: 0 auto 2rem;
    filter: drop-shadow(0 25px 25px rgb(0 0 0 / 0.15));
}

.hero h1 {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
}

@media (min-width: 768px) {
    .hero h1 {
        font-size: 4.5rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

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

.hero-description {
    font-size: 1.125rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    padding: 0 1rem;
    width: 100%;
    box-sizing: border-box;
}

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

.button {
    display: inline-flex;
    align-items: center;
    padding: 1.5rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.375rem;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
    border: none;
}

.button:hover {
    transform: scale(1.05);
}

.button.primary {
    background-color: white;
    color: var(--primary);
    border: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.button.secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-mouse {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 9999px;
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 0.5rem;
}

.scroll-dot {
    width: 0.375rem;
    height: 0.75rem;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 9999px;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Services Section */
.services {
    padding: 5rem 0;
    background-color: var(--background);
}

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

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

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

.service-card {
    padding: 1.5rem;
    background-color: var(--background);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(to bottom right, var(--primary), var(--accent));
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1);
}

.service-icon i {
    width: 2rem;
    height: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.75rem;
    text-align: center;
}

.service-card > p {
    color: var(--foreground);
    opacity: 0.7;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--foreground);
    opacity: 0.7;
    font-size: 0.875rem;
}

.service-features li::before {
    content: '';
    width: 0.375rem;
    height: 0.375rem;
    background-color: var(--primary);
    border-radius: 9999px;
    flex-shrink: 0;
}

.special-services {
    padding: 2rem;
    background: linear-gradient(to bottom right, 
        rgba(14, 165, 233, 0.05),
        rgba(20, 184, 166, 0.05));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 0.5rem;
}

.special-services h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    text-align: center;
}

.special-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

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

.special-service-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background-color: var(--background);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    transition: border-color 0.3s ease;
}

.special-service-item:hover {
    border-color: rgba(14, 165, 233, 0.3);
}

.special-service-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary);
    border-radius: 9999px;
    flex-shrink: 0;
}

.special-service-item span {
    font-size: 0.875rem;
    color: var(--foreground);
}

/* Prices Section */
.prices {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(20, 184, 166, 0.3), var(--background));
}

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

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

.price-card {
    padding: 1.5rem;
    background-color: var(--background);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    transition: box-shadow 0.3s ease;
}

.price-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.price-card h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

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

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background-color 0.3s ease;
    flex-wrap: wrap;
}

@media (max-width: 480px) {
    .price-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .price-item .price {
        align-self: flex-end;
    }
}

.price-item:hover {
    background-color: rgba(20, 184, 166, 0.1);
}

.price-item .service {
    flex: 1;
    color: var(--foreground);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.price-item .badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    background-color: rgba(14, 165, 233, 0.1);
    color: var(--primary);
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 9999px;
}

.price-item .price {
    color: var(--primary);
    font-weight: bold;
    white-space: nowrap;
}

.price-info-card {
    padding: 1.5rem;
    background: linear-gradient(to bottom right, 
        rgba(14, 165, 233, 0.05),
        rgba(20, 184, 166, 0.05));
    border: 1px solid rgba(14, 165, 233, 0.2);
    border-radius: 0.5rem;
}

.info-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
}

.info-icon {
    width: 2.5rem;
    height: 2.5rem;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.price-info-card h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    color: var(--foreground);
    opacity: 0.7;
    font-size: 0.875rem;
}

.info-list .bullet {
    color: var(--primary);
    margin-top: 0.25rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background-color: var(--background);
}

.faq-container {
    max-width: 48rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    background-color: var(--background);
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--foreground);
    text-align: left;
}

.faq-question i {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer p {
    color: var(--foreground);
    opacity: 0.7;
    padding-bottom: 1.25rem;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    height: auto;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: linear-gradient(to bottom, rgba(20, 184, 166, 0.3), var(--background));
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

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

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

.contact-card {
    padding: 1.5rem;
    background-color: var(--background);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    display: flex;
    gap: 1rem;
    flex-direction: row;
    align-items: center;
}

.contact-card h3, .contact-card a {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
    text-decoration: none;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon.contact-icon-message {
    margin-left: auto; 
}

.contact-icon.contact-icon-message a {
    display: flex;
    margin: 0;
}

.contact-icon i {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-icon img {
    width: 1.5rem;
    height: 1.5rem;
    color: var(--primary);
}

.contact-details h3 {
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--foreground);
    opacity: 0.7;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.contact-details p {
    color: var(--foreground);
    opacity: 0.7;
}

.working-hours {
    font-size: 0.875rem;
    color: var(--foreground);
    opacity: 0.7;
}

.working-hours p {
    margin-bottom: 0.25rem;
}

.contact-form-container {
    padding: 2rem;
    background-color: var(--background);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

.contact-form-container h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--foreground);
}

.form-group input,
.form-group textarea {
    padding: 0.75rem 1rem;
    background-color: var(--background);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.375rem;
    color: var(--foreground);
    transition: border-color 0.3s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

@media (max-width: 480px) {
    .contact-grid {
        gap: 1rem;
    }

    .contact-card {
        padding: 1rem;
    }

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

    .contact-form-container {
        padding: 1.5rem 1rem;
    }
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: none;
}

.submit-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.submit-button i {
    width: 1.25rem;
    height: 1.25rem;
}

@media (min-width: 768px) {
    .submit-button {
        align-self: flex-start;
    }
}

/* Footer */
.footer {
    background-color: var(--foreground);
    color: white;
    padding: 3rem 0;
}

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

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

.footer-brand img {
    height: 5rem;
    width: 5rem;
    margin-bottom: 1rem;
}

.footer-brand h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

.footer h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
}

.footer-contact i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: linear-gradient(to bottom, var(--background), rgba(20, 184, 166, 0.3));
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeIn 1s ease-out;
}

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

@media (min-width: 768px) {
    .section-header h2 {
        font-size: 3rem;
    }
}

.section-divider {
    width: 5rem;
    height: 0.25rem;
    background-color: var(--primary);
    margin: 1.5rem auto;
    border-radius: 9999px;
}

.section-description {
    font-size: 1.125rem;
    color: var(--foreground);
    opacity: 0.7;
    max-width: 48rem;
    margin: 0 auto;
}

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

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

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

.feature-card {
    padding: 1.5rem;
    text-align: center;
    background-color: var(--background);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    animation: fadeIn 1s ease-out;
}

.feature-card:hover {
    transform: translateY(-0.25rem);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(14, 165, 233, 0.1);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--primary);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--foreground);
    opacity: 0.7;
}

.about-card {
    background-color: var(--background);
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0.5rem;
}

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

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

.mission h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--foreground);
    margin-bottom: 1rem;
}

.mission p {
    color: var(--foreground);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.location-info {
    background-color: rgba(20, 184, 166, 0.1);
    padding: 1.5rem;
    border-radius: 0.5rem;
}

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

.location-details {
    margin-bottom: 1.5rem;
}

.location-details p {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--foreground);
    opacity: 0.7;
}

.location-details i {
    width: 1.25rem;
    height: 1.25rem;
    color: var(--primary);
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.map-container {
    border-radius: 0.5rem;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}