/* === Global Styles === */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9f9f9;
  margin: 024  padding: 0;
}

/* === Navigation Bar === */
nav {
  background-color: #009fdb;
  padding: 10px 15px;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
  padding: 8px 10px;
  white-space: nowrap;
}

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

/* === Main Container === */
.container {
  max-width: 768px;
  margin: 30px auto;
  background-color: white;
  padding: 40px 60px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* === Header === */
.header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.header i {
  font-size: 40px;
  color: #007bff;
}

.header-title {
  font-size: 18px;
  font-weight: bold;
  color: #007bff;
    text-align: center;
}


  
  .header-title span {
    font-size: 24px;
  }


/* === News Section === */
.news-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 30px 20px;
  box-sizing: border-box;
}

.news-header {
  text-align: center;
  margin-bottom: 20px;
}

  .news-header h1 {
    font-size: 22px;
    margin-top: 10px;
  }

.widgets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  box-sizing: border-box;
}

.widget-box {
  flex: 1 1 100%;
  max-width: 100%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  box-sizing: border-box;
}

/* === Embeds === */
iframe {
  width: 100%;
  min-height: 600px; /* Adjust height to suit your widget */
  border: none;
  display: block;
  box-sizing: border-box;
}

/* === Responsive === */
@media (max-width: 768px) {
  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 10px 5px;
  }

  .container {
    padding: 30px 20px;
  }
  
 /* === Normalize spacing for mobile device === */
 * {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}
}