:root {
  --blue: #0b2c5d;
  --blue-light: #1f4fd8;
  --yellow: #f2b705;
  --gray: #f5f7fb;
  --text: #1a1a1a;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

a {
  text-decoration: none;
  color: var(--blue);
}

img{
	max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 2rem 1.5rem;
}


.flex {
  display: flex;
  gap: 6px;
  align-items: center;
}
.flex p {
  margin-bottom: 6px;
}

/* Top bar */
.top-bar {
  background: var(--blue);
  color: #fff;
  text-align: center;
  font-size: 0.9rem;
  padding: 0.5rem;
}

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

.logo {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.logo img {
  width: 120px;
}

.logo span {
  font-size: 0.85rem;
  color: #666;
}

nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  font-weight: 500;
  display: flex;
  gap: 5px;
  align-items: center;
}
}

.btn-outline {
  border: 1px solid var(--blue-light);
  padding: 0.6rem 1.1rem;
  border-radius: 6px;
  display: flex;
  gap: 5px;
  align-items: center;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.hero p {
  margin-bottom: 1.5rem;
  color: #444;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.hero-illustration {
  display: flex;
  justify-content: center;
}

.certificate {

}

.qr {
  width: 60px;
  height: 60px;
  background: #000;
  position: absolute;
  top: 20px;
  right: 20px;
}

.verified {
  position: absolute;
  bottom: 15px;
  left: 15px;
  background: #2ecc71;
  color: #fff;
  padding: 6px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
}

/* Cards */
.actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  background: var(--gray);
}

.card {
  background: #fff;
  padding: 1.8rem;
  border-radius: 10px;
}

.card h3 {
  margin-bottom: 0.6rem;
}

/* Trust */
.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: var(--blue);
  color: #fff;
  margin-top: 3rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.footer-bottom {
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
  background: #081f42;
  justify-content: center;
}

/* Responsive */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  nav {
    display: none;
  }

  .actions,
  .trust,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


<!-- tab styles -->


.actions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin: 60px auto;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: 0.25s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.card p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.action-expand {
  font-weight: 600;
  text-decoration: none;
}

.actions-expand {
  margin-bottom: 80px;
}

.expand-content {
  display: none;
  background: #fff;
  border-radius: 18px;
  padding: 32px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  animation: fadeIn 0.25s ease;
}

.expand-content.active {
  display: block;
}

.expand-content h2 {
  margin-bottom: 16px;
}

.expand-content p {
  margin-bottom: 24px;
  color: #555;
}

.cert-form,
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cert-form input,
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #dcdcdc;
  border-radius: 12px;
  font-size: 1rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.cert-form button,
.contact-form button {
  width: fit-content;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  background: #0057ff;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
}

.cert-form button:hover,
.contact-form button:hover {
  opacity: 0.9;
}

.laws-list {
  list-style: none;
  padding: 0;
}

.laws-list li + li {
  margin-top: 14px;
}

.laws-list a {
  text-decoration: none;
  color: #0057ff;
  font-weight: 500;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .card,
  .expand-content {
    padding: 24px;
  }
}
