* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  background: #f5f5f5;
  color: #333;
}

/* Header Styling */
.main-header {
  background-color: brown;
  padding: 15px 0;
  color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo a {
  color: #ffcc00;
  font-size: 1.8rem;
  font-weight: bold;
  text-decoration: none;
}

.logo span {
  color: white;
}

/* Navigation Menu */
.navbar ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.navbar a:hover {
  color: #ffcc00;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .navbar ul {
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
  }
}

/* Hero Section Styles */
.hero-section {
  height: 100vh;
background-color: cornflowerblue;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Dark overlay for readability */
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 20px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.hero-btn {
  padding: 12px 30px;
  background-color: #ffcc00;
  color: #000;
  font-weight: bold;
  text-decoration: none;
  border-radius: 5px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #e6b800;
}

.logo {
  font-size: 1.5em;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: 500;
}

.hero {
  background: url('https://source.unsplash.com/1600x600/?insurance,happy-family') center/cover no-repeat;
  color: skyblue;
  padding: 100px 50px;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
}

.hero p {
  margin: 20px 0;
  font-size: 1.2em;
}

.btn {
  background-color: #ff6600;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
}

/* Features Section */
.features {
  text-align: center;
  padding: 60px 20px;
    background-color: azure;
}

.features-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 40px;
    background-color: azure;
}

.feature {
  background: white;
  padding: 30px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.feature img {
  width: 60px;
  margin-bottom: 20px;
}

/* Plans Section */
.plans {
  background-color: #e7f0f7;
  padding: 60px 20px;
  text-align: center;
}

.plan-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.card {
  background-color: white;
  padding: 40px;
  width: 250px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.card.popular {
  border: 2px solid #ff5500;
}

.card h3 {
  margin-bottom: 15px;
}

.card p {
  margin-bottom: 10px;
}


/* Paragraph with Image Section */
.info-section {
  padding: 60px 20px;
  background-color: #f5f9fc;
  font-family: 'Segoe UI', sans-serif;
}

.info-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

/* Image Style */
.info-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Text Content */
.info-text {
  flex: 1;
  min-width: 280px;
}

.info-text h2 {
  font-size: 2rem;
  color: #003366;
  margin-bottom: 20px;
  text-align: center;
}

.info-text p {
  font-size: 1rem;
  text-align: center;
  color: #333;
}

/* Responsive Design */
@media (max-width: 768px) {
  .info-container {
    flex-direction: column;
    text-align: center;
  }

  .info-text h2 {
    font-size: 1.6rem;
  }

  .info-text p {
    font-size: 0.95rem;
  }
}

.quote-form {
  background-color: #f0f8ff;
  padding: 50px;
  text-align: center;
}

.quote-form h2 {
  color: #004080;
  margin-bottom: 30px;
}

form {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
}

form label {
  display: block;
  margin: 15px 0 5px;
  font-weight: bold;
}

form input,
form select,
form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #aaa;
  border-radius: 5px;
}

form button {
  margin-top: 20px;
  background-color: #004080;
  color: white;
  padding: 12px 25px;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  cursor: pointer;
}

form button:hover {
  background-color: #003060;
}

.form-response {
  margin-top: 20px;
  font-weight: bold;
  color: green;
}

/* Footer Styles */
.site-footer {
  background-color: #003366;
  color: #fff;
  padding: 40px 20px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
}

.footer-section {
  flex: 1 1 300px;
  margin: 20px;
}

.footer-section h3,
.footer-section h4 {
  margin-bottom: 15px;
  color: #ffcc00;
}

.footer-section p,
.footer-section a {
  color: #ddd;
  line-height: 1.6;
  text-decoration: none;
  font-size: 15px;
}

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #555;
  font-size: 14px;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    margin: 10px 0;
  }
}