* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: #9acd32; /* green background like image */
  min-height: 100vh;
}

/* Header */
.header {
  padding: 20px 40px;
}

.logo {
  color: white;
  font-size: 32px;
  font-weight: bold;
}

/* Layout */
.container {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

/* Card */
.card {
  background: white;
  max-width: 900px;
  width: 100%;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Text */
.title {
  font-size: 28px;
  margin-bottom: 10px;
}

.subtitle {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 25px;
}

.content {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 18px;
  color: #333;
}

/* Buttons */
.actions {
  margin-top: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.btn.primary {
  background: #2563eb;
  color: white;
}

.btn.primary:hover {
  background: #1e4ed8;
}

.btn.secondary {
  background: #e5e7eb;
  color: #111;
}

.btn.secondary:hover {
  background: #d1d5db;
}











