/* =========================
Interlingo SaaS Styling
========================= */

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

body {
background: #0f172a; /* dark slate */
color: #e2e8f0;
line-height: 1.6;
}

/* Layout container */
.container {
width: 90%;
max-width: 1000px;
margin: auto;
padding: 20px 0;
}

/* Header */
.site-header {
background: #111827;
padding: 15px 0;
border-bottom: 1px solid #1f2937;
}

.site-header .container {
display: flex;
align-items: center;
gap: 12px;
}

.logo {
width: 40px;
height: 40px;
}

/* Cards */
.card {
background: #1f2937;
padding: 25px;
margin: 20px 0;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero {
text-align: center;
padding: 50px 25px;
}

/* Buttons */
.btn {
display: inline-block;
padding: 12px 20px;
margin-top: 15px;
border-radius: 8px;
text-decoration: none;
font-weight: bold;
transition: 0.2s ease;
}

.btn.primary {
background: #3b82f6;
color: white;
}

.btn.primary:hover {
background: #2563eb;
}

.btn.secondary {
background: #374151;
color: white;
}

.btn.secondary:hover {
background: #4b5563;
}

/* Links */
a {
color: #60a5fa;
text-decoration: none;
}

a:hover {
text-decoration: underline;
}

/* Headings */
h1, h2, h3 {
margin-bottom: 10px;
color: #f8fafc;
}

/* Lists */
ul {
margin-left: 20px;
margin-top: 10px;
}

li {
margin-bottom: 8px;
}

/* Footer */
.site-footer {
margin-top: 40px;
padding: 20px 0;
text-align: center;
border-top: 1px solid #1f2937;
font-size: 14px;
color: #94a3b8;
}

/* Small text */
.small-text {
font-size: 13px;
color: #94a3b8;
margin-top: 10px;
}
