 :root {
     --gold: #d9ac4f;
     --darkgold: #b8860b;
     --bg: #0b0b0b;
     --mid: #161616;
     --accent: #1e1e1e;
     --text: #fff;
 }

 * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 body {
     font-family: 'Poppins', sans-serif;
     background-color: var(--bg);
     color: var(--text);
     line-height: 1.8;
     overflow-x: hidden;
 }

 .container {
     max-width: 1200px;
     margin: auto;
 }

 header.myheader {
     background-color: #333332;
     box-shadow: 0 -3px 7px 0 #0000001a;
     position: relative;
 }

 .nav__data {
     position: relative;
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
 }

 .main-logo img {
     max-width: 131px;
 }

 .first-section {
     padding: 40px 0px 40px;
 }

 a {
     text-decoration: none;
 }

 .nav__menu {
     position: relative;
 }

 ul.menu-list {
     display: flex;
     align-items: center;
     justify-content: center;
     list-style: none;
 }

 li.menu-link {
     position: relative;
     padding: 7px 20px;
     z-index: 1;
     margin-left: 10px;
 }

 li.menu-link a {
     color: #d9ac4f;
     font-weight: 400;
     font-size: 17px;
     position: relative;
 }

 li.menu-link a:before {
     position: absolute;
     content: ' ';
     top: 0;
     right: 0;
     left: 0;
     bottom: 0;
     width: 0%;
     height: 100%;
     border-bottom: 1px solid #000;
     transition: all 0.5s ease-in-out;
     padding-top: 2px;
     z-index: -1;
 }

 li.menu-link a:hover:before {
     width: 100%;
 }

 .nav__toggle {
     position: relative;
     width: 34px;
     height: 34px;
     border: 1px solid #fff;
     display: none;
 }

 .nav__toggle .pizza,
 .close {
     position: absolute;
     max-width: max-content;
     max-height: max-content;
     inset: 0;
     margin: auto;
     font-size: 30px;
     color: #fff;
     transition: all 0.5s ease-in-out;
 }

 .close {
     opacity: 0;
     visibility: hidden;
 }

 .show-menu {
     transform: translateX(0%) !important;
     opacity: 1 !important;
     visibility: visible !important;
     z-index: 999 !important;
 }

 .show-icon .close {
     transform: rotate(90deg);
     opacity: 1;
     visibility: visible;
     position: absolute;
     left: -103px;
     z-index: 999 !important;
 }

 .show-icon .pizza {
     opacity: 1;
     transform: rotate(360deg);
 }

 /* Dropdown */
 .nav__menu ul.menu-list li.menu-link>ul.sunmenu {
     position: absolute;
     top: 100%;
     left: inherit;
     width: 250px;
     padding: 15px 0px;
     background: linear-gradient(90deg, #FAE59F 0%, #C4933F 100%);
     border-radius: 8px;
     opacity: 0;
     visibility: hidden;
     transform: rotateX(-90deg);
     transform-origin: top;
     transition: all 0.3s ease-in-out;
     box-shadow: 2px 2px 5px 1px rgba(0, 0, 0, 0.05), -2px 0px 5px 1px rgba(0, 0, 0, 0.05);
     z-index: 100;
     margin-left: -70px;
     margin-top: 8px;
     list-style: none;
 }

 .nav__menu ul.menu-list li.menu-link:hover ul.sunmenu {
     opacity: 1;
     visibility: visible;
     transform: rotateX(0deg);
 }

 .nav__menu ul.menu-list li.menu-link>ul>li>a {
     color: #000;
     text-decoration: none;
     font-size: 16px;
     font-weight: 500;
     padding-left: 20px;
     display: block;
     padding: 5px 20px;
 }

 header .button-group a {
     color: #d9ac4f;
     text-decoration: none;
     padding: 10px 20px;
     border: 1px solid #d9ac4f;
     border-radius: 5px;
     margin: 0px 6px;
 }



 .hero h1 {
     color: #d9ac4f;
     font-size: 48px;
     text-align: center;
 }

 h1 {
     color: #d9ac4f;
     font-size: 48px;
     text-align: center;
 }

 button {
     background-color: #d9ac4f;
     color: #000000;
     padding: 15px 30px;
     border: none;
     cursor: pointer;
     font-size: 18px;
 }

 button:hover {
     background: linear-gradient(90deg, #FAE59F 0%, #C4933F 100%);
 }



 /* ===== COMMON STRUCTURE ===== */
 section {
     padding: 15px 6%;
 }

 section .container {
     max-width: 1150px;
     margin: auto;
     background: rgba(255, 255, 255, 0.03);
     border-radius: 10px;
     padding: 15px 50px;
     box-shadow: 0 0 12px rgba(217, 172, 79, 0.5), 0 0 14px rgba(217, 172, 79, 0.2);
 }

 h2,
 h3 {
     color: var(--gold);
     margin-bottom: 14px;
     letter-spacing: .5px;
     font-weight: 600;
 }

 h2 {
     text-transform: uppercase;
     font-size: 26px;
     border-left: 4px solid var(--gold);
     padding-left: 10px;
 }

 h3 {
     font-size: 25px;
     padding-left: 15px;
     margin-top: 25px;
     border-left: 5px solid var(--gold);
 }

 p,
 li {
     font-size: 16px;
     color: #d3d3d3;
 }

 ul {
     margin: 15px 0 15px 25px;
     list-style: square;
 }

 .btn {
     display: inline-block;
     background: linear-gradient(135deg, var(--gold), var(--darkgold));
     color: #111 !important;
     font-weight: 700;
     padding: 9px 45px;
     border-radius: 35px;
     text-decoration: none !important;
     text-transform: uppercase;
     letter-spacing: .8px;
     transition: .3s;
     margin: 11px 0px;
 }

 .btn:hover {
     transform: scale(1.06);
     color: #fff;
     box-shadow: 0 0 25px rgba(217, 172, 79, .3);
 }

 /* ===== SECTION BACKGROUNDS ===== */
 .hero {
     background: radial-gradient(circle at top, var(--darkgold) 0%, var(--bg) 80%);
     text-align: center;
     padding: 80px 5%;
 }

 .sec-dark {
     background: var(--mid);
 }

 .sec-alt {
     background: var(--accent);
 }

 /* ===== HERO ===== */
 .hero h1 {
     background: linear-gradient(90deg, var(--gold), var(--darkgold));
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     font-weight: 900;
     font-size: 58px;
     text-transform: uppercase;
     letter-spacing: 2px;
     margin-bottom: 15px;
 }

 .hero p {
     color: #f7f7f7;
     max-width: 800px;
     margin: auto;
     font-size: 17px;
 }

 .hero .btn {
     margin-top: 30px;
 }

 /* -------Faq---Style---Code---- */
 .faq-item {
     border: 1px solid transparent;
     background: rgba(15, 15, 15, 0.9);
     border-radius: 10px;
     position: relative;
     overflow: hidden;
     margin-bottom: 12px;
 }

 .faq-item::before {
     content: "";
     position: absolute;
     top: -2px;
     left: -2px;
     right: -2px;
     bottom: -2px;
     background: linear-gradient(45deg, #d9ac4f, #b8860b, #d9ac4f);
     background-size: 400%;
     z-index: -1;
     border-radius: 12px;
     animation: borderGlow 6s linear infinite;
     color: #000;
 }

 .faq-item:hover h3 button {
     color: #000 !important;
     transition: all 0.5s ease-in-out;
 }

 @keyframes borderGlow {
     0% {
         background-position: 0% 50%;
     }

     50% {
         background-position: 100% 50%;
     }

     100% {
         background-position: 0% 50%;
     }
 }

 .faq-question {
     width: 100%;
     background: transparent;
     color: #fff;
     text-align: left;
     font-size: 18px;
     font-weight: bold;
     padding: 9px 20px;
     border: none;
     outline: none;
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .faq-answer {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.4s ease, padding 0.3s ease;
     padding: 0 20px;
     color: #fff;
     line-height: 1.6;
 }

 .faq-item.active .faq-answer {
     max-height: 500px;
     padding: 15px 20px;
 }

 .faq-icon {
     font-size: 20px;
     color: #d9ac4f;
     transition: transform 0.3s ease;
 }

 .faq-item.active .faq-icon {
     transform: rotate(45deg);
 }

 .footer {
     background-color: #1d1d1d;
     color: white;
     padding: 1rem 1rem 1rem;
     margin-top: 2.4rem;
 }

 .footer-section ul {
     padding: 0px;
     display: flex;
     justify-content: center;
     gap: 20px;
     list-style: none;
 }

 .footer-section ul li a {
     color: #d9ac4f;
 }

 .footer-content {
     max-width: 1200px;
     margin: 0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 2rem;
 }

 .footer-section h3 {
     color: #fff;
     font-size: 23px;
     text-decoration: underline;
 }

 .footer-bottom {
     text-align: center;
     padding: 12px 20px 1px 10px;
     border-top: 1px solid #fff;
     margin-top: 16px;
 }

 ol {
     margin-left: 0px;
     margin-bottom: 25px;
     color: var(--text);
 }

 ol li {
     margin-bottom: 12px;
     font-size: 16px;
 }


 /* ====== Base Table Style ====== */
 table {
     width: 100%;
     border-collapse: collapse;
     margin: 20px 0 30px;
     background: #111;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 0 20px rgba(217, 172, 79, 0.2);
 }

 th,
 td {
     border: 1px solid rgba(217, 172, 79, 0.4);
     padding: 12px 15px;
     text-align: center;
     font-size: 15px;
     color: #eee;
     word-break: break-word;
 }

 th {
     background: linear-gradient(135deg, var(--gold), var(--darkgold));
     color: #111;
     font-weight: 700;
     text-transform: capitalize;
 }

 /* ====== Hover Effect ====== */
 tr:hover td {
     background-color: rgba(217, 172, 79, 0.05);
     transition: 0.3s;
 }


 h4 {
     font-weight: 700;
     font-size: 20px;
     border-left: 5px solid var(--gold);
     padding-left: 15px;
     text-transform: uppercase;
 }

 blockquote {
     background: #1e1e1e;
     border-left: 4px solid #d9ac4f;
     padding: 1rem 1.5rem;
     margin: 1rem 0;
     font-style: italic;
 }

 .images-style img {
     max-width: 330px;
     border: 1px solid #d9ac4f;
     border-radius: 12px;
     padding: 6px;
 }

 .images-style {
     text-align: center;
     margin: 25px 0px 20px;
     background-color: #333332;
     padding: 27px 0px;
     border-radius: 15px;
 }

 /* -----Sticky----Style----Code-------- */
 .sticky {
     position: sticky !important;
     top: 0;
     width: 100%;
     z-index: 9999 !important;
     transition: all 0.6s ease-in-out;
     animation: smothScroll 1s forwards;
 }

 @keyframes smothScroll {
     0% {
         transform: translateY(-40px);
     }

     100% {
         transform: translateY(0px);
     }
 }

 .sticky+.site-content {
     padding-top: 102px;
 }

 header.sticky {
     background-color: #242424;
 }

 header.sticky ul li a {
     color: #ecc103;
 }

 header.sticky .button-group a {
     background: #000;
     color: #fff;
 }

 .for-top-left-border {
     border-top: 1px solid var(--gold);
     border-left: 1px solid var(--gold);
 }

 .toc-container {
     background: #111;
     border: 1px solid #d9ac4f;
     border-radius: 10px;
     width: 100%;
     max-width: 700px;
     margin: 40px 0;
     color: #fff;
     box-shadow: 0 0 15px rgba(255, 215, 0, 0.2);
     overflow: hidden;
     position: relative;
 }

 /* Hide checkbox */
 .toc-checkbox {
     display: none;
 }

 /* TOC Button */
 .toc-toggle {
     background-color: #edc104;
     color: #000;
     font-weight: 700;
     font-size: 1.1rem;
     width: 100%;
     display: block;
     text-align: left;
     padding: 12px 18px;
     border: none;
     cursor: pointer;
     transition: 0.3s;
     border-radius: 10px 10px 0 0;
 }

 .toc-toggle:hover {
     background: linear-gradient(180deg, #fed358 0%, #ffb472 100%);
     color: #111;
 }

 /* Hidden by default */
 .toc-content {
     display: none;
     background: #1a1a1a;
     padding: 10px 20px;
     border-top: 1px solid #d9ac4f;
 }

 /* Show when checkbox is checked */
 .toc-checkbox:checked~.toc-content {
     display: block;
 }

 .toc-content ul {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .toc-content li {
     padding: 8px 0;
     border-bottom: 1px solid rgba(255, 215, 0, 0.2);
 }

 .toc-content li:last-child {
     border-bottom: none;
 }

 .toc-content a {
     text-decoration: none;
     color: #d9ac4f;
     transition: 0.3s;
 }

 .toc-content a:hover {
     color: #fff;
     text-shadow: 0 0 5px #d9ac4f;
 }

 .top-margin {
     margin-top: 40px;
 }

 section .container a {
     color: #edc104;
     text-decoration: underline;
 }