@font-face {
  font-family: Quicksand;
  src: url(/assets/fonts/Quicksand-Regular.ttf);
  font-weight: normal;
}

@font-face {
  font-family: Quicksand;
  src: url(/assets/fonts/Quicksand-Bold.ttf);
  font-weight: bold;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  height: 100%;
}

body {
  font-family: Quicksand;
  color: black;
  line-height: 1.3;
}

img {
  max-width: 100%;
  height: auto;
}

/* Header */
.header {
  background-color: #116db8;
  padding: 0.5rem;
  color: white;
}

.header-content {
  max-width: 95vw;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo { height: 40px; }

/* Main content */
.main {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
  
  /* Background image */
  background-color: #f0f6fc;
  background-image: url('/assets/images/bg-homepage-desktop.jpg');
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: right;
}

/* Card layout */
.card {
  position: relative;
  background-color: white;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 720px;
  width: 100%;
}

.card-badge {
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  background-color: #f94f79;
  padding: 6px 12px;
  border-radius: 0 16px;
  font-weight: bold;
  font-size: 14px;
  color: white;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.card-content { padding: 3rem; }

h3, h4 { margin-top: 1.5rem; }

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(95px, 1fr));
  gap: 1rem;
  align-items: center;
  justify-items: center;
  margin-top: 1.5rem;
}

.logos-grid img { object-fit: contain; }
