/* services.css */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: #050505; color: #fff; font-family: 'Times New Roman', serif; }
nav { padding: 30px; border-bottom: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: center; }
.nav-container { width: 90%; display: flex; justify-content: space-between; align-items: center; max-width: 1200px; }
.brand { font-size: 1.2rem; letter-spacing: 4px; color: #d4af37; }
.menu a { color: #888; text-decoration: none; margin-left: 20px; font-size: 0.7rem; text-transform: uppercase; }

.container { padding: 100px 20px; max-width: 1200px; margin: auto; }
.section-title { font-size: 2.5rem; letter-spacing: 8px; text-align: center; margin-bottom: 60px; color: #f5f5f5; }
.services-grid { display: grid; grid-template-columns: 1fr; gap: 30px; }

.card { border: 1px solid #1a1a1a; padding: 50px; text-align: left; transition: 0.4s; background: #0a0a0a; }
.card:hover { border-color: #d4af37; transform: translateY(-10px); }
.card h3 { color: #d4af37; letter-spacing: 3px; margin-bottom: 20px; text-transform: uppercase; font-size: 1.5rem; }
.card p { color: #888; line-height: 1.8; font-size: 1rem; }

@media (min-width: 768px) {
    .services-grid { grid-template-columns: repeat(3, 1fr); }
}