/* GLOBAL CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* COMMON */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

/* HEADER */
.header {
  background: #ffffff;
  border-bottom: 1px solid #eee;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
}

.logo {
  font-size: 22px;
  color: #0b5ed7;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

/* HERO */
.hero {
  background: #0b5ed7;
  color: #fff;
  padding: 80px 0;
  text-align: center;
}

.hero h2 {
  font-size: 42px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn {
  background: #fff;
  color: #0b5ed7;
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
}

/* SERVICES */
.services {
  padding: 80px 0;
  background: #f8f9fa;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.service-card {
  background: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

/* FOOTER */
.footer {
  background: #0b5ed7;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
/* TOP INFO BAR */
.top-bar {
  background: #0b5ed7;
  color: #ffffff;
  font-size: 14px;
}
/* FIX TOP BAR ALIGNMENT */
.top-bar {
  background: #ffffff;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 8px 20px;
}

.top-bar-content {
  display: flex;
  align-items: center;
}

.top-item {
  flex: 1;
}

.top-item.left {
  text-align: left;
}

.top-item.center {
  text-align: center;
}

.top-item.right {
  text-align: right;
}
