:root {
    --primary-color: #4a90e2;
    --text-color: #333;
    --card-bg: rgba(255, 255, 255, 0.85);
    --card-hover-bg: rgba(255, 255, 255, 0.95);
    --shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

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

body {
    font-family: 'Outfit', sans-serif;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url('assets/bottom.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-color);
}

.container {
    width: 100%;
    max-width: 1400px;
    padding: 2rem;
    text-align: center;
}

.main-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 600;
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1rem 2rem;
    border-radius: 50px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    display: inline-block;
}

.cards-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.card {
    background: var(--card-bg);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 2rem;
    width: 300px;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card:hover {
    transform: translateY(-10px);
    background: var(--card-hover-bg);
    box-shadow: 0 12px 40px 0 rgba(31, 38, 135, 0.25);
}

.logo-container {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

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

.card h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.address {
    font-size: 1rem;
    color: #666;
    font-weight: 300;
}

/* Accessibility Widget Styles */
#accessibility-widget {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

#accessibility-toggle {
    background-color: #278bd8;
    border: none;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

#accessibility-toggle:hover {
    transform: scale(1.1);
    background-color: #1a6cb0;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

#accessibility-toggle .accessibility-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

#accessibility-panel {
    position: absolute;
    top: 70px;
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 220px;
    overflow: hidden;
    transition: all 0.3s ease;
}

#accessibility-panel.hidden {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
}

.panel-header {
    background-color: #278bd8;
    color: white;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
}

#close-panel {
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

#close-panel:hover {
    transform: scale(1.2);
}

.panel-controls {
    padding: 16px;
    display: flex;
    gap: 8px;
    justify-content: center;
}

.control-btn {
    background-color: #f0f0f0;
    border: 2px solid #ddd;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 50px;
}

.control-btn:hover {
    background-color: #278bd8;
    color: white;
    border-color: #278bd8;
    transform: translateY(-2px);
}

.control-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
        align-items: center;
    }

    .main-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}