/* assets/css/style.css - FULL COPY PASTE */
:root {
    --primary: #2e3192;
    --accent: #ff9900;
    --light: #f4f4f4;
}

body { margin: 0; padding: 0; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; background: var(--light); }

.container { width: 90%; max-width: 1200px; margin: auto; }

/* Header & Nav */
.header { background: var(--primary); color: white; padding: 15px 0; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
.header h1 { margin: 0; font-size: 24px; }

/* Product Cards */
.product-card {
    background: white;
    border-radius: 10px;
    padding: 15px;
    text-align: left;
    transition: 0.3s;
    border: 1px solid #ddd;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.btn-inquiry {
    background: var(--accent);
    color: white;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    margin-top: auto;
}

.btn-inquiry:hover {
    background: #e68a00;
}