/* Start custom CSS for html, class: .elementor-element-66674b5 */body {
    font-family: 'Inter', sans-serif;
    color: #334155;
    line-height: 1.5;
    overflow-x: hidden;
    width: 100%;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-02183ab *//* Blog Section - No boxes */
.blog-section {
  padding: 60px 0;
}

.section-badge {
  display: inline-block;
  background: #fef2ee;
  color: #e0451e;
  padding: 6px 16px;
  border-radius: 60px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.section-header h2,
.features-header h2,
.faq-header h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0f263b;
  margin-bottom: 10px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 40px 0;
}

.blog-image {
  height: 200px;
  overflow: hidden;
  border-radius: 16px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content {
  padding: 20px 0;
}

.blog-meta {
  display: flex;
  gap: 15px;
  font-size: 0.85rem;
  color: #4a6782;
  margin-bottom: 10px;
}

.blog-meta i {
  color: #e0451e;
  margin-right: 4px;
}

.blog-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0f263b;
  margin-bottom: 10px;
}

.blog-content h3 a {
  color: #0f263b;
  text-decoration: none;
}

.blog-content h3 a:hover {
  color: #e0451e;
}

.blog-excerpt {
  color: #2d4a6e;
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.blog-link {
  color: #e0451e;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-link:hover {
  gap: 10px;
}

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

.view-all a {
  color: #e0451e;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 30px;
  border: 2px solid rgba(224,69,30,0.2);
  border-radius: 60px;
}

.view-all a:hover {
  background: #e0451e;
  color: white;
  border-color: #e0451e;
}

/* Features Section */
.features-section {
  padding: 60px 0;
  background: #f8fafd;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  text-align: center;
}

.feature-icon {
  width: 70px;
  height: 70px;
  background: #fef2ee;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #e0451e;
  margin: 0 auto 20px;
}

.feature-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0f263b;
  margin-bottom: 10px;
}

.feature-card p {
  color: #2d4a6e;
  margin-bottom: 15px;
}

.feature-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(224,69,30,0.1);
  color: #e0451e;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
}

/* FAQ Section */
.faq-section {
  padding: 60px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  padding: 0 0 20px 0;
}

.faq-question {
  font-size: 1.1rem;
  font-weight: 700;
  color: #0f263b;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-question i {
  color: #e0451e;
}

.faq-answer {
  color: #4a6782;
  padding-left: 26px;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #0f263b, #1a3349);
  padding: 60px 0;
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

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

.cta-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0451e;
  color: white;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 60px;
  font-weight: 600;
  transition: all 0.3s;
}

.cta-btn:hover {
  background: #b33618;
}

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

@media (max-width: 768px) {
  .blog-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }
}/* End custom CSS */