body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  background: #f2f2f2;
  color: #333;
}

/* ALERT BAR */
.alert-bar {
  background: #fff3cd;
  border-bottom: 1px solid #ffeeba;
  text-align: center;
  padding: 10px;
  font-weight: bold;
  color: #856404;
}

/* HEADER */
.header {
  background: white;
  border-bottom: 2px solid #003366;
}
.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
}
.container {
  width: 90%;
  margin: auto;
}
.left {
  display: flex;
  align-items: center;
}
.flag {
  width: 45px;
  margin-right: 12px;
}
.right a {
  margin-left: 20px;
  text-decoration: none;
  color: #003366;
  font-weight: 500;
}

/* BLUE STRIP */
.blue-strip {
  background: #003366;
  color: white;
  text-align: center;
  padding: 12px;
  font-size: 1rem;
  font-weight: bold;
}

/* HERO */
.hero {
  background: #0b2a4a;
  color: white;
  padding: 80px 0;
}
.hero h1 {
  font-size: 56px;
  font-weight: 700;
  margin: 0;
}

/* NAVIGATOR CARD */
.navigator {
  margin-top: -50px;
}
.navigator-card {
  background: #123d6a;
  max-width: 670px;
  margin: 30px auto;
  border-radius: 10px;
  color: white;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  border-left: 6px solid #c8102e;
}
.nav-content {
  display: flex;
  justify-content: space-between;
  padding: 25px;
  font-size: 1.1rem;
  font-weight: 500;
  height: 100px;
  margin-top: 70px;
}

/* INFO BOX */
.info-box {
  max-width: 620px;
  margin: 30px auto;
  background: white;
  padding: 25px;
  border-top: 6px solid #123d6a;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.info-box p {
  line-height: 1.6;
  font-size: 1rem;
}
.info-box button {
  color: white;
  border: none;
  padding: 12px 24px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 4px;
}

button {
  background-color: white;
  margin-left: 335px;  
  margin-bottom: 20px;                /* Dark blue text */
  border: 1px solid #cccccc;       /* Light gray border */
  border-radius: 6px;              /* Slightly rounded corners */
  padding: 10px 24px;              /* Comfortable spacing */
  font-size: 15px;                 /* Readable font size */
  font-weight: bold;               /* Bold text */
  cursor: pointer;                 /* Pointer on hover */
  transition: background-color 0.3s, box-shadow 0.3s;
}

button:hover {
  background-color: #f0f0f0;       /* Light gray hover effect */
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* CHAT */
.chat-box {
  max-width: 600px;
  margin: 40px auto;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.chat-header {
  background: #123d6a;
  color: white;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  font-weight: bold;
}
#chat {
  height: 300px;
  padding: 12px;
  overflow-y: auto;
}
.message {
  padding: 10px;
  margin: 10px 0;
  border-radius: 10px;
  max-width: 70%;
  line-height: 1.4;
}
.bot {
  background: #eee;
}
.user {
  background: #123d6a;
  color: white;
  margin-left: auto;
}
.option-btn {
  width: 100%;
  padding: 12px;
  margin: 6px 0;
  background: #c8102e;
  color: white;
  border: none;
  font-weight: bold;
  border-radius: 4px;
}

/* FOOTER */
.footer {
  background: #003366;       /* embassy dark blue */
  color: white;
  padding: 20px 0;
  width: 100%;               /* full width bar */
}

.footer-links {
  text-align: center;
  margin-bottom: 15px;
}

.footer-links a {
  color: white;
  text-decoration: none;
  margin: 0 12px;
  font-size: 0.85rem;        /* smaller font like embassy site */
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-social {
  background-color: darkblue;
  margin-left: 10px;
}

.footer-social a {
  margin: 0 8px;
  display: inline-block;
}

.footer-social img {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  filter: brightness(0) invert(1); /* ensures icons show white on dark blue */
}

.form-actions {
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-right: 10px;
}

.clear-btn {
    margin-right: 25px;
    margin-left: 470px;
}

a i {
  font-size: 24px;       /* size of the icon */
  color: #1DA1F2;        /* official Twitter blue */
  transition: color 0.3s ease;
}

a i:hover {
  color: #0d8ddb;        /* darker blue on hover */
}
