:root {
  --color-primary: #113f67;
  --color-secondary: #59738c;
  --color-accent: #60a5fa;
  --color-text-light: #ffffff;
  --color-text-muted: rgba(17, 63, 103, 0.7);
  --font-family-main: 'Poppins', sans-serif;
}

.header {
  background-color: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}


body {
  margin: 0;
  font-family: var(--font-family-main);
  background-color: #ffffff;
  color: var(--color-secondary);
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  background-color: #ffffff;
}

.container {
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.footer {
  background-color: #0e2e47;
  color: #fff;
  padding: 60px 20px 30px;
}

.footer-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  height: 100px;
  margin-bottom: 15px;
}

.footer-logo p {
  font-size: 18px;
  margin-bottom: 15px;
}

.sosmed img {
  width: 30px;
  margin-right: 10px;
}

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column h4 {
  font-size: 18px;
  margin-bottom: 15px;
  color: #fff;
}

.footer-column p,
.footer-column ul {
  font-size: 18px;
  color: #ddd;
}

.footer-column ul {
  list-style: none;
  padding-left: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.btn-footer {
  display: inline-block;
  background-color: #4dabf7;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  margin-top: 10px;
}

.btn-footer:hover {
  background-color: #339af0;
}

.copyright {
  text-align: center;
  font-size: 13px;
  color: #ccc;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar .menu a {
    margin: 10px 10px 0 0;
    display: inline-block;
  }

  .cta-flex {
    align-items: center;
    text-align: center;
  }

  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
  }
}