/* KONTAKT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info-block { background: #f7f7f7; padding: 30px; }
.contact-info-block h3 { font-size: 16px; font-weight: 700; margin-bottom: 24px; text-transform: uppercase; color: #222; }
.contact-form-block {padding: 30px; }
.contact-form-block h3 { font-size: 16px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; color: #222; }

/* Contact items with icons */
.contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid #e8e8e8; }
.contact-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-item__icon { width: 44px; height: 44px; background: #14181c; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item__icon i { color: #fff; font-size: 18px; }
.contact-item__content { display: flex; flex-direction: column; }
.contact-item__content strong { font-size: 12px; text-transform: uppercase; letter-spacing: 0.5px; color: #14181c; margin-bottom: 4px; font-weight: 700; }
.contact-item__content span,
.contact-item__content a { font-size: 14px; color: #555; line-height: 1.6; }
.contact-item__content a { font-size: 14px; color: #e8162d; line-height: 1.6; }
.contact-item__content a:hover { color: #14181c; }

/* Map */
.contact-map { margin-top: 24px; border: 1px solid #ddd; }

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
}
