/* Reset & Basic Setup */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  background-color: #f5f7fa;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Styles */
header {
  background: linear-gradient(45deg, #2980b9, #6dd5fa);
  color: #fff;
  padding: 20px 0;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

header h1 {
  margin-bottom: 10px;
  font-weight: 500;
}

header nav ul {
  display: flex;
  justify-content: center;
  list-style: none;
}

header nav ul li {
  margin: 0 15px;
}

header nav ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: color 0.3s ease;
}

header nav ul li a:hover {
  color: #f0f0f0;
}

/* Section Styles */
.section {
  padding: 60px 0;
}

/* Home Section with Background Image */
.home-section {
  background: url('https://via.placeholder.com/1200x400') center/cover no-repeat;
  color: #fff;
  text-align: center;
  position: relative;
}

.home-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

.home-section .container {
  position: relative;
  z-index: 1;
}

.home-section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.home-section p {
  font-size: 1.2rem;
}

/* General Section Text Styling */
.about-section, .content-section, .contact-section {
  background-color: #fff;
  border-top: 1px solid #eee;
}

.section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-weight: 500;
}

.container p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 20px auto;
  text-align: center;
}

/* Footer */
footer {
  background-color: #2980b9;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer p {
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  header nav ul {
    flex-direction: column;
  }
  
  header nav ul li {
    margin: 10px 0;
  }
}
