
/* Scoped styles for strategies section only */
.strategies-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    font-family: Arial, sans-serif;
  }
  
  .strategies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .strategies-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .strategies-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
  }
  
  .strategies-subtitle {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
  }
  
  .highlight-text {
    color: #ff5722;
  }
  
  .strategies-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .strategies-boxes {
    flex: 1;
    min-width: 280px;
  }
  
  .strategies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .strategy-box {
    padding: 20px;
    border-radius: 8px;
    height: 100%;
  }
  
  .strategy-box-yellow {
    background-color: #ffd600;
  }
  
  .strategy-box-gray {
    background-color: #eeeeee;
  }
  
  .box-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .icon-circle {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  
  .box-number {
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0;
  }
  
  .box-title {
    text-align: center;
    font-weight: bold;
    margin: 0;
    font-size: 1.1rem;
  }
  
  .red-text {
    color: #ff5722;
  }
  
  .strategies-details {
    flex: 2;
    min-width: 300px;
  }
  
  .details-box {
    background-color: #ffffff;
    border-left: 5px solid #ff5722;
    padding: 25px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .details-title {
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.3rem;
  }
  
  .details-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .details-image {
    margin-right: 20px;
    max-width: 150px;
    border-radius: 8px;
  }
  
  .details-text p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .rocket-icon {
    text-align: right;
    color: #ff5722;
    font-size: 2rem;
  }
  
  /* Icons for strategy boxes */
  .icon-img {
    width: 30px;
    height: 30px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .strategies-content {
      flex-direction: column;
    }
  
    .strategies-boxes,
    .strategies-details {
      width: 100%;
    }
  
    .details-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .details-image {
      margin-right: 0;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .strategies-grid {
      grid-template-columns: 1fr;
    }
  }

  
/* @@@@@@@@@@@@@ */
.service-icon {
    width: 60px;
    height: 60px;
    background-color: #FF5722;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 24px;
    margin-right: 20px;
}

.service-section {
    padding: 20px;
    margin-bottom: 20px;
}

.service-header {
    background-color: #FF5722;
    color: white;
    padding: 10px 20px;
    margin-bottom: 15px;
    display: inline-block;
}

.service-content {
    padding: 15px;
    border-left: 3px solid #FF5722;
}

.service-bullet {
    color: #FF5722;
    margin-right: 10px;
    font-size: 1.2em;
}

.service-item {
    margin-bottom: 20px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .service-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-right: 15px;
    }
}




.process-container {
    padding: 50px 15px;
    background-color: #f8f9fa;
}

.process-title {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.process-step {
    margin-bottom: 40px;
    text-align: center;
}

.process-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.process-icon:before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px dashed #ccc;
    border-radius: 50%;
}

.process-step-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.process-step-description {
    font-size: 14px;
    line-height: 1.4;
    color: #555;
    max-width: 200px;
    margin: 0 auto;
}

.blue-title {
    color: #4285F4;
}

.green-title {
    color: #34A853;
}

.yellow-title {
    color: #FBBC05;
}

.teal-title {
    color: #009688;
}

.purple-title {
    color: #673AB7;
}

.pink-title {
    color: #E91E63;
}

.blue-bg {
    background-color: #e8f0fe;
}

.green-bg {
    background-color: #e6f4ea;
}

.yellow-bg {
    background-color: #fef7e6;
}

.teal-bg {
    background-color: #e0f2f1;
}

.purple-bg {
    background-color: #f3e5f5;
}

.pink-bg {
    background-color: #fce4ec;
}

.blue-button {
    background-color: #4285F4;
    color: white;
    padding: 8px 15px;
    margin-bottom: 20px;
    display: inline-block;
}

@media (max-width: 768px) {
    .process-step {
        margin-bottom: 30px;
    }
}


.strategies-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 26px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
}

.highlight-text {
    color: #FF5722;
    font-weight: 700;
}

.strategy-box {
    height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    transition: transform 0.3s ease;
}

.strategy-box:hover {
    transform: translateY(-5px);
}

.box-yellow {
    background-color: #FFE066;
}

.box-gray {
    background-color: #E0E0E0;
}

.box-number {
    position: absolute;
    top: 10px;
    left: 10px;
    font-weight: 700;
    font-size: 16px;
}

.strategy-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.strategy-text {
    font-weight: 600;
    text-align: center;
    font-size: 14px;
}

.feature-content {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.feature-image {
    max-width: 200px;
    margin-right: 20px;
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
}

.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

.whatsapp-icon {
    width: 60px;
    height: 60px;
}

@media (max-width: 768px) {
    .feature-content {
        flex-direction: column;
    }

    .feature-image {
        margin-right: 0;
        margin-bottom: 20px;
        max-width: 150px;
    }
}


.strategy-box {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.strategy-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.section-title {
    position: relative;
    display: inline-block;
}

.highlight-text {
    color: #ff5722;
    font-weight: 700;
}

.rocket-animation {
    animation: rocket-move 3s infinite alternate;
}

p {
    font-size: 16px;
}

@keyframes rocket-move {
    0% {
        transform: translateY(0);
    }

    100% {
        transform: translateY(-15px);
    }
}

/*  */


/* Scoped styles for strategies section only */
.strategies-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    font-family: Arial, sans-serif;
  }
  
  .strategies-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  .strategies-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .strategies-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
  }
  
  .strategies-subtitle {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #333;
  }
  
  .highlight-text {
    color: #ff5722;
  }
  
  .strategies-content {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .strategies-boxes {
    flex: 1;
    min-width: 280px;
  }
  
  .strategies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .strategy-box {
    padding: 20px;
    border-radius: 8px;
    height: 100%;
  }
  
  .strategy-box-yellow {
    background-color: #ffd600;
  }
  
  .strategy-box-gray {
    background-color: #eeeeee;
  }
  
  .box-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  
  .icon-circle {
    background-color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  
  .box-number {
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0;
  }
  
  .box-title {
    text-align: center;
    font-weight: bold;
    margin: 0;
    font-size: 1.1rem;
  }
  
  .red-text {
    color: #ff5722;
  }
  
  .strategies-details {
    flex: 2;
    min-width: 300px;
  }
  
  .details-box {
    background-color: #ffffff;
    border-left: 5px solid #ff5722;
    padding: 25px;
    border-radius: 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  
  .details-title {
    font-weight: bold;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.3rem;
  }
  
  .details-content {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
  }
  
  .details-image {
    margin-right: 20px;
    max-width: 150px;
    border-radius: 8px;
  }
  
  .details-text p {
    margin-bottom: 15px;
    line-height: 1.6;
  }
  
  .rocket-icon {
    text-align: right;
    color: #ff5722;
    font-size: 2rem;
  }
  
  /* Icons for strategy boxes */
  .icon-img {
    width: 30px;
    height: 30px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 992px) {
    .strategies-content {
      flex-direction: column;
    }
  
    .strategies-boxes,
    .strategies-details {
      width: 100%;
    }
  
    .details-content {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .details-image {
      margin-right: 0;
      margin-bottom: 20px;
    }
  }
  
  @media (max-width: 576px) {
    .strategies-grid {
      grid-template-columns: 1fr;
    }
  }