/* Footer */
.site-footer {
    border-top: 1px solid #e5e5e5;
    padding: 40px 0;
    margin-top: 60px;
    text-align: center;
}

.request-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #1a1a1a;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s;
    margin-bottom: 20px;
    font-family: inherit;
}

.request-btn:hover {
    background: #333;
    transform: translateY(-1px);
}

.site-footer p {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
}

/* Request Modal */
.request-info {
    padding: 0;
}

.request-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.request-option {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.request-option:hover {
    border-color: #1a1a1a;
    background: #fafafa;
}

.request-icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
    border-radius: 8px;
}

.request-option strong {
    display: block;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.request-option small {
    display: block;
    color: #666;
    font-size: 0.85rem;
}