:root {
    --navy: #002D59;
    --blue: #007BFF;
    --google-blue: #4285f4;
    --google-red: #ea4335;
    --ms-blue: #00a4ef;
    --bg-light: #f4f7f6;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', Tahoma, sans-serif; background: var(--bg-light); color: #333; line-height: 1.6; }

/* HEADER - Profesjonalny, biały z cieniem */
header { background: var(--white); box-shadow: 0 2px 10px rgba(0,0,0,0.1); position: sticky; top: 0; z-index: 1000; }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 10px 20px; display: flex; justify-content: space-between; align-items: center; }

.logo { display: flex; align-items: center; text-decoration: none; gap: 10px; }
.logo-box { background: var(--navy); color: white; padding: 5px 12px; border-radius: 4px; font-weight: bold; font-size: 20px; }
.logo-text { font-size: 22px; font-weight: 800; color: var(--navy); letter-spacing: 1px; }

.nav-links { display: flex; gap: 5px; align-items: center; }
.nav-links a { text-decoration: none; color: #444; font-weight: 600; font-size: 14px; padding: 10px 15px; border-radius: 6px; transition: 0.3s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); background: #f1f5f9; }

/* DROPDOWN - W końcu działający */
.dropdown { position: relative; }
.dropdown-content { display: none; position: absolute; background: white; min-width: 200px; box-shadow: 0 8px 16px rgba(0,0,0,0.1); border-radius: 8px; z-index: 1100; top: 100%; left: 0; padding: 10px 0; }
.dropdown:hover .dropdown-content { display: block; }
.dropdown-content a { display: block; padding: 10px 20px; border-bottom: none; text-align: left; }
.dropdown-content a:hover { background: #f8f9fa; color: var(--blue); }

/* KAFELKI - To co wyglądało profesjonalnie */
.content { max-width: 1100px; margin: 50px auto; padding: 0 20px; min-height: 70vh; }
h1 { text-align: center; color: var(--navy); margin-bottom: 40px; font-size: 2.5rem; font-weight: 800; }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(350px, 1fr)); gap: 30px; }
.card { background: white; padding: 40px; border-radius: 20px; border: 1px solid rgba(0,0,0,0.05); display: flex; align-items: center; gap: 25px; transition: 0.4s; text-decoration: none; color: inherit; box-shadow: 0 10px 20px rgba(0,0,0,0.05); }
.card:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); border-color: var(--blue); }
.card i { font-size: 50px; }

/* FORMULARZE I DOKUMENTY */
.form-card { background: #fff; padding: 40px; border-radius: 20px; box-shadow: 0 15px 35px rgba(0,0,0,0.08); }
.btn-submit { background: var(--blue); color: white; border: none; padding: 18px; border-radius: 10px; font-weight: 700; width: 100%; cursor: pointer; font-size: 1.1rem; transition: 0.3s; }
.btn-submit:hover { background: var(--navy); }

.docs-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 15px; margin-top: 30px; }
.doc-link { background: white; border: 1px solid #ddd; padding: 20px; border-radius: 12px; display: flex; align-items: center; gap: 15px; text-decoration: none; color: #333; font-weight: 600; transition: 0.3s; }
.doc-link:hover { border-color: var(--google-red); background: #fff5f5; }

@media (max-width: 768px) {
    .nav-container { flex-direction: column; gap: 15px; }
    .nav-links { flex-wrap: wrap; justify-content: center; }
}