
/* Steps Section Container */
.steps-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
}

.steps-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #222;
}

.steps-section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 40px;
  color: #555;
}

/* Container for all steps */
.steps-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Each individual step */
.step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Step Number Styling */
.step-number {
  flex-shrink: 0;
  background-color: #0077cc;
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Step Content Styling */
.step-content h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #333;
}

.step-content p {
  margin: 5px 0 0;
  font-size: 1rem;
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .step-number {
    margin-bottom: 10px;
  }
}

  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
  }
  
  .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
  }
  
  .card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin: 20px;
    overflow: hidden;
    width: 300px;
    transition: transform 0.3s ease-in-out;
  }
  
  .card:hover {
    transform: translateY(-5px);
  }
  
  .card-content {
    padding: 20px;
  }
  
  .card-title {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .card-description {
    font-size: 1rem;
    color: #555;
  }

  .icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
    fill: #333;
  }

    .container {
      width: 90%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px;
    }
    section {
      background: #fff;
      margin-bottom: 20px;
      padding: 20px;
      border-radius: 5px;
    }
    h1, h2, h3 {
      margin-top: 0;
    }
    ul, ol {
      margin-left: 20px;
    }
    /* Responsive Styles */
    @media (max-width: 768px) {
      .container {
        padding: 10px;
      }
      section {
        padding: 15px;
      }
    }
    
    /* Wrap your article sections in a container with the "article-content" class for these styles to apply */
.article-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #ffffff;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

/* Headings */
.article-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
  line-height: 1.2;
  font-weight: bold;
  color: #222;
}

.article-content h2 {
  font-size: 2.2rem;
  margin: 1.5rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #eaeaea;
  color: #333;
}

.article-content h3 {
  font-size: 1.8rem;
  margin: 1.5rem 0 1rem;
  color: #444;
}

/* Paragraphs */
.article-content p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #555;
}

/* Lists */
.article-content ul,
.article-content ol {
  margin: 1rem 0 1rem 1.5rem;
  padding-left: 1rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

/* Inline Elements */
.article-content span {
  font-weight: 500;
}

/* Emphasis and Strong Text */
.article-content strong {
  font-weight: bold;
  color: #000;
}

.article-content em {
  font-style: italic;
  color: #555;
}

/* Blockquotes */
.article-content blockquote {
  border-left: 4px solid #ddd;
  padding-left: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: #666;
}

/* Code Snippets */
.article-content code {
  background-color: #f4f4f4;
  padding: 0.2em 0.4em;
  border-radius: 3px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.95rem;
}

/* Anchor Tags */
.article-content a {
  color: #0077cc;
  text-decoration: none;
}

.article-content a:hover {
  text-decoration: underline;
}

/* Images */
.article-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .article-content {
    padding: 15px;
  }
  .article-content h1 {
    font-size: 2.2rem;
  }
  .article-content h2 {
    font-size: 1.8rem;
  }
  .article-content h3 {
    font-size: 1.5rem;
  }
  .article-content p {
    font-size: 1rem;
  }
}

/* Container for the entire feature section */
.feature-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: #333;
}

/* Section title and description */
.feature-section h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 10px;
  color: #222;
}

.feature-section p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 30px;
  color: #555;
}

/* Feature Cards Container */
.feature-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

/* Individual Card Styles */
.feature-cards .card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 20px;
  flex: 1 1 calc(25% - 20px);
  min-width: 250px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-cards .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Enhanced Icon Styling */
.feature-cards .card .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 15px;
  width: 80px;
  height: 80px;
  background-color: #f7f7f7;
  border-radius: 50%;
  margin-left: auto;
  margin-right: auto;
  transition: background-color 0.3s;
}

.feature-cards .card:hover .icon {
  background-color: #e0eaff;
}

.feature-cards .card .icon svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: #0077cc;
  stroke-width: 2;
}

/* Card Content */
.feature-cards .card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #333;
}

.feature-cards .card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.5;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .feature-cards {
    flex-direction: column;
    align-items: center;
  }
  .feature-cards .card {
    flex: 1 1 100%;
    max-width: 500px;
  }
}


    /* styles_index.css */

/* Unique container style */
.container-index {
    max-width: 600px;
    margin: 50px auto;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

/* Unique heading style */
.heading-index {
    font-size: 24px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

/* Unique textarea style */
.textarea-index {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    border: 2px solid #ccc;
    border-radius: 8px;
    resize: vertical;
}

/* Unique submit button style */
.submit-button-index {
    display: block;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button-index:hover {
    background-color: #0056b3;
}
