/* PCB Manufacturing & Assembly Quote Button Styles */
.pcb-quote-button-container {
    width: 100%;
    text-align: center;
    margin: 40px 0;
    padding: 0 20px;
    box-sizing: border-box;
}

.pcb-quote-button {
    display: inline-block;
    background: linear-gradient(135deg, #002e5b 0%, #003d7a 100%);
    color: #ffffff !important;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    padding: 18px 40px;
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 46, 91, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.5;
}

.pcb-quote-button:hover {
    background: linear-gradient(135deg, #001d3a 0%, #002e5b 100%);
    color: #ffffff !important;
    box-shadow: 0 6px 16px rgba(0, 46, 91, 0.4);
    transform: translateY(-2px);
}

.pcb-quote-button:active {
    background: linear-gradient(135deg, #001d3a 0%, #002e5b 100%);
    color: #ffffff !important;
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 46, 91, 0.3);
}

/* 响应式设计 */
@media only screen and (max-width: 768px) {
    .pcb-quote-button {
        font-size: 16px;
        padding: 16px 30px;
        width: auto;
        max-width: 100%;
        box-sizing: border-box;
    }
    
    .pcb-quote-button-container {
        padding: 0 15px;
        margin: 30px 0;
    }
}

@media only screen and (max-width: 480px) {
    .pcb-quote-button {
        font-size: 14px;
        padding: 14px 20px;
        width: auto;
    }
}

