/* Button styles */
.visit {
    background: #34a853;
    color: white;
    width: 100%;
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}
/* Modal overlay styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Modal card styles */
.modal-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    line-height: 1;
    color: #666;
}

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

.modal-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.modal-title {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.modal-text {
    color: #666;
    margin-bottom: 1.5rem;
}

.modal-button {
    font-size: 24px;
    background: #34a853;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.modal-button:hover {
    background: #2d9147;
}