/* style.css */
body { font-family: 'Segoe UI', sans-serif; margin: 0; background: #fdfdfd; color: #333; }

header { 
    background: #1a1a1a; color: white; padding: 15px 5%; 
    display: flex; justify-content: space-between; align-items: center;
    position: sticky; top: 0; z-index: 1000;
}

nav a { color: #ccc; text-decoration: none; margin-right: 20px; font-weight: 500; }
nav a:hover { color: #fff; }

.cart-btn {
    background: #e67e22; color: white; padding: 10px 20px;
    border-radius: 5px; text-decoration: none; font-weight: bold;
}

section { padding: 60px 10%; min-height: 70vh; }

/* Layout Helpers */
.flex-container { display: flex; gap: 50px; align-items: center; justify-content: space-between; }
.flex-1 { flex: 1; }

/* FAQ & Forms */
.faq-box { border-bottom: 1px solid #eee; padding: 15px 0; cursor: pointer; }
.faq-a { display: none; padding-top: 10px; color: #666; }
input, textarea { width: 100%; padding: 10px; margin: 10px 0; border: 1px solid #ccc; }