/* =========================
   GLOBAL
========================= */

body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  margin: 0;
  color: #0f172a;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 60px auto;
  padding: 20px;
}

/* =========================
   HEADER
========================= */

.site-header {
  border-bottom: 1px solid #e2e8f0;
  background: white;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  max-width: 900px;
  margin: 0 auto;
  padding: 15px 20px;
}

/* =========================
   LOGO
========================= */

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}

.logo img {
  height: 120px;
  width: auto;
  display: block;
}

.logo:hover {
  opacity: 0.85;
}

/* =========================
   CARD
========================= */

.card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

h1 {
  margin-bottom: 10px;
}

p.description {
  color: #64748b;
  margin-bottom: 30px;
}

/* =========================
   FORM
========================= */

label {
  font-weight: 500;
  display: block;
  margin-bottom: 5px;
}

input,
select {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  font-size: 16px;
  box-sizing: border-box;
}

/* =========================
   RESULT
========================= */

.result {
  background: #eff6ff;
  padding: 20px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 600;
}

/* =========================
   LINKS GLOBAL
========================= */

a {
  color: #4f46e5;
  text-decoration: none;
}

a:hover {
  color: #4338ca;
}

a:visited {
  color: #6366f1;
}

/* =========================
   CHIP LINKS (generator)
========================= */

ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-left: 0;
  margin-top: 20px;
}

ul li {
  list-style: none;
  margin: 0;
}

ul li a {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  font-size: 14px;
  display: inline-block;
  transition: 0.2s;
}

ul li a:hover {
  border-color: #4f46e5;
  color: #4f46e5;
  transform: translateY(-1px);
}

/* =========================
   CALCULATOR CARDS
========================= */

.calc-card {
  background: white;
  padding: 25px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  text-decoration: none;
  color: #0f172a;
  display: block;
  transition: 0.2s ease;
}

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

.calc-card h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.calc-card p {
  color: #64748b;
  font-size: 14px;
}

/* =========================
   VAT LINKS GRID
========================= */

.calc-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}

.calc-links a {
  background: white;
  border: 1px solid #e2e8f0;
  padding: 8px 14px;
  border-radius: 10px;
  text-decoration: none;
  color: #0f172a;
  font-size: 14px;
  transition: 0.2s;
}

.calc-links a:hover {
  border-color: #4f46e5;
  color: #4f46e5;
  transform: translateY(-1px);
}

/* =========================
   FOOTER
========================= */

.site-footer {
  margin-top: 80px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
  font-size: 14px;
  color: #64748b;
}

.site-footer .container {
  margin: 0 auto;
  padding: 20px;
}
/* =========================
   BREADCRUMBS
========================= */

.breadcrumbs{
font-size:14px;
color:#64748b;
margin-bottom:15px;
}

.breadcrumbs a{
color:#64748b;
text-decoration:none;
}

.breadcrumbs a:hover{
color:#4f46e5;
}
