/* Global Styles */
body {
  font-family: 'Poppins', 'Open Sans', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fafafa;
  color: #333;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff, #f0f4f8);
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 10;
}

.header-logo {
  height: 50px;
}

.burger-menu {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  cursor: pointer;
}

.site-nav {
  display: flex;
  gap: 20px;
}

.site-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: #4CAF50;
  transition: width 0.3s;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav a:hover {
  color: #4CAF50;
}

/* Responsive Navigation */
@media (max-width: 768px) {
  .burger-menu {
    display: block;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    right: 20px;
    background-color: #ffffff;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }

  .site-nav.open {
    display: flex;
  }
}

/* Hero Section */
.hero-section {
  padding: 100px 20px;
  text-align: center;
  background: linear-gradient(135deg, #e0f7e9, #ffffff);
  margin-bottom: 40px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.hero-section h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.hero-section p {
  font-size: 18px;
  color: #555;
}

/* Main Section */
main {
  padding: 40px 20px;
}

/* Intro Text Section */
.intro-text-section {
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.intro-text {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
}

/* Features Section */
.features-section {
  background-color: #ffffff;
  padding: 60px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  margin-bottom: 40px;
}

.features-section .section-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #4CAF50;
}

.feature-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.feature-item {
  flex: 1 1 calc(50% - 20px);
  background-color: #f9f9f9;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  text-align: center;
  margin-bottom: 20px;
}

.feature-title {
  font-size: 20px;
  margin-bottom: 10px;
  color: #333;
}

.feature-description {
  font-size: 16px;
  color: #777;
}

/* Offerings List */
.offerings-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.offerings-list li {
  background-color: #e0f7e9;
  margin-bottom: 10px;
  padding: 12px;
  border-radius: 6px;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.contact-form button {
  background-color: #4CAF50;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

.contact-form button:hover {
  background-color: #45a049;
}

/* About Text */
.about-text {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  line-height: 1.7;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Footer */
.site-footer {
  text-align: center;
  padding: 20px;
  background-color: #f5f5f5;
  font-size: 14px;
  color: #777;
  margin-top: 40px;
  box-shadow: 0 -1px 5px rgba(0,0,0,0.1);
}

.footer-created-by {
  margin-top: 5px;
}

.footer-created-by a {
  color: #4CAF50;
  text-decoration: none;
}

.footer-created-by a:hover {
  text-decoration: underline;
}
