/* Base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Segoe UI', sans-serif;
  color: #222;
  background: #f9f9f9;
}
a {
  color: #0077cc;
  text-decoration: none;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: auto;
  padding: 40px 0;
}

/* Header */
.header {
  background: #000;
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo img {
  height: 50px;
}
nav ul {
  display: flex;
  gap: 25px;
  list-style: none;
}
nav a {
  color: white;
  font-weight: bold;
  font-size: 1rem;
}
nav a:hover {
  text-decoration: underline;
}

/* Hero Section */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.hero-slider {
  height: 100%;
}
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.slide.active {
  opacity: 1;
  z-index: 1;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  text-align: center;
  z-index: 2;
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.hero-text p {
  font-style: italic;
  font-size: 1.2rem;
}

/* Section Styles */
.section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 30px;
  color: #111;
}
.section p,
.section ul,
.section li {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 15px;
}
.about-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}
.about-section {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}

/* News Links */
.news-links li {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 10px;
}
.news-links a {
  font-weight: 500;
  color: #0077cc;
}
.news-links a:hover {
  text-decoration: underline;
}

/* Social Icons */
.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}
.social-icons img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Contact Form */
form {
  max-width: 600px;
  margin: auto;
}
form input,
form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
form button {
  width: 100%;
  padding: 12px;
  background: #000;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}
form button:hover {
  background: #333;
}

/* Footer */
.footer {
  background: #000;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
