/* Primary Button */
.btn-primary {
    padding: 12px 25px;
    background: #0077cc;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-primary:hover {
    background: #005fa3;
}

/* Secondary Button */
.btn-secondary {
    padding: 10px 20px;
    background: #ffffff;
    color: #333;
    border: 2px solid #333;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
}

.btn-secondary:hover {
    background: #333;
    color: white;
}