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

html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #00b894 0%, #00a085 50%, #74b9ff 100%);
    min-height: 100vh;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    color: #4a5568;
}

.logo {
    height: 40px;
    width: auto;
    margin-right: 0.8rem;
}

.hero {
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.cta-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.cta-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #333;
    transition: transform 0.3s ease;
}

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

.card-icon {
    font-size: 3rem;
    color: #00b894;
    margin-bottom: 1rem;
}

.cta-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.cta-card p {
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    gap: 0.5rem;
}

.btn-primary {
    background: #00b894;
    color: white;
}

.btn-primary:hover {
    background: #00a085;
    transform: translateX(5px);
}

.btn-secondary {
    background: #00b894;
    color: white;
}

.btn-secondary:hover {
    background: #00a085;
    transform: translateX(5px);
}

.services {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 2rem;
}

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

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-3px);
}

.service-item i {
    font-size: 2.5rem;
    color: #00b894;
    margin-bottom: 1rem;
}

.service-item span {
    font-weight: 600;
    color: #2d3748;
}

.booking-options {
    padding: 4rem 2rem;
    color: white;
}

.booking-options h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1rem;
    max-width: 900px;
    margin: 0 auto;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a5568;
    cursor: pointer;
}

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

.nav-links a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #00b894;
}

.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: white;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: 2rem 1rem;
}

.mobile-drawer.show {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #4a5568;
    cursor: pointer;
}

.drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-nav a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    padding: 0.8rem 0;
    border-bottom: 1px solid #f7fafc;
    transition: color 0.3s ease;
}

.drawer-nav a:hover {
    color: #00b894;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.show {
    opacity: 1;
    visibility: visible;
}

.testimonials {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 2rem;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

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

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

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

.stars {
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.testimonial-card p {
    font-style: italic;
    color: #4a5568;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author strong {
    color: #00b894;
    display: block;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #718096;
    font-size: 0.9rem;
}

.cta-section {
    background: linear-gradient(135deg, #00b894, #74b9ff);
    padding: 4rem 2rem;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button-wrapper {
    position: relative;
    display: inline-block;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.2rem;
    border-radius: 50px;
    background: linear-gradient(135deg, #00b894, #00a085);
    box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 184, 148, 0.6);
    background: linear-gradient(135deg, #00a085, #008f75);
}

.btn-text {
    margin-right: 0.8rem;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-large:hover .btn-icon {
    transform: translateX(5px);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 184, 148, 0.3) 0%, transparent 70%);
    border-radius: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.cta-button-wrapper:hover .btn-glow {
    opacity: 1;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

.cta-buttons-bottom {
    display: flex;
    justify-content: center;
}

.stats-section {
    background: rgba(255, 255, 255, 0.95);
    padding: 4rem 2rem;
    text-align: center;
}

.stats-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2d3748;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #00b894;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #4a5568;
    font-weight: 500;
}

.how-it-works {
    padding: 4rem 2rem;
    color: white;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

.step-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    position: relative;
}

.step-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #00b894;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
}

.step-icon {
    margin: 1rem 0;
}

.step-icon i {
    font-size: 2.5rem;
    color: #ffffff;
    background: rgba(0, 184, 148, 0.2);
    padding: 1rem;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.step-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.step-item p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.show {
        display: flex;
    }
    
    .navbar {
        position: relative;
        padding: 1rem;
    }
    
    .hero {
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-content p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-buttons {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-card {
        padding: 1.5rem;
    }
    
    .services,
    .booking-options,
    .testimonials,
    .stats-section,
    .how-it-works,
    .cta-section {
        padding: 2rem 1rem;
    }
    
    .services h2,
    .booking-options h2,
    .testimonials h2,
    .cta-content h2,
    .stats-section h2,
    .how-it-works h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .service-item {
        padding: 1rem;
        font-size: 0.9rem;
    }
    
    .service-item i {
        font-size: 2rem;
    }
    
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    
    .option-card {
        padding: 1rem;
    }
    
    .option-card i {
        font-size: 1.5rem;
    }
    
    .option-card h4 {
        font-size: 0.9rem;
    }
    
    .and-more-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .and-more-card h3 {
        font-size: 1.4rem;
    }
    
    .and-more-card p {
        font-size: 0.9rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .step-item {
        padding: 1.5rem;
    }
    
    .step-icon i {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .step-item h4 {
        font-size: 1.1rem;
    }
    
    .step-item p {
        font-size: 0.9rem;
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    animation: slideInFromBottom 0.3s ease;
}

@keyframes slideInFromBottom {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: #00b894;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.close-btn:hover {
    color: #00a085;
}

.modal-header h2 {
    margin: 0;
    color: #2d3748;
    font-size: 1.8rem;
}

.modal-body {
    flex: 1;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00b894 0%, #00a085 50%, #74b9ff 100%);
}

.user-type-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    width: 100%;
}

.user-type-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.user-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    background: white;
}

.user-type-card .card-icon {
    font-size: 4rem;
    color: #00b894;
    margin-bottom: 1.5rem;
}

.user-type-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.user-type-card p {
    color: #4a5568;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.card-button {
    background: #00b894;
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: background 0.3s ease;
}

.user-type-card:hover .card-button {
    background: #00a085;
}

@media (max-width: 768px) {
    .modal-body {
        padding: 1rem;
        align-items: flex-start;
        padding-top: 2rem;
    }
    
    .user-type-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
        width: 100%;
        max-width: none;
    }
    
    .user-type-card {
        padding: 1.5rem;
        margin: 0;
    }
    
    .user-type-card .card-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .user-type-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .user-type-card p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .card-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .modal-header {
        padding: 1rem;
    }
    
    .modal-header h2 {
        font-size: 1.4rem;
    }
}

.option-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.option-card:hover {
    transform: translateY(-3px);
    background: white;
}

.option-card i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #00b894;
}

.option-card h4 {
    color: #2d3748;
}

.and-more-section {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.and-more-card {
    position: relative;
    background: linear-gradient(135deg, #00b894 0%, #74b9ff 100%);
    color: white;
    padding: 2.5rem 3rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 184, 148, 0.4);
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.and-more-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 184, 148, 0.6);
}

.sparkle-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.sparkle-1, .sparkle-2, .sparkle-3 {
    position: absolute;
    color: rgba(255, 255, 255, 0.8);
    animation: sparkle 2s infinite;
}

.sparkle-1 {
    top: 20%;
    left: 15%;
    font-size: 1rem;
    animation-delay: 0s;
}

.sparkle-2 {
    top: 30%;
    right: 20%;
    font-size: 0.8rem;
    animation-delay: 0.7s;
}

.sparkle-3 {
    bottom: 25%;
    left: 20%;
    font-size: 1.2rem;
    animation-delay: 1.4s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.more-icon {
    position: relative;
    z-index: 2;
}

.more-icon i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffd700;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.and-more-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: bold;
    position: relative;
    z-index: 2;
}

.and-more-card p {
    font-size: 1rem;
    opacity: 0.95;
    margin: 0;
    position: relative;
    z-index: 2;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translate(-50%, -50%) scale(0.8); opacity: 1; }
    100% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}



.features {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 3rem 2rem;
}

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

.feature-item {
    text-align: center;
    color: white;
}

.feature-item i {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

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

.option-card h4 {
    font-size: 1rem;
    font-weight: 600;
}

footer {
    background: rgba(0, 0, 0, 0.8);
    color: white;
    text-align: center;
    padding: 2rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00b894;
}

.legal-page {
    background: white;
    min-height: 100vh;
    padding: 2rem 0;
}

.legal-page .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-page h1 {
    color: #2d3748;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.last-updated {
    color: #718096;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-page section {
    margin-bottom: 2rem;
}

.legal-page h2 {
    color: #00b894;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    color: #4a5568;
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
}

.legal-page p {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.legal-page ul {
    color: #4a5568;
    line-height: 1.6;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    margin-bottom: 0.5rem;
}

.nav-brand a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .legal-page .container {
        padding: 0 1rem;
    }
    
    .legal-page h1 {
        font-size: 2rem;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .departments-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
}

.contact-intro {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #4a5568;
}

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

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

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

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00b894, #00a085);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-card h3 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: #718096;
    margin-bottom: 1rem;
}

.contact-card a {
    color: #00b894;
    text-decoration: none;
    font-weight: 600;
}

.contact-card a:hover {
    color: #00a085;
}

.contact-card address {
    font-style: normal;
    line-height: 1.6;
}

.hours {
    color: #4a5568;
    line-height: 1.6;
}

.contact-departments {
    margin-top: 3rem;
}

.contact-departments h2 {
    color: #00b894;
    text-align: center;
    margin-bottom: 2rem;
}

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

.department-item {
    background: rgba(0, 184, 148, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #00b894;
}

.department-item h4 {
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.department-item p {
    color: #718096;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

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

.info-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(0, 184, 148, 0.05);
    border-radius: 10px;
}

.info-item i {
    font-size: 2.5rem;
    color: #00b894;
    margin-bottom: 1rem;
}

.info-item h4 {
    color: #2d3748;
    margin-bottom: 0.8rem;
}

.info-item p {
    color: #4a5568;
    line-height: 1.6;
}

.additional-info h2 {
    color: #00b894;
    text-align: center;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        grid-template-columns: 1fr;
    }
    
    .services h2,
    .booking-options h2 {
        font-size: 2rem;
    }
    
    .navbar {
        padding: 1rem;
    }
    
    .nav-brand {
        font-size: 1.5rem;
    }
}