/* =====================
   RESET / BASE
===================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Open Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #222;
  background-color: #f7f9fb;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: #1b7ed6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* =====================
   LAYOUT
===================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.site {
  background: #fff;
}

/* =====================
   GRID HELPERS
===================== */
.is-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.is-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.gap25 { gap: 25px; }
.gap50 { gap: 50px; }

@media (max-width: 992px) {
  .is-grid-2,
  .is-grid-3 {
    grid-template-columns: 1fr;
  }
}

/* =====================
   HEADER
===================== */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e6e6e6;
}

.top-header {
  background: #0f2a44;
  color: #fff;
  font-size: 14px;
}

.bottom-header {
  position: relative;
  padding: 15px 0;
}

.site-branding .site-title a {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #0f2a44;
}

.site-description {
  font-size: 13px;
  color: #666;
}

/* =====================
   NAVIGATION
===================== */
.main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.main-navigation a {
  font-weight: 600;
  color: #0f2a44;
}

.current-menu-item a {
  color: #1b7ed6;
}

/* =====================
   HERO
===================== */
.hero {
  background: linear-gradient(120deg, #e8f1fb, #ffffff);
  padding: 80px 0;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
}

.hero p {
  font-size: 18px;
  color: #444;
}

/* =====================
   CARDS / BLOCKS
===================== */
.card-block,
.card-block-radius {
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

.card-block-radius {
  border-radius: 20px;
}

.card-block.gray {
  background: #f2f4f7;
}

.bg-info-block {
  background: #0f2a44;
  color: #fff;
  padding: 80px 0;
}

.bg-info-block h5 {
  color: #fff;
}

/* =====================
   IMAGES
===================== */
.radiusimg {
  border-radius: 14px;
  margin-bottom: 20px;
}

/* =====================
   CONTACT BOX
===================== */
.contact-box {
  background: #1b7ed6;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  margin-bottom: 50px;
}

.contact-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* =====================
   FORMS
===================== */
.formstyle {
  background: #ffffff;
  padding: 35px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.formstyle input,
.formstyle textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 8px;
  border: 1px solid #dcdcdc;
  font-size: 15px;
}

.formstyle textarea {
  min-height: 120px;
}

.formstyle input:focus,
.formstyle textarea:focus {
  outline: none;
  border-color: #1b7ed6;
}

.form-btn input {
  background: #1b7ed6;
  color: #fff;
  border: none;
  padding: 14px 30px;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
}

.form-btn input:hover {
  background: #145fa3;
}

/* =====================
   TYPOGRAPHY
===================== */
h1, h2, h3, h4, h5 {
  font-family: "Poppins", sans-serif;
  color: #0f2a44;
}

h2 {
  margin-top: 40px;
}

.m50 { margin: 50px 0; }
.mtb50 { margin: 50px 0; }

/* =====================
   PRIVACY PAGE
===================== */
.privacy-policy .entry-content {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
}

.privacy-policy h1 {
  margin-bottom: 30px;
}

.privacy-policy h2 {
  margin-top: 35px;
}

/* =====================
   FOOTER
===================== */
.site-footer {
  background: #0f2a44;
  color: #fff;
  padding: 40px 0;
}

.site-footer a {
  color: #ffffff;
  font-weight: 600;
}

.site-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

/* =====================
   COOKIES BAR
===================== */
.eu-cookies-bar-cookies-bar {
  background: #222;
  color: #fff;
  padding: 15px;
  font-size: 14px;
}

.eu-cookies-bar-cookies-bar-button {
  background: #1b7ed6;
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
}

/* =====================
   BACK TO TOP
===================== */
#back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1b7ed6;
  color: #fff;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,.2);
}
