.app-download-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.app-download-modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.app-download-modal-content {
    background-color: white;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    padding: 25px;
    position: relative;
}

.app-download-modal-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
}

.close-app-modal {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
    transition: color 0.3s;
}

.close-app-modal:hover {
    color: #333;
}

.app-download-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.download-button {
    display: block;
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
}

.download-button i {
    margin-left: 10px;
    font-size: 1.2rem;
}

.download-button.android {
    background-color: #3DDC84;
    color: white;
}

.download-button.android:hover {
    background-color: #32b56c;
}

.download-button.iphone {
    background-color: #000000;
    color: white;
}

.download-button.iphone:hover {
    background-color: #333333;
}

/* iPhone Web App Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
    animation: fadeIn 0.3s ease;
}

.modal-content {
    background-color: white;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    padding: 30px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: #777;
    transition: color 0.3s;
}

.close-modal:hover {
    color: #333;
}

.modal-title {
    margin-bottom: 20px;
    color: #333;
    text-align: center;
    font-weight: bold;
}

.step {
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.step-content {
    flex-grow: 1;
}

.step-title {
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}

.step-image {
    margin-top: 10px;
    border-radius: 8px;
    border: 1px solid #eee;
    max-width: 100%;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
