    .top-section {
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 50px 0;
        background: #fff;
    }

    .top-inner {
        width: 85%;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .left-image img {
        width: 500px;
    }

    .details-box {
        background: #004b94;
        padding: 30px;
        border-radius: 8px;
        color: #fff;
        width:fit-content;
    }

    .breadcrumb {
        font-size: 14px;
        margin-bottom: 10px;
        opacity: 0.9;
    }

    .title {
        font-size: 28px;
        font-weight: bold;
        margin-bottom: 10px;
	width:fit-content;
    }

    .small-title {
        margin-bottom: 20px;
        font-size: 16px;
	width:fit-content;
    }

    .btns {
        display: inline-block;
        padding: 10px 20px;
        background: #f5b400;
        color: black;
        text-decoration: none;
        border-radius: 4px;
        margin-right: 10px;
        font-weight: bold;
        cursor: pointer;
    }
.btns:hover
{
	color:#000;
}
.btns:active
{
	color:#004b94;
}
.btns:focus
{
	color:#004b94;
}
	
	.gq{margin-left:10px;}

    /* Blue Section */
    .blue-section {
        background: #004b94;
        color: #fff;
        text-align: center;
        padding: 60px 0;
        margin-top: 40px;
    }

    .blue-section h2 {
        margin: 20px 0;
		color: #fff;
    }

    /* Tabs */
    .tabs {
        margin-top: 30px;
        display: flex;
        justify-content: center;
    }

    .tabs button {
        padding: 10px 30px;
        border: none;
        cursor: pointer;
        background: #e9b33d;
        margin: 0 5px;
        font-weight: bold;
        border-radius: 4px;
    }

    /* Popup Form Styling */
    .popup-bg {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        backdrop-filter: blur(3px);
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    .popup-box {
        background: #fff;
        padding: 25px;
        border-radius: 8px;
        width: 350px;
        border-top: 5px solid #004b94;
    }

    .popup-box h3 {
        margin-top: 0;
        color: #004b94;
    }

    .popup-box input, 
    .popup-box textarea {
        width: 100%;
        padding: 10px;
        margin-top: 8px;
        border: 1px solid #ccc;
        border-radius: 4px;
    }

    .btns-submit {
        background: #004b94;
        color: white;
        padding: 10px;
        border: none;
        width: 100%;
        margin-top: 15px;
        border-radius: 4px;
        font-size: 16px;
        cursor: pointer;
    }

    .close-btns {
        float: right;
        cursor: pointer;
        font-size: 20px;
        color: #333;
    }
	
	:root{
    --blue-bg: #004b94;    /* background behind section */
    --gold: #e9b33d;       /* gold header */
    --light-gray: #e9e9ea; /* gray row bg */
    --text-dark: #08324a;
  }

	
	.spec-section{
    background: var(--blue-bg);
    color: #fff;
    padding: 28px 16px 48px;
    text-align: center;
  }

  .spec-section h1{
    margin: 0 0 18px;
    font-size: 32px;
    letter-spacing: 1px;
    font-weight: 700;
  }

  .spec-wrap{
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
  }

  .spec-table{
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    overflow: hidden;
    border-radius: 4px;
  }

  .spec-table thead tr{
    background: var(--gold);
    color: var(--text-dark);
    text-align: left;
    font-weight: 700;
    font-size: 16px;
  }

  .spec-table thead th{
    padding: 14px 18px;
    border-right: 1px solid rgba(0,0,0,0.08);
	text-align: center;
  }
  /* remove last column border on header */
  .spec-table thead th:last-child{ border-right: none; text-align: center; }

  .spec-table tbody tr{
    background: var(--light-gray);
    color: var(--text-dark);
  }

  .spec-table tbody tr:nth-child(even){
    background: #f6f6f6; /* slight alternation */
  }

  .spec-table td{
    padding: 14px 18px;
    border-right: 1px solid rgba(0,0,0,0.06);
    vertical-align: middle;
  }
  .spec-table td:last-child{ border-right: none; text-align: center; }

  /* first column label bold */
  .spec-table td.label{ font-weight: 700; }

  /* small unit cell style */
  .spec-table td.unit{
    width: 140px;
    text-align: center;
    font-weight: 600;
    color: #333;
  }

  /* responsive */
  @media (max-width:700px){
    .spec-table thead{ display:none; }
    .spec-table, .spec-table tbody, .spec-table tr, .spec-table td{
      display:block;
      width:100%;
    }
    .spec-table tr{ margin-bottom:12px; background: var(--light-gray); }
    .spec-table td{
      border-right:none;
      padding:10px 12px;
    }
    .spec-table td.label{ background: rgba(0,0,0,0.03); border-radius:6px; }
    .spec-table td::before{
      content: attr(data-label);
      display:block;
      font-weight:600;
      margin-bottom:6px;
      color:#555;
    }
  }