/* --- Websites Page Specific Styles --- */

.hero {
    background: #f1f5fb;
    padding: 100px 40px;
    text-align: center;
  }
  
  .hero h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: #222;
  }
  
  .hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.6;
  }
  
  .services-section {
    background: #ffffff;
    padding: 60px 40px;
    border-top: 1px solid #eee;
    text-align: center;
  }
  
  .services-section .section-title {
    font-size: 2rem;
    color: #222;
    margin-bottom: 10px;
  }
  
  .services-section .section-subtitle {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 40px;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .services-section .overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
  }
  
  .services-section .overview-card {
    background: white;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 6px 20px 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 h3 {
    font-size: 1.2rem;
    color: #007bff;
    margin-bottom: 10px;
  }
  
  .services-section .overview-card p {
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
  }
  
  .cta {
    background: linear-gradient(to right, #007bff, #00bfff);
    color: white;
    padding: 60px 40px;
    text-align: center;
  }
  
  .cta h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
  }
  
  .cta p {
    font-size: 1.05rem;
    margin-bottom: 24px;
  }
  
  .cta-btn {
    background: white;
    color: #007bff;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .cta-btn:hover {
    background: #e6e6e6;
  }
  