:root {
    --primary-color: #1e88e5;
    --secondary-color: #0d47a1;
    --accent-color: #e91e63;
    --text-color: #333;
    --light-color: #f5f5f5;
    --dark-color: #222;
    --android-color: #3ddc84;
    --ios-color: #007aff;
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
}

.container {
    max-width: 100%;
    padding: 20px;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 20px 0;
}

.logo h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    letter-spacing: 1px;
}

section {
    margin-bottom: 30px;
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h2, h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.welcome {
    text-align: center;
    padding: 30px 20px;
}

.welcome h2 {
    font-size: 1.8rem;
}

.app-features {
    padding: 25px 20px;
}

.app-features ul {
    list-style-type: none;
    margin-top: 15px;
}

.app-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
}

.app-features i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 20px;
}

.download-section {
    text-align: center;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.download-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    border-radius: 8px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    gap: 15px;
}

.download-button i {
    font-size: 2rem;
}

.download-button div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.download-button .small-text {
    font-size: 0.7rem;
    text-transform: uppercase;
}

.download-button .large-text {
    font-size: 1.2rem;
    font-weight: bold;
}

.android {
    background-color: var(--android-color);
}

.android:hover {
    background-color: #2bba68;
}

.ios {
    background-color: var(--ios-color);
}

.ios:hover {
    background-color: #0056b3;
}

.hidden {
    display: none;
}

.highlight {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 136, 229, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(30, 136, 229, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(30, 136, 229, 0);
    }
}

.locations {
    text-align: center;
}

.location-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.location-button {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: white;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.location-button:hover {
    background-color: var(--primary-color);
    color: white;
}

.location-button i {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-right: 15px;
}

.location-button:hover i {
    color: white;
}

.location-button div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.location-name {
    font-weight: bold;
    font-size: 1rem;
}

.location-address {
    font-size: 0.8rem;
    color: #666;
}

.location-button:hover .location-address {
    color: rgba(255, 255, 255, 0.8);
}

footer {
    text-align: center;
    padding: 20px;
    font-size: 0.8rem;
    color: #666;
}

/* Media queries for larger screens */
@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
    
    .download-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .location-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 992px;
    }
}
