.seo-process {
  background: #f9f9f9;
  padding: 80px 0;
  font-family: 'Segoe UI', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 32px;
  color: #222;
  font-weight: 700;
  margin-bottom: 10px;
}

.section-header p {
  font-size: 16px;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.process-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.process-card:hover {
  box-shadow: 0 6px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.process-card img {
  height: 80px;
  margin-bottom: 20px;
}

.process-card h3 {
  font-size: 20px;
  color: #222;
  margin-bottom: 15px;
  font-weight: 400;
}

.process-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

.internal-links {
  text-align: center;
  margin-top: 40px;
}

.internal-links p {
  font-size: 16px;
  color: #444;
}

.internal-links a {
  color: #007bff;
  text-decoration: none;
  font-weight: 500;
}

.internal-links a:hover {
  text-decoration: underline;
}
.seo-process .section-header{
    text-align: center !important;
    margin-bottom: 40px !important;
}

.seo-process .section-header h2{
    color:#092a49!important;
}

.paragraph{
    margin-top:10px!important;
}

.section-header h2::after{
    display:none;
}

.cta-section {
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  padding: 80px 20px;
  text-align: center;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background-color: #ffffff;
  color: #1e3c72;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
  background-color: #f1f1f1;
  color: #2a5298;
}

.btn-whatsapp {
  background-color: #ffffff!important;
  color: black;
  border: 2px solid #1a9e3a;
  box-shadow: 0 0 10px #1a9e3a;
  border-radius: 50px;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  transition: box-shadow 0.3s ease;
}

.btn-whatsapp:hover {
  background-color: #1a9e3a!important; /* Keep same green */
  box-shadow: 0 0 20px #1a9e3a; /* Slight stronger glow on hover */
  color:white!important;
}


/* Pulse animation with stronger green glow */
.pulse {
  animation: pulseGlow 1.8s infinite;
}

@keyframes pulseGlow {
  0% {
    box-shadow: 0 0 0 0 rgba(26, 158, 58, 0.7);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(26, 158, 58, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(26, 158, 58, 0);
  }
}

.cta-section h2{
    color:white!important;
}

