/* ===========================
   PDFMate Official Website
   Theme
=========================== */

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap");

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

:root {
  --primary: #4f46e5;
  --secondary: #7c3aed;
  --background: #f8fafc;
  --white: #ffffff;
  --text: #111827;
  --text-light: #6b7280;
  --border: #e5e7eb;
  --shadow: 0 15px 35px rgba(79, 70, 229, 0.08);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--background);
  color: var(--text);
  line-height: 1.8;
}

/* ===========================
   Container
=========================== */

.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
}

/* ===========================
   Hero
=========================== */

.hero {
  background: linear-gradient(
    135deg,
    var(--primary),
    var(--secondary)
  );

  color: white;

  padding: 90px 20px;

  text-align: center;

  border-bottom-left-radius: 40px;

  border-bottom-right-radius: 40px;

  box-shadow: var(--shadow);
}

.hero img {
  width: 90px;

  margin-bottom: 20px;
}

.hero h1 {
  font-size: 48px;

  font-weight: 700;
}

.hero p {
  margin-top: 15px;

  font-size: 18px;

  color: rgba(255,255,255,.9);

  max-width: 700px;

  margin-inline: auto;
}

/* ===========================
   Buttons
=========================== */

.buttons {
  margin-top: 35px;

  display: flex;

  justify-content: center;

  gap: 18px;

  flex-wrap: wrap;
}

.btn {
  display: inline-block;

  text-decoration: none;

  padding: 14px 28px;

  border-radius: 15px;

  transition: .3s;

  font-weight: 600;
}

.btn-primary {
  background: white;

  color: var(--primary);
}

.btn-primary:hover {
  transform: translateY(-3px);

  box-shadow: var(--shadow);
}

.btn-outline {
  border: 2px solid white;

  color: white;
}

.btn-outline:hover {
  background: white;

  color: var(--primary);
}

/* ===========================
   Card
=========================== */

.card {
  background: white;

  border-radius: 22px;

  padding: 35px;

  margin-top: 35px;

  box-shadow: var(--shadow);
}

.card h2 {
  color: var(--primary);

  margin-bottom: 20px;

  font-size: 28px;
}

.card h3 {
  margin-top: 30px;

  margin-bottom: 12px;

  color: #1f2937;
}

.card p {
  color: var(--text-light);

  margin-bottom: 12px;
}

.card ul {
  margin-left: 22px;

  color: var(--text-light);

  margin-top: 10px;
}

.card li {
  margin-bottom: 10px;
}

/* ===========================
   Info Box
=========================== */

.info-box {
  background: #eef2ff;

  border-left: 5px solid var(--primary);

  padding: 20px;

  border-radius: 14px;

  margin: 25px 0;
}

.info-box strong {
  color: var(--primary);
}

/* ===========================
   Footer
=========================== */

footer {
  margin-top: 70px;

  padding: 35px 20px;

  text-align: center;

  color: var(--text-light);

  border-top: 1px solid var(--border);
}

footer p {
  margin-top: 8px;
}

footer a {
  color: var(--primary);

  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* ===========================
   Table
=========================== */

table {
  width: 100%;

  border-collapse: collapse;

  margin-top: 25px;
}

table th,
table td {
  border: 1px solid var(--border);

  padding: 15px;

  text-align: left;
}

table th {
  background: var(--primary);

  color: white;
}

table tr:nth-child(even) {
  background: #f9fafb;
}

/* ===========================
   Badge
=========================== */

.badge {
  display: inline-block;

  background: #eef2ff;

  color: var(--primary);

  padding: 8px 16px;

  border-radius: 999px;

  font-size: 13px;

  font-weight: 600;

  margin-bottom: 15px;
}

/* ===========================
   Responsive
=========================== */

@media (max-width: 768px) {

.hero {
  padding: 70px 20px;
}

.hero h1 {
  font-size: 34px;
}

.hero p {
  font-size: 16px;
}

.card {
  padding: 25px;
}

.card h2 {
  font-size: 24px;
}

.buttons {
  flex-direction: column;
}

.btn {
  width: 100%;
}

}