/* Add these styles to your existing style.css file */

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    padding-top: 2rem;
    padding-right: 2rem;
    padding-bottom: 0rem;
    padding-left: 2rem;
    flex: 1;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
    border: none;
}

.btn-secondary {
    background-color: #e6effd;
    color: #2d46b9;
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(67, 97, 238, 0.3);
}

.btn-secondary:hover {
    background-color: #d5e6fc;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(214, 230, 252, 0.5);
}
    

.features-container {
    max-width: 1200px;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

/* Features Grid */
.features-grid {
  display: grid;
  /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
  gap: 20px;
  margin-bottom: 40px;
}

.features-section h2 {
  margin-top: 40px;
  margin-bottom: 25px;
  color: #333;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
}

.features-section h2:first-child {
  margin-top: 10px;
}

/* Feature Card */
.feature-card {
  background-color: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.feature-card p {
  color: #666;
  line-height: 1.5;
}

/* Call to Action Section */
.call-to-action {
  background-color: #f8f9fa;
  text-align: center;
  margin-top: 50px;
  padding: 1rem 0rem;
}

.call-to-action h2 {
  margin-bottom: 15px;
}

.call-to-action p {
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
    margin-bottom: 10px;
  }
}