@font-face {
  font-family: 'InstrumentSans';
  src: url('fonts/InstrumentSans-Variable.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'InstrumentSerif';
  src: url('fonts/InstrumentSerif-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'InstrumentSerif';
  src: url('fonts/InstrumentSerif-Italic.woff2') format('woff2');
  font-weight: normal;
  font-style: italic;
}

html, body {
  overflow-x: hidden;
  box-sizing: border-box;
}


body {
  margin: 0;
  font-family: 'InstrumentSerif', sans-serif;
  background: linear-gradient(to right, #0b0c10, #1f2833);
  color: #f1f1f1;
  height: 100%;
}

header {
  background: #111;
  text-align: center;
  padding: 20px;
}

header h1 {
  margin: 0;
  font-size: 2.4em;
  color: gold;
  letter-spacing: 1px;
}

.header-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
}

.header-center h1 {
  margin: 0;
  font-size: 2.2rem;
}

.logo {
  height: 50px;
  width: auto;
}

nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 10px 0;
  margin: 0;
  gap: 25px;
}

nav ul li a {
  text-decoration: none;
  color: #f1f1f1;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: gold;
}

.card-image {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.card-image img {
  max-width: 100%;
  height: auto;
}

.hero {
  padding: 20px 20px;
  text-align: center;
  background-image: url('images/bg-american-flag.jpg');
  background-size: cover;
  background-position: center;
}

.hero h2 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
  max-width: 700px;
  margin-inline: auto;
}

.btn {
  background-color: gold;
  color: #000;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background 0.3s;
}

.btn:hover {
  background-color: #e6c200;
}

footer {
  background: #111;
  text-align: center;
  padding: 15px;
  font-size: 0.9em;
  color: #aaa;
}

.btn-group {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn.secondary {
  background-color: #444;
  color: #fff;
}

.btn.secondary:hover {
  background-color: #666;
}

.steps {
  background-color: #1a1a2e;
  padding: 60px 20px;
  color: #f1f1f1;
  text-align: center;
}

.steps h2 {
  color: white;
  margin-bottom: 30px;
}

.faq-item {
  margin: 0 auto 20px;
 font-family: 'InstrumentSans', sans-serif;
  max-width: 700px;
  border-bottom: 1px solid #333;
  padding-bottom: 10px;
}

.faq-question {
  background: none;
 font-family: 'InstrumentSans', sans-serif;
  border: none;
  color: gold;
  font-weight: bold;
  font-size: 1.1em;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  text-align: center;
  padding: 10px 0;
}

.faq-question:hover {
  color: #ffc800;
}

.faq-icon {
  font-size: 1.2em;
  color: gold;
  transition: transform 0.2s;
}

.faq-answer {
  display: none;
  color: #ddd;
  padding: 10px 0;
  font-size: 1em;
}

.content {
  padding: 10px 20px;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
  text-align: justify;
  font-size: 1.05em;
  color: #f1f1f1;
}

.content h2 {
  text-align: center;
  margin-bottom: 10px;
  color: gold;
  font-size: 1.8em;
}

.content h3 {
  color: gold;
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 1.3em;
}

.content p {
  margin-bottom: 20px;
}

.content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 25px;
}

.content li {
  margin-bottom: 10px;
}

.news-article {
  background-color: rgba(255, 255, 255, 0.02);
  border-left: 4px solid gold;
  font-family: 'InstrumentSans', sans-serif;
  padding: 25px 30px;
  margin-bottom: 40px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.05);
  transition: background 0.3s;
}

.news-article:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.news-article h3 {
  color: gold;
  font-size: 1.3em;
  margin-bottom: 15px;
  font-family: 'InstrumentSerif', serif;
}

.news-article p {
  margin-bottom: 15px;
}

.news-article ul {
  padding-left: 20px;
  margin-bottom: 15px;
}

.news-article li {
  margin-bottom: 10px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin-top: 25px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(255, 215, 0, 0.2);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.form-wrapper {
  background: #000;
  padding: 60px 20px 50px;
  display: flex;
  justify-content: center;
}

.styled-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px 20px 50px;
  background: #000;
  color: white;
  font-family: 'InstrumentSerif', serif;
}

.form-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 2em;
}

.form-line input[type="text"] {
  border: none;
  border-bottom: 2px solid white;
  border-radius: 0;
  background: transparent;
  color: white;
  font-size: 0.7em;
  padding: 8px 10px;
  font-family: 'InstrumentSans', sans-serif;
  width: 300px;
}

.form-line input::placeholder {
  color: #888;
}

.form-line select,
.form-line input[type="email"] {
  padding: 10px 20px;
  font-size: 0.7em;
  border: none;
  border-radius: 40px;
  background: #111;
  color: white;
  font-family: 'InstrumentSans', sans-serif;
}

input[type="email"] {
  border: 1px solid white;
  border-radius: 40px;
}

input[type="file"] {
  padding: 10px;
  font-size: 0.7em;
  background: #111;
  color: white;
  border-radius: 10px;
  border: none;
}

.form-line.column span {
  font-size: 0.7em;
}

.styled-form input[type="file"] {
  font-size: 0.8em;
  padding: 6px;
  border-radius: 10px;
  border: none;
}

.styled-form button {
  align-self: center;
  padding: 12px 40px;
  border-radius: 30px;
  font-size: 1em;
  background: #444;
  color: white;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.form-line select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #111 url("data:image/svg+xml;charset=US-ASCII,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath fill='white' d='M1 0l5 5 5-5H1z'/%3E%3C/svg%3E") no-repeat right 1rem center;
  background-size: 12px;
  padding-right: 2.5rem;
  text-align: left;
  line-height: 1.4;
}

.styled-form button:hover {
  background: #666;
}

.file-upload {
  position: relative;
  margin-bottom: 15px;
}

.file-upload input[type="file"] {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.file-upload label {
  display: inline-block;
  padding: 10px 25px;
  background-color: #111;
  color: white;
  border-radius: 30px;
  font-family: 'InstrumentSans', sans-serif;
  cursor: pointer;
  transition: background 0.3s;
  font-size: 0.7em;
}

.file-upload label:hover {
  background-color: #333;
}

.file-name {
  display: block;
  margin-top: 8px;
  font-size: 0.9em;
  color: #aaa;
  font-family: 'InstrumentSans', sans-serif;
}

.language-dropdown {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
  position: relative;
}

#language-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: transparent;
  color: white;
  font-size: 16px;
  padding: 6px 12px;
  border: 1px solid white;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'InstrumentSerif', serif;
}

#language-options {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background-color: #1a1a1a;
  padding: 10px;
  border-radius: 6px;
  margin-top: 6px;
  z-index: 10;
}

#language-options a {
  display: flex;
  align-items: center;
  gap: 6px;
  color: white;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background 0.2s;
}

#language-options a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

#language-options img {
  width: 14px;
  height: 14px;
  border-radius: 50%;
}

.hidden {
  display: none !important;
}