/* === Global Styles === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #fff;
  color: #333;
}

.container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
}

/* === Header === */
header {
  background-color: #003366;
  color: white;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

header nav a {
  color: white;
  text-decoration: none;
  margin: 0 15px;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav a:hover {
  color: #ffcc00;
}

/* === Search Bar === */
.search-form {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-form input {
  padding: 6px 10px;
  border: none;
  border-radius: 4px;
  width: 180px;
}

.search-form button {
  background-color: #ffcc00;
  border: none;
  padding: 6px 10px;
  border-radius: 4px;
  cursor: pointer;
}

.search-form button:hover {
  background-color: #e6b800;
}

/* === Hero Section === */
.hero h2 {
  font-size: 2em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.1em;
  margin-bottom: 20px;
}

.btn {
  background-color: #003366;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #002244;
}

/* === Blog Card === */
.blog-card {
  background-color: #f9f9f9;
  padding: 20px;
  margin-bottom: 20px;
  border-left: 5px solid #003366;
  border-radius: 8px;
  transition: box-shadow 0.3s ease;
}

.blog-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-card h3 a {
  color: #003366;
  text-decoration: none;
}

.blog-card h3 a:hover {
  text-decoration: underline;
}

/* === Sidebar === */
.sidebar-section {
  background-color: #f1f1f1;
  padding: 15px;
  border-radius: 6px;
}

.sidebar-section h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
  color: #003366;
}

.sidebar-section ul {
  list-style: none;
}

.sidebar-section ul li {
  margin: 8px 0;
}

.sidebar-section ul li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.sidebar-section ul li a:hover {
  color: #003366;
}

/* === Newsletter === */
.newsletter h2 {
  font-size: 1.5em;
  color: #003366;
}

.newsletter input {
  padding: 10px;
  margin-top: 10px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.newsletter .btn {
  margin-left: 10px;
}

/* === Footer === */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 30px 0;
  font-size: 0.9em;
}

footer a {
  color: #ffcc00;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
/* Contact Form */
.contact-section {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  margin-top: 20px;
}

.contact-section form {
  display: flex;
  flex-direction: column;
}

.contact-section label {
  margin-bottom: 5px;
  font-weight: 600;
}

.contact-section input,
.contact-section textarea {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.contact-section .btn {
  background-color: #0056b3;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
}

.contact-section .btn:hover {
  background-color: #003f88;
}
/* ===== General Layout ===== */
body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Header ===== */
header {
  background-color: #0056b3;
  color: #fff;
  padding: 15px 0;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

header nav a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}

header nav a:hover {
  text-decoration: underline;
}

/* ===== Search Form ===== */
.search-form {
  display: flex;
  align-items: center;
  gap: 5px;
}

.search-form input[type="text"] {
  padding: 8px;
  border: none;
  border-radius: 4px;
  width: 180px;
}

.search-form button {
  padding: 8px 10px;
  background-color: #004494;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
  background-color: #e3f2fd;
  padding: 60px 20px 30px;
  text-align: center;
}

.hero h2 {
  font-size: 2rem;
  margin: 0;
  color: #0056b3;
}

/* ===== About Page Content ===== */
.privacy-content {
  background-color: #fff;
  padding: 40px 20px;
  border-radius: 8px;
  margin-top: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.privacy-content h3 {
  color: #0056b3;
  margin-top: 25px;
}

.privacy-content p {
  margin: 10px 0;
}

.privacy-content ul {
  padding-left: 20px;
}

.privacy-content li {
  margin: 8px 0;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .header-flex h1{
    font-size: 20px;
  }

  .search-form {
    width: 100%;
  }

  .search-form input[type="text"] {
    width: 100%;
  }

  .hero h2 {
    font-size: 1.5rem;
  }
  header nav a {
  margin: 0 5px;
  font-weight: 500;
}

  .privacy-content {
    padding: 25px 15px;
  }
}


/* === Responsive === */
@media (max-width: 768px) {
  .header-flex {
    flex-direction: column;
    gap: 10px;
  }
  .header-flex h1{
    font-size: 20px;
  }
  header nav a {
  margin: 0 5px;
  font-weight: 500;
}
  .search-form input {
    width: 100%;
  }

  .content {
    flex-direction: column;
  }
}
/* === Responsive === */
.contact-section {
    padding: 20px 15px;
    margin: 20px 10px;
    box-shadow: none;
  }

  .contact-section form {
    flex-direction: column;
  }

  .contact-section input,
  .contact-section textarea {
    font-size: 1rem;
    width: 100%;
  }

  .contact-section .btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
  }
