/* Global Styles */
body {
  font-family: Arial, sans-serif;
  background-color: #F1F5F8;
  margin: 0;
  padding: 0;
  color: #0A1A2F;
}

/* Header */
header {
  background-color: #0A1A2F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}

.logo {
  max-height: 60px;
}

nav a {
  color: #F1F5F8;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  color: #C1D8E8;
}

/* Hero Section */
.hero {
  background-color: #C1D8E8;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  color: #0A1A2F;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  background-color: #16314C;
  color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background-color: #0A1A2F;
}

/* Features */
.features {
  background-color: #F1F5F8;
  padding: 60px 20px;
  text-align: center;
}

.features h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: #0A1A2F;
}

.features ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
}

.features li {
  font-size: 1.1rem;
  padding: 10px 0;
}

/* Footer */
footer {
  background-color: #0A1A2F;
  color: #F1F5F8;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}



form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1.5rem;
  background-color: #f4f4f4;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
form h2 {
  text-align: center;
}


.about-hero {
  background: url('partinful.png') no-repeat center center fixed;
  background-size: cover;
  color: white;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
}

.overlay-box {
  background: rgba(0, 0, 0, 0.6);
  padding: 1rem 2rem;
  max-width: 320px;
  margin-bottom: 1rem;
  position: absolute;
  top: 20px;
  left: 20px;
  border-radius: 8px;
  text-align: left;
}

.overlay-box h2,
.overlay-box h3,
.overlay-box p {
  margin: 0;
  color: #fff;
}

.about-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 2rem;
  border-radius: 8px;
  max-width: 800px;
  margin-top: 120px;
}

.about-text p, .about-text ul, .about-text h4 {
  color: #f0f0f0;
}

.about-text ul {
  padding-left: 1.5rem;
}

.about-text li {
  margin-bottom: 0.5rem;
}


.about-hero {
  background: #f0f4f8;
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.about-content {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  max-width: 1400px;
  width: 100%;
  align-items: flex-start;
}

.text-section {
  flex: 1;
}

.about-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.2);
}

.overlay-box {
  background: #333;
  color: white;
  padding: 1rem 2rem;
  margin-bottom: 1rem;
  border-radius: 8px;
}

.about-text {
  background: #666;
  padding: 2rem;
  border-radius: 8px;
  color: white;
}

.about-text ul {
  padding-left: 1.5rem;
}

.about-text li {
  margin-bottom: 0.5rem;
}

@media (max-width: 900px) {
  .about-content {
    flex-direction: column;
  }
}
