/* Base styles for both membership buttons */
.membership-btn {
    display: block;
    width: 100%;
    padding: 14px 24px;
    margin: 10px 0;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Join button specific styles - blue */
.join-button {
    background-color: #0065b3; /* ASQ blue */
    color: white;
    border: 2px solid #0065b3;
}

.join-button:hover {
    background-color: #00539a;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* Renew button specific styles - orange */
.renew-button {
    background-color: #e77c22; /* ASQ orange */
    color: white;
    border: 2px solid #e77c22;
}

.renew-button:hover {
    background-color: #d06a15;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    transform: translateY(-2px);
}

/* Desktop layout - side by side buttons */
@media (min-width: 768px) {
    .membership-buttons-container {
        display: flex;
        gap: 20px;
        justify-content: center;
    }
    
    .membership-buttons-container .membership-btn {
        flex: 1;
        max-width: 300px;
    }
}

/* Mobile layout - stacked buttons */
@media (max-width: 767px) {
    .membership-btn {
        padding: 12px 20px;
        font-size: 14px;
        margin: 8px 0;
    }
}