:root {
  --primary-blue: #021d49;
  --primary-orange: #e37d08;
  --secondary-blue: #0543a7;
  --text-light: #ffffff;
  --text-dark: #021d49;
  --text-gray: #717273;
  --text-light-gray: #d9d9da;
  --bg-light: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--bg-light);
  color: var(--text-dark);
}

.page-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.whatsapp-float {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  width: 80px;
  height: 80px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    .whatsapp-float {
        width: 60px;
        height: 60px;
        bottom: 20px;
        right: 20px;
    }
}