* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #1a0933;
    color: #ffffff;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.top-nav {
    display: flex;
    justify-content: flex-end;
    gap: 2rem;
    padding: 1rem 0;
    margin-bottom: 3rem;
}

.top-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.top-nav a:hover {
    color: #ffd700;
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #ffd700;
}

.content-section {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.address-card,
.info-card,
.contact-card {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.address-card:hover,
.info-card:hover,
.contact-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.address-card {
    text-align: center;
    font-size: 1.2rem;
}

.address-details p {
    margin-bottom: 0.5rem;
}

.info-card h2,
.contact-card h2 {
    color: #ffd700;
    margin-bottom: 1rem;
    text-align: center;
}

.hours-details {
    text-align: center;
}

.hours-details p {
    margin-bottom: 0.5rem;
}

.contact-details {
    text-align: center;
}

.contact-details p {
    margin-bottom: 0.5rem;
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: #ffd700;
}

.footer {
    text-align: center;
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.address-card,
.info-card,
.contact-card {
    animation: fadeIn 0.5s ease-out forwards;
}

.info-card:nth-child(2) {
    animation-delay: 0.2s;
}

.info-card:nth-child(3) {
    animation-delay: 0.4s;
}

.contact-card {
    animation-delay: 0.6s;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .page-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .address-card,
    .info-card,
    .contact-card {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    .top-nav {
        justify-content: center;
    }

    .page-title {
        font-size: 1.8rem;
    }

    .address-card {
        font-size: 1.1rem;
    }

    .content-section {
        gap: 1.5rem;
    }
}