/* Growth Page Styles */
.growth-page h1, .growth-page h2 {
  color: #2c3e50;
  margin-top: 60px;
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
}

.growth-page h2:first-of-type {
  margin-top: 40px;
}

.growth-page h3 {
  color: #3498db;
  margin-top: 30px;
  margin-bottom: 15px;
  font-size: 22px;
}

/* Experience Logos Section */
.experience-logos {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.experience-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 200px;
}

.logo-container {
  width: 180px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.experience-card img {
  max-width: 100%;
  max-height: 60px;
  object-fit: contain;
}

.experience-card .role {
  font-weight: 600;
  color: #3498db;
  margin-bottom: 5px;
}

.experience-card .years {
  font-size: 14px;
  color: #64748b;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.service-card {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-card h3 {
  margin-top: 0 !important;
  color: #2c3e50;
  margin-bottom: 15px;
  font-size: 22px;
}

.service-card p {
  color: #505965;
  margin-bottom: 0;
}

.service-card img {
  max-width: 100%;
  border-radius: 5px;
  margin-bottom: 20px;
  height: 200px;
  width: 100%;
  object-fit: cover;
  background-color: #f5f5f7;
}

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

.growth-page blockquote {
  background-color: rgba(16, 185, 129, 0.1);
  border-radius: 8px;
  padding: 25px;
  margin: 40px 0;
  position: relative;
}

.growth-page blockquote p {
  font-style: italic;
  color: #2c3e50;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.growth-page blockquote p:last-child {
  font-weight: 600;
  margin-bottom: 0;
}

.growth-page ul {
  padding-left: 20px;
  margin-bottom: 20px;
}

.growth-page li {
  margin-bottom: 10px;
  position: relative;
}

.growth-page ul ul {
  margin-top: 10px;
}

.growth-page p {
  margin-bottom: 20px;
  line-height: 1.6;
}

.growth-page strong {
  color: #3498db;
  font-weight: 600;
}

/* Package styling */
.packages-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 30px 0;
}

.package-card {
  background-color: #f9fafb;
  border-radius: 8px;
  padding: 25px;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.package-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.07);
}

.package-card h3 {
  margin-top: 0 !important;
  font-size: 20px;
  margin-bottom: 15px;
}

.package-card p {
  color: #505965;
  flex-grow: 1;
  margin-bottom: 15px;
}

.price-label {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background-color: #3498db;
  color: white !important;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.2s ease;
  letter-spacing: 0.2px;
  box-shadow: 0 2px 6px rgba(52, 152, 219, 0.25);
  margin: 20px 0;
}

.cta-button:hover {
  background-color: #2980b9;
  box-shadow: 0 4px 8px rgba(52, 152, 219, 0.35);
  transform: translateY(-1px);
  text-decoration: none;
}

.top-cta {
  text-align: center;
  margin: 30px 0 50px;
}

.top-cta .cta-button {
  font-size: 18px;
  padding: 15px 30px;
  background-color: #10b981;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
}

.top-cta .cta-button:hover {
  background-color: #0d9669;
  box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
}

.final-cta {
  text-align: center;
  margin: 60px 0 40px;
  padding: 40px;
  background-color: #f8f9fa;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.final-cta .cta-button {
  margin: 0;
  font-size: 18px;
  padding: 15px 30px;
}

/* Client Logos */
.logos {
  text-align: center;
  margin: 30px 0;
}

.logo-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 20px 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.logo {
  max-width: 120px;
  max-height: 55px;
  width: auto;
  height: auto;
  opacity: 0.8;
  transition: opacity 0.3s, transform 0.3s;
  margin: 12px 20px;
  display: inline-block;
  object-fit: contain;
}

.logo:hover {
  opacity: 1;
  transform: translateY(-2px);
}

/* Section Dividers */
.section-divider {
  height: 2px;
  background: linear-gradient(to right, rgba(52, 152, 219, 0.2), rgba(52, 152, 219, 0.05), rgba(52, 152, 219, 0.2));
  margin: 60px 0;
  border: none;
}

/* Process Steps */
.process-step {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  margin-bottom: 30px;
  align-items: center;
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #3498db;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
}

.step-content h3 {
  margin-top: 0 !important;
  margin-bottom: 10px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .packages-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .growth-page blockquote {
    padding: 20px;
  }
  
  .growth-page blockquote p {
    font-size: 16px;
  }
  
  .process-step {
    grid-template-columns: 50px 1fr;
    gap: 15px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 576px) {
  .packages-container {
    grid-template-columns: 1fr;
  }
}
