/* Base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
}

body {
  color: #222;
  line-height: 1.6;
}

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

/* Navbar */
.navbar {
  background-color: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

/* Logo image */
.logo-img {
  height: 40px;
  width: auto;
}

/* Services graphic section */
.services-graphic {
  background-color: #ffffff;
  padding: 3rem 0;
  text-align: center;
}

.services-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* About section */
.about {
  background-color: #f9fafb;
  padding: 4rem 0;
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

/* Responsive layout for about section */
@media (min-width: 768px) {
  .about-container {
    flex-direction: row;
  }
}

.about-text {
  flex: 1;
  text-align: left;
}

.about-text h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.about-text p {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.6;
}

.about-image-wrapper {
  flex: 1;
  text-align: center;
}

.about-img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  text-decoration: none;
}

.nav-links a {
  margin-left: 1.5rem;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.nav-links a:hover {
  color: #1f2937;
}

/* Hero section */
.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #01579b, #00acc1);
  color: #fff;
  min-height: 60vh;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-content p {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  background-color: #ff9800;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 0.375rem;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.cta-btn:hover {
  background-color: #fb8c00;
}

/* Features section */
.features {
  padding: 4rem 0;
  background-color: #f9fafb;
}

.features h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-card {
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.icon-wrapper {
  font-size: 2rem;
  color: #00acc1;
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.feature-card p {
  font-size: 1rem;
  color: #4b5563;
}

/* Pricing section */
.pricing {
  padding: 4rem 0;
}

.pricing h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 2rem;
  font-weight: 700;
}

.pricing-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.plan-card {
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 2rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.plan-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.plan-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #00acc1;
}

.plan-features {
  list-style-type: none;
  margin-bottom: 1.5rem;
  color: #4b5563;
}

.plan-features li {
  margin-bottom: 0.5rem;
}

.plan-btn {
  background-color: #00acc1;
  color: #fff;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.plan-btn:hover {
  background-color: #0097a7;
}

/* Contact section */
.contact {
  padding: 4rem 0;
  background-color: #f9fafb;
  text-align: center;
}

.contact h2 {
  margin-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
}

.contact p {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  color: #4b5563;
}

/* Footer */
.footer {
  background-color: #111827;
  color: #9ca3af;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.875rem;
}