:root {
    --primary-color: #2E5BFF;
    --accent-color: #09274A;
    --text-color: #333333;
    --bg-main: #ffffff;
    --bg-secondary: #fafafa;
    --bg-third: #f5f5f5;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    background: linear-gradient(135deg, #ffffff 0%, #f0f6ff 50%, #e8fdf1 100%);
}

main {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

h1 {
    color: var(--primary-color);
}

.intro-text {
    max-width: 600px;
}

/* Hero mažesniems puslapiams */
.hero-small {
  text-align: center;
  padding: 60px 20px;
  color: black;
  border-radius: 12px;
  margin-bottom: 40px;
}

.hero-small h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero-small p {
  font-size: 1.1rem;
  opacity: 0.9;
}

/* Sekcijos turiniui */
.info-section {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.info-section h2 {
  font-size: 1.6rem;
  margin-bottom: 15px;
  color: #09274A;
}

.info-section p {
  line-height: 1.6;
  margin-bottom: 12px;
}

/* Email link stilius */
.info-section a {
  color: #2E5BFF;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.info-section a:hover {
  color: #1a3fcc;
}
