/* Base styles */
:root {
  --primary-color: #3a6ea5;
  --secondary-color: #004e98;
  --text-color: #333333;
  --light-bg: #f7f9fc;
  --border-color: #e1e4e8;
  --heading-color: #2c3e50;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  background-color: var(--light-bg);
  margin: 0;
  padding: 0;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

/* Header styling */
.header {
  background-color: var(--primary-color);
  color: white;
  padding: 30px 0;
  text-align: center;
}

.title {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}

.container {
  padding: 0 30px;
}

/* Content styling */
.translations-content-container {
  padding: 30px 0;
}

.translations-content-item {
  display: none;
}

.visible {
  display: block;
}

h1 {
  color: var(--heading-color);
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border-color);
}

h2 {
  color: var(--heading-color);
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 15px;
}

p {
  margin-bottom: 20px;
}

ul {
  padding-left: 25px;
  margin-bottom: 25px;
}

li {
  margin-bottom: 10px;
}

a {
  color: var(--secondary-color);
  text-decoration: none;
  transition: color 0.3s;
}

a:hover {
  text-decoration: underline;
}

/* For strong elements */
strong {
  font-weight: 600;
}

/* Responsive design */
@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  
  h1 {
    font-size: 24px;
  }
  
  h2 {
    font-size: 20px;
  }
  
  .title {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  h1 {
    font-size: 22px;
  }
  
  h2 {
    font-size: 18px;
  }
}

/* Print styles */
@media print {
  body {
    background-color: white;
  }
  
  .page {
    box-shadow: none;
  }
  
  a {
    color: var(--text-color);
    text-decoration: none;
  }
}