/* Font declarations */
@font-face {
    font-family: 'F37 Maulstick Regular';
    src: url('fonts/F37Maulstick-Regular.otf') format('opentype');
    font-weight: 400;
}

@font-face {
    font-family: 'F37 Maulstick SemiBold';
    src: url('fonts/F37Maulstick-SemiBold.otf') format('opentype');
    font-weight: 600;
}

/* Reset and base styles */
* {
    box-sizing: border-box;
}

body {
    background: #FFFFFF;
    color: #111111;
    text-align: center;
    margin: 0;
    padding: 0;
    font-family: 'F37 Maulstick Regular', sans-serif;
    line-height: 1.6;
}

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

.logo-container {
    margin: 20px 0 30px;
}

.logo {
    max-width: 100%;
    height: auto;
    width: 400px;
}

.content-section {
    margin-bottom: 40px;
}

h1, h2 {
    font-family: 'F37 Maulstick SemiBold', serif;
    color: #004173;
    font-size: 28px;
    margin: 20px 0 15px;
    line-height: 1.3;
}

h2 {
    font-size: 20px;
}

p {
    font-family: 'F37 Maulstick Regular', sans-serif;
    color: #5B5B5B;
    font-size: 16px;
    max-width: 600px;
    margin: 10px auto;
}

.bold {
    font-weight: 600;
    font-size: 18px;
    color: #111111;
}

.qr-code-container {
    margin: 20px 0;
}

.qr-code {
    max-width: 100%;
    width: 177px;
    height: auto;
    border: 1px solid #cccccc;
    padding: 10px;
    margin-bottom: 20px;
    display: inline-block;
}

.badge-container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
}

.badge-link {
    display: inline-block;
    transition: opacity 0.2s ease;
}

.badge-link:hover {
    opacity: 0.8;
}

.badge-link:active {
    opacity: 0.6;
}

.ios-badge {
    width: 120px;
    height: auto;
    display: block;
}

.android-badge {
    width: 135px;
    height: auto;
    display: block;
}

.app-button {
    background-color: #111111;
    color: white;
    font-size: 16px;
    font-family: 'F37 Maulstick SemiBold', serif;
    border: none;
    border-radius: 10px;
    padding: 14px 40px;
    cursor: pointer;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
    text-decoration: none;
    margin: 20px 0;
    font-weight: 600;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.app-button:hover {
    background-color: #333333;
    transform: translateY(-1px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.app-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.error-message {
    padding: 15px;
    border-radius: 8px;
    background-color: #f8f9fa;
    margin: 20px 0;
}
