/* ====== BASE ====== */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #ffffff;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 20px;
}

a {
  text-decoration: none;
}

/* ====== CONTAINER ====== */

.maz-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ====== HEADER ====== */

.maz-header {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 10;
  background: transparent;
}

.maz-brand {
  font-weight: 600;
  font-size: 20px;
  color: white;
}

.maz-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.maz-menu {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.maz-menu a {
  color: white;
  font-weight: 500;
}

.maz-cta {
  background: #0d2236;
  color: white;
  padding: 10px 18px;
  border-radius: 30px;
  font-weight: 500;
}

/* ====== HERO ====== */

.maz-hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  color: white;
}

.maz-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.maz-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.6),
    rgba(0,0,0,0.4)
  );
  z-index: 1;
}

.maz-hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.maz-kicker {
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

.maz-hero h1 {
  font-size: 56px;
  line-height: 1.1;
  margin: 20px 0;
}

.maz-hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.9;
}

.maz-hero__actions {
  display: flex;
  gap: 15px;
}

.maz-btn {
  padding: 14px 26px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.maz-btn--primary {
  background: #0d2236;
  color: white;
}

.maz-btn--primary:hover {
  background: #132f4b;
}

.maz-btn--ghost {
  border: 1px solid white;
  color: white;
}

.maz-btn--ghost:hover {
  background: white;
  color: black;
}

/* ====== SECTION ====== */

.maz-section {
  padding: 100px 0;
}

.maz-section h2 {
  font-size: 40px;
}

.maz-lead {
  font-size: 18px;
  color: #666;
  margin-bottom: 50px;
}

/* ====== GRID ====== */

.maz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.maz-card {
  background: #f5f5f5;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.maz-card:hover {
  transform: translateY(-8px);
}

.maz-card__media {
  height: 180px;
  background: #ddd;
}

.maz-card__body {
  padding: 20px;
}

.maz-card__title {
  font-weight: 600;
  font-size: 18px;
}

.maz-card__meta {
  font-size: 14px;
  color: #777;
}

/* ====== FOOTER ====== */

.maz-footer {
  background: #0d2236;
  color: white;
  padding: 60px 0 30px;
}

.maz-footer-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}

.maz-footer a {
  color: white;
  margin-left: 20px;
}

.maz-footer-copy {
  opacity: 0.7;
  font-size: 14px;
}
.maz-main{
  padding: 0;
  margin: 0;
}
