* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Segoe UI', system-ui, -apple-system, sans-serif; }
body { background: linear-gradient(135deg, #090807, #181310, #0c0b0a); color: #e0e0e0; min-height: 100vh; display: flex; flex-direction: column; }
header { background: rgba(18, 14, 12, 0.95); border-bottom: 1px solid #3d332b; padding: 15px 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; }
.logo { font-size: 26px; font-weight: 800; background: linear-gradient(180deg, #ffffff, #a3a3a3, #666666); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 0.5px; }
nav { display: flex; gap: 12px; flex-wrap: wrap; }
nav a { color: #c0c0c0; text-decoration: none; font-weight: 600; padding: 8px 16px; border-radius: 6px; border: 1px solid transparent; transition: all 0.3s ease; font-size: 15px; }
nav a:hover, nav a.active { color: #ffffff; border-color: #888888; background: rgba(255, 255, 255, 0.08); }
.red-banner { background: linear-gradient(90deg, #7a0000, #b21818, #7a0000); color: #ffffff; text-align: center; padding: 12px 20px; font-weight: 500; font-size: 15px; margin: 20px auto; max-width: 1100px; border-radius: 8px; border: 1px solid #ff4d4d; box-shadow: 0 0 15px rgba(178, 24, 24, 0.35); width: 90%; }
.red-banner a { color: #ffffff; text-decoration: underline; font-weight: bold; }
.container { max-width: 1100px; margin: 0 auto; padding: 20px; flex: 1; width: 100%; }
.hero { text-align: center; padding: 40px 20px; background: rgba(25, 20, 17, 0.6); border: 1px solid #382e27; border-radius: 12px; margin-top: 10px; }
.hero h1 { font-size: 32px; margin-bottom: 15px; color: #ffffff; }
.hero p { color: #b0b0b0; max-width: 600px; margin: 0 auto 25px; line-height: 1.6; }
.hero-btns { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; }
.btn-primary { background: linear-gradient(180deg, #e0e0e0, #888888); color: #111; padding: 12px 24px; text-decoration: none; font-weight: bold; border-radius: 6px; transition: all 0.3s ease; box-shadow: 0 0 10px rgba(255, 255, 255, 0.2); display: inline-block; }
.btn-primary:hover { background: linear-gradient(180deg, #ffffff, #aaaaaa); }
.section-title { font-size: 22px; margin-bottom: 20px; border-left: 4px solid #c0c0c0; padding-left: 12px; color: #ffffff; }
.grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 18px; }
.card { background: rgba(26, 21, 18, 0.8); border: 1px solid #3d3229; border-radius: 10px; padding: 20px 15px; text-align: center; text-decoration: none; color: #e0e0e0; transition: all 0.3s ease; display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 130px; }
.card:hover { transform: translateY(-4px); border-color: #c0c0c0; box-shadow: 0 6px 20px rgba(192, 192, 192, 0.2); }
.card-num { font-size: 13px; color: #888888; font-weight: 600; margin-bottom: 6px; }
.card-title { font-size: 15px; font-weight: 600; color: #f0f0f0; }
.contact-form { max-width: 600px; margin: 0 auto; background: rgba(24, 19, 16, 0.8); border: 1px solid #3d3229; padding: 30px; border-radius: 12px; }
.form-group { margin-bottom: 18px; text-align: left; }
.form-group label { display: block; margin-bottom: 8px; font-size: 14px; color: #cccccc; font-weight: 500; }
.form-group input, .form-group textarea { width: 100%; padding: 12px; background: rgba(12, 10, 9, 0.9); border: 1px solid #473a30; border-radius: 6px; color: #ffffff; font-size: 15px; outline: none; }
footer { text-align: center; padding: 20px; font-size: 13px; color: #777777; border-top: 1px solid #2a221c; margin-top: 40px; }
@media (max-width: 700px) { header { justify-content: center; gap: 12px; } nav { justify-content: center; } .hero h1 { font-size: 26px; } }