
 /* ===== HERO SECTION ===== */
    .tamesanas-pakalpojumi .hero {
      position: relative;
      text-align: center;
      color: white;
      height: 50vh; /* hero bloka augstums */
      overflow: hidden;
    }

    .tamesanas-pakalpojumi .hero-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .tamesanas-pakalpojumi .hero::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.4); /* tumšs overlay, tekstam salasāmība */
      z-index: 1;
    }

    .tamesanas-pakalpojumi .hero-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      z-index: 2; /* virs overlay */
    }
     .tamesanas-pakalpojumi .hero-content h1 {
      font-size: 3rem;      /* lielāks virsraksts */
      font-weight: 800;     /* biezāks teksts */
      text-shadow: 0 3px 8px rgba(0,0,0,0.5); /* lai izceltos uz attēla */
      margin-bottom: 20px;
    }

    .tamesanas-pakalpojumi .hero-content p.lead {
      font-size: 1.5rem;    /* lielāks apraksts */
      font-weight: 500;
      line-height: 1.4;     /* ērtāk lasāms */
      text-shadow: 0 2px 5px rgba(0,0,0,0.4);
    }

    /* ===== PRICING CARDS ===== */
    .tamesanas-pakalpojumi .pricing-card {
      border: 2px solid #333;   /* tumsāks rāmis */
      border-radius: 12px;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .tamesanas-pakalpojumi .pricing-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }
       /* Tikai pricing section virsraksts un apraksts */
    h2.mb-4 {
      font-size: 3rem;      /* lielāks virsraksts */
      font-weight: 800;     /* biezāks */
      color: #222;
      margin-bottom: 15px;
    }

    .tamesanas-pakalpojumi p.mb-5.text-muted {
      font-size: 1.5rem;    /* lielāks apraksts */
      font-weight: 500;
      color: #444;
      line-height: 1.4;
    }
     
    /* ===== CONTACT SECTION ===== */
   .tamesanas-pakalpojumi .contact-section {
      padding: 80px 0;   /* palielina augšējo un apakšējo atstarpi */
      background-color: #f8f9fa; /* opcija: gaišāks fons */
    }

    .tamesanas-pakalpojumi .contact-section h3 {
      font-size: 2rem;   /* lielāks virsraksts */
      font-weight: 700;
      margin-bottom: 20px;
    }

    .tamesanas-pakalpojumi .contact-section p {
      font-size: 1.25rem; /* nedaudz lielāks apraksts */
      line-height: 1.5;
      margin-bottom: 40px;
    }

    .tamesanas-pakalpojumi .contact-section .contact-item {
      font-size: 1.1rem; /* lielāki ikonu + tekstu elementi */
      margin-bottom: 20px;
    }
     
 
