.home-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Content Wrapper - updated with industry standard max-width */
.content-wrapper {
  max-width: 1200px; /* Industry standard */
  margin: 20px auto; /* Center the container */
  background-color: white;
  border-radius: 25px;
  padding: 40px;
  box-sizing: border-box;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: calc(100% - 40px); /* Maintain side margins on smaller screens */
  overflow: visible;
}

/* Hero Section - full width background with centered content */
.hero-section {
  width: 100%;
  height: 600px;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  margin: 20px 0;
}

.hero-content {
  max-width: 1200px; /* Match container width */
  padding: 20px;
  z-index: 2;
  width: calc(100% - 40px); /* Consistent with content wrapper */
  margin: 0 auto;
}

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-top: 25px;
}

.home-site-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  margin-left: 15px;
}

.home-site-title p {
  margin: 0;
  padding: 0;
  font-weight: bold;
  font-size: 21px;
  color: white;
}

.hero-logo {
  width: 120px;
  height: auto;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: white;
}

.hero-content p {
  font-size: 35px;
  color: white;
  line-height: 1.4;
}

/* Section Titles */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.2rem;
  color: #222;
  margin-bottom: 12px;
  font-weight: 700;
}

.section-title p {
  font-size: 1.1rem;
  color: #666;
  max-width: 700px;
  margin: 0 auto;
}

/* View Options - Card Style */
.view-options-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 30px;
  width: 100%;
}

.view-option-card {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  background-color: #f8f8f8;
}

.view-option-link {
  text-decoration: none;
  cursor: pointer;
  display: block;
}

.view-option-img {
  position: relative;
  height: 300px;
  overflow: hidden;
  width: 100%;
}

.view-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.view-option-card:hover .view-card-img {
  transform: scale(1.05);
}

.view-option-content {
  padding: 20px;
  background-color: white;
  text-align: center;
}

.view-option-content h3 {
  font-size: 1.8rem;
  color: #222;
  margin: 10px 0;
}

.view-option-content p {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #666;
}

.btn-view {
  display: inline-block;
  background-color: #ff385c;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: background-color 0.3s;
}

.btn-view:hover {
  background-color: #e31c5f;
}

/* Features Section */
.features-section {
  background-color: white;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.feature-card {
  background-color: #f8f8f8;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-icon {
  width: 60px;
  height: 60px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.feature-icon svg {
  width: 50px;
  height: 50px;
  color: #0066cc;
}

.feature-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #222;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
  text-align: center;
}

/* Services Statistics Section */
.services-stats {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background-color: #f8f9fa;
  border-radius: 16px;
}

.services-stats h3 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 25px;
  font-weight: 600;
  line-height: 1.4;
}

.services-stats .btn-primary {
  margin-top: 10px;
}

/* Services Categories Section */
.services-section {
  background-color: white;
}

.services-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 30px;
}

.category-card {
  background-color: #f8f8f8;
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  text-decoration: none;
  color: #333;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.category-card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

.category-icon {
  width: 70px;
  height: 70px;
  background-color: #0066cc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.category-icon svg {
  width: 35px;
  height: 35px;
  color: white;
}

.category-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin: 0;
}

.view-all-services {
  text-align: center;
  margin-top: 40px;
}

/* CTA Section - full width background with centered content */
.cta-section {
  width: 100%;
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  text-align: center;
  margin: 0 auto;
}

.cta-content {
  max-width: 1200px; /* Match container width */
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
  font-size: 1.2rem;
  color: white;
  margin-bottom: 40px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, background-color 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background-color: #0066cc;
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: #004d99;
}

.btn-secondary {
  background-color: white;
  color: #333;
  border: none;
}

.btn-secondary:hover {
  background-color: #f7f7f7;
}

/* Responsive Adjustments */
@media (max-width: 1240px) {
  .content-wrapper {
    margin: 20px;
    width: calc(100% - 40px);
  }

  .hero-content {
    width: calc(100% - 40px);
  }
}

@media (max-width: 992px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-content p {
    font-size: 2rem;
  }

  .content-wrapper {
    padding: 30px;
  }

  .section-title h2 {
    font-size: 1.8rem;
  }

  .hero-content,
  .cta-content {
    max-width: 800px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: 500px;
  }

  .hero-content h1 {
    font-size: 2.2rem;
  }

  .features-grid,
  .services-categories {
    grid-template-columns: 1fr;
  }

  .view-options-container {
    grid-template-columns: 1fr;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .content-wrapper {
    padding: 20px;
    margin: 15px;
    width: calc(100% - 30px);
  }

  .hero-content,
  .cta-content {
    max-width: 100%;
    padding: 15px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }

  .hero-content p {
    font-size: 1.5rem;
  }

  .content-wrapper {
    padding: 20px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }
}

/* =========================================
   PRICING SECTION
   ========================================= */

.pricing-section {
  padding: 0;
  margin: 0;
}

.pricing-container {
  max-width: 1200px; /* Industry standard */
  margin: 20px auto; /* Center the container */
  background-color: white;
  border-radius: 25px;
  padding: 40px;
  box-sizing: border-box;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  width: calc(100% - 40px); /* Maintain side margins on smaller screens */
  overflow: visible;
}

.pricing-header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing-header h2 {
  font-size: 2.5rem;
  color: #1a202c;
  margin-bottom: 16px;
  font-weight: 700;
}

.pricing-header p {
  font-size: 1.125rem;
  color: #4a5568;
  max-width: 600px;
  margin: 0 auto;
}

.pricing-user-type {
  margin-bottom: 50px;
}

.pricing-user-type h3 {
  text-align: center;
  font-size: 1.875rem;
  color: #2d3748;
  margin-bottom: 30px;
  font-weight: 600;
}

/* =========================================
   PRICING PLANS - INDEPENDENT STYLES
   ========================================= */

.pricing-plans {
  display: grid;
  gap: 30px;
  margin-top: 30px;
  justify-items: center;
}

.pricing-plans-two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 800px;
  margin: 30px auto 0;
}

.pricing-plans-three {
  grid-template-columns: repeat(3, 1fr);
}

.pricing-plan-card {
  background: #e9e9e9;
  border-radius: 16px;
  padding: 30px;
  border: 2px solid #e9ecef;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 350px;
  height: 450px;
  box-shadow: none;
  cursor: default;
}

.pricing-plan-card:hover {
  background: #e9e9e9;
  border-color: #e9ecef;
  transform: none;
  box-shadow: none;
}

.pricing-plan-header {
  text-align: center;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 2px solid #f8f9fa;
}

.pricing-plan-header h3 {
  font-size: 1.6rem;
  color: #222;
  margin-bottom: 10px;
  font-weight: 700;
}

.pricing-price {
  font-size: 1.2rem;
  color: #222;
  font-weight: 800;
  margin-bottom: 5px;
}

.pricing-period {
  font-size: 1rem;
  color: #666;
  font-weight: 400;
}

.pricing-plan-features {
  flex-grow: 1;
  margin-bottom: 25px;
}

.pricing-feature {
  display: flex;
  align-items: center;
  padding: 8px 0;
  color: #495057;
  font-size: 1rem;
}

.pricing-feature-check {
  color: #28a745;
  margin-right: 12px;
  font-weight: bold;
  font-size: 16px;
}

/* Equal size cards regardless of content */
.pricing-plans-two .pricing-plan-card,
.pricing-plans-three .pricing-plan-card {
  width: 350px;
  height: 450px;
  display: flex;
  flex-direction: column;
}

/* Responsive breakpoints for pricing plans */
@media (max-width: 1200px) {
  .pricing-plans-three {
    grid-template-columns: 1fr;
  }

  .pricing-plans-two {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

@media (max-width: 768px) {
  .pricing-plan-card {
    width: 100%;
    max-width: 350px;
    height: auto;
    min-height: 400px;
  }

  .pricing-plans-two .pricing-plan-card,
  .pricing-plans-three .pricing-plan-card {
    width: 100%;
    max-width: 350px;
    height: auto;
    min-height: 400px;
  }
}

@media (max-width: 1200px) {
  .pricing-container {
    margin: 20px;
    width: calc(100% - 40px);
  }
}

@media (max-width: 992px) {
  .pricing-container {
    padding: 30px;
  }

  .pricing-header h2 {
    font-size: 1.8rem;
  }

  .pricing-user-type h3 {
    font-size: 1.5rem;
  }
}

@media (max-width: 768px) {
  .pricing-container {
    padding: 20px;
    margin: 15px;
    width: calc(100% - 30px);
  }

  .pricing-header h2 {
    font-size: 2rem;
  }

  .pricing-user-type h3 {
    font-size: 1.5rem;
  }

  .pricing-section {
    padding: 60px 0;
  }
}

@media (max-width: 480px) {
  .pricing-container {
    padding: 20px;
  }
}
