/* Automation Page Styles */

.hero {
    background: #eaf1fb;
    padding: 100px 40px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: #222;
  }
  
  .hero p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: #444;
  }
  
  /* Premade Tools Section */
  .premade-tools {
    background: #ffffff;
    padding: 60px 40px;
    border-top: 1px solid #eee;
    text-align: center;
  }
  
  .premade-tools .section-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #222;
  }
  
  .premade-tools .section-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 40px;
  }
  
  .premade-tools .overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
  }
  
  .premade-tools .overview-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: transform 0.3s ease;
  }
  
  .premade-tools .overview-card:hover {
    transform: translateY(-4px);
  }
  
  .premade-tools .overview-card img.service-icon {
    width: 150px;
    height: 150px;
    margin-bottom: 16px;
  }
  
  .premade-tools .overview-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
  }
  
  .premade-tools .overview-card p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 14px;
  }
  
  .premade-tools .cta-link {
    font-weight: 600;
    text-decoration: none;
    color: #007bff;
    transition: color 0.2s;
  }
  
  .premade-tools .cta-link:hover {
    text-decoration: underline;
  }
  
  /* Services Section */
  .services-section {
    background-color: #f9f9fb;
    padding: 60px 40px;
    text-align: center;
    border-top: 1px solid #eee;
  }
  
  .services-section .section-title {
    font-size: 2rem;
    color: #222;
    margin-bottom: 10px;
  }
  
  .services-section .section-subtitle {
    font-size: 1.05rem;
    color: #555;
    max-width: 720px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
  }
  
  .services-section .overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .services-section .overview-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
    text-align: left;
    transition: transform 0.3s ease;
  }
  
  .services-section .overview-card:hover {
    transform: translateY(-4px);
  }
  
  .services-section .overview-card img.service-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 16px;
  }
  
  .services-section .overview-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: #222;
  }
  
  .services-section .overview-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
  }
  
  /* CTA */
  .cta {
    padding: 60px 40px;
    background: linear-gradient(to right, #007bff, #00bfff);
    text-align: center;
    color: white;
  }
  
  .cta h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  
  .cta p {
    font-size: 1.05rem;
    margin-bottom: 30px;
  }
  
  .cta button {
    background-color: white;
    color: #007bff;
    padding: 14px 28px;
    border: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .cta button:hover {
    background-color: #f1f1f1;
  }