/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", "Segoe UI", sans-serif;
}

body {
  background: #f9fafc;
  color: #1a1a1a;
  line-height: 1.8;
}

/* FULL WIDTH LAYOUT */
.container {
  max-width: 1200px; /* wider */
  margin: auto;
  padding: 60px 40px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: #fff;
  border-bottom: 2px solid #f0f0f0;
}

/* Logo */
.logo img {
  height: 48px;
}

/* Center Buttons */
.header-buttons {
  display: flex;
  gap: 24px;
}

.btn {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.primary {
  background-color: #f15a00;
  color: #fff;
}

.btn.primary:hover {
  background-color: #d94f00;
}

/* Contact Numbers */
.contact {
  display: flex;
  gap: 24px;
  font-size: 18px;
  font-weight: 600;
}

.contact a {
  color: #f15a00;
  text-decoration: none;
}

.contact a:hover {
  text-decoration: underline;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background-color: #f15a00;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1002;
  transition: right 0.3s ease-in-out;
  overflow-y: auto;
}

.sidebar.active {
  right: 0;
}

.sidebar-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.close-btn {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 36px;
  color: #f15a00;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sidebar-buttons .btn {
  width: 100%;
}

.sidebar-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 18px;
  font-weight: 600;
  padding-top: 16px;
  border-top: 1px solid #f0f0f0;
}

.sidebar-contact a {
  color: #f15a00;
  text-decoration: none;
}

.sidebar-contact a:hover {
  text-decoration: underline;
}

/* Overlay */
.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
  z-index: 1001;
}

.overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Responsive */
@media (max-width: 992px) {
  .header {
    flex-wrap: wrap;
    gap: 16px;
  }

  .header-buttons {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .contact {
    order: 2;
  }
}

@media (max-width: 768px) {
  .header {
    padding: 16px 24px;
    justify-content: space-between;
  }

  .hamburger {
    display: flex;
  }

  .desktop-nav {
    display: none !important;
  }

  .logo img {
    height: 40px;
  }
}

/* title (HERO STYLE) */
.title {
  max-width: 800px;
  /*margin-bottom: 60px;*/
}

.title h1 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -1px;
}

.brand {
  font-size: 18px;
  color: #4a6cf7;
  font-weight: 600;
  margin-top: 12px;
}

.date {
  font-size: 14px;
  color: #888;
  margin-top: 6px;
}

/* INTRO TEXT */
.title + section p {
  font-size: 18px;
  color: #555;
}

/* SECTIONS (NO BOXES, JUST FLOW) */
section {
  max-width: 800px; /* readable text width */
  /*margin-bottom: 50px;*/
}

/* HEADINGS */
h2 {
  font-size: 26px;
  margin-bottom: 14px;
  margin-top: 40px;
  font-weight: 600;
}

h3 {
  font-size: 17px;
  margin-top: 18px;
  margin-bottom: 6px;
  color: #444;
}

/* TEXT */
p {
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
}

ul {
  padding-left: 20px;
  margin-top: 10px;
}

ul li {
  margin-bottom: 8px;
  color: #444;
}

/* SUBTLE SECTION DIVIDER (LIKE BLOG) */
section:not(:last-child) {
  border-bottom: 1px solid #eee;
  /*padding-bottom: 30px;*/
}

/* FOOTER */
footer {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  font-size: 14px;
  color: #888;
  max-width: 800px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .container {
    padding: 30px 20px;
  }

  .title h1 {
    font-size: 36px;
  }

  section {
    max-width: 100%;
  }
}