*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial,sans-serif;
}

/* Header */

.site-header{
    background:#D9232D;
    position:relative;
    z-index:999;
}

.header-container{
    max-width:1200px;
    margin:auto;
    padding:12px 20px;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo img{
    max-width:100px;
    display:block;
}

/* Navigation */

.nav-menu{
    display:flex;
    align-items:center;
    gap:35px;
    list-style:none;
}

.nav-menu li{
    position:relative;
}

.nav-menu a{
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:500;
    display:block;
}

/* Dropdown */

.dropdown-toggle{
    display:flex;
    align-items:center;
    gap:6px;
}

.arrow{
    transition:.3s;
}

/* Desktop */

@media(min-width:992px){

    .dropdown:hover>.dropdown-menu{
        display:block;
    }

    .dropdown:hover .arrow{
        transform:rotate(180deg);
    }

}

.dropdown-menu{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    width:330px;
    background:#fff;
    list-style:none;
    border-radius:8px;
    box-shadow:0 10px 25px rgba(0,0,0,.15);
    padding:8px 0;
    max-height:420px;
    overflow-y:auto;
}

.dropdown-menu li{
    width:100%;
}

.dropdown-menu li a{
    color:#222;
    padding:12px 18px;
    white-space:normal;
}

.dropdown-menu li a:hover{
    background:#D9232D;
    color:#fff;
}

.dropdown-menu::-webkit-scrollbar{
    width:6px;
}

.dropdown-menu::-webkit-scrollbar-thumb{
    background:#D9232D;
}

/* Mobile */

.menu-toggle{
    display:none;
    flex-direction:column;
    cursor:pointer;
}

.menu-toggle span{
    width:28px;
    height:3px;
    margin:4px 0;
    background:#fff;
}

@media(max-width:991px){

    .menu-toggle{
        display:flex;
    }

    .nav-menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#D9232D;
        flex-direction:column;
        align-items:flex-start;
        gap:0;
        max-height:0;
        overflow:hidden;
        transition:.4s;
    }

    .nav-menu.active{
        max-height:90vh;
        overflow-y:auto;
    }

    .nav-menu li{
        width:100%;
        border-top:1px solid rgba(255,255,255,.15);
    }

    .nav-menu li a{
        width:100%;
        padding:15px 20px;
    }

    .dropdown-menu{
        position:static;
        width:100%;
        background:#b61d22;
        border-radius:0;
        box-shadow:none;
        padding:0;
        max-height:none;
    }

    .dropdown.active>.dropdown-menu{
        display:block;
    }

    .dropdown.active>.dropdown-toggle .arrow{
        transform:rotate(180deg);
    }

    .dropdown-menu li{
        border:none;
    }

    .dropdown-menu li a{
        color:#fff;
        padding:13px 40px;
        border-top:1px solid rgba(255,255,255,.08);
    }

    .dropdown-menu li a:hover{
        background:#99161b;
    }

}


/*==========================
  COMPLETE GUIDE SECTION
==========================*/

.guide-section{
    padding:0px 15px;
    background:#fff;
}

.guide-container{
    max-width:1150px;
    margin: 20px auto;
    border:1px solid #e8e8e8;
    box-shadow:0 2px 10px rgba(0,0,0,.06);
    padding:35px 28px;
}

.guide-container h1{
    font-size:36px;
    font-weight:700;
    color:#3A3E50;
    margin-bottom:28px;
    line-height:1.2;
}

.guide-container h2{
    font-size:28px;
    font-weight:700;
    color:#3A3E50;
    margin-bottom:28px;
    line-height:1.2;
}

.guide-container h3{
    font-size:22px;
    font-weight:700;
    color:#3A3E50;
    margin-bottom:28px;
    line-height:1.2;
}

.guide-container h4{
    font-size:20px;
    font-weight:700;
    color:#3A3E50;
    margin-bottom:28px;
    line-height:1.2;
}



.guide-container p{
    font-size:16px;
    color:#2d2d2d;
    line-height:1.6;
    margin-bottom:20px;
}

.important-note{
    margin-top:10px;
    font-size:20px;
}

.important-note strong{
    color:#000;
    font-weight:700;
}

.center-img{
    text-align:center;
    margin:30px 0;
}

.center-img img{
    display:inline-block;
    width:100%;
    max-width:500px;
    height:auto;
    border-radius:10px;
}

/* Tablet */
@media (max-width:991px){
    .center-img{
        margin:25px 0;
    }

    .center-img img{
        max-width:300px;
    }
}

/* Mobile */
@media (max-width:767px){
    .center-img{
        margin:20px 0;
        padding:0 10px;
    }

    .center-img img{
        width:100%;
        max-width:100%;
        border-radius:8px;
    }
}

/*==========================
      TABLET
==========================*/

@media (max-width:991px){

.guide-container{
    padding:18px 22px;
}

.guide-container h1{
    font-size: 28px;
}
.guide-container h2{
    font-size: 26px;
}

.guide-container p{
    font-size:15px;
    line-height:1.7;
}

}

/*==========================
      MOBILE
==========================*/

@media (max-width:767px){

.guide-section{
    padding:10px 12px;
}

.guide-container{
    padding:12px 18px;
    border-radius:5px;
}

.guide-container h1{
    font-size:26px;
    margin-bottom:18px;
}

.guide-container h2{
    font-size:24px;
    margin-bottom:18px;
}

.guide-container p{
    font-size:15px;
    line-height:1.8;
    margin-bottom:18px;
}

.important-note{
    font-size:15px;
}

}

/* ===== List Style ===== */

.guide-container ul{
    margin:20px 0;
    padding-left:28px;
}

.guide-container ul li{
    font-size:16px;
    line-height:1.7;
    color:#2d2d2d;
    margin-bottom:8px;
}

.guide-container ul li strong{
    color:#000;
    font-weight: 600;
}

.guide-container ol{
    margin:10px 0;
    padding-left:28px;
}

.guide-container ol li{
    font-size:16px;
    line-height:1.7;
    color:#2d2d2d;
    margin-bottom:8px;
}

/* ===== Tablet ===== */

@media (max-width:991px){

    .guide-container ul li{
        font-size:16px;
        line-height:1.7;
    }

}

/* ===== Mobile ===== */

@media (max-width:767px){

    .guide-container ul{
        padding-left:22px;
    }

    .guide-container ul li{
        font-size:15px;
        line-height:1.7;
        margin-bottom:12px;
    }

}

/*==========================
        FAQ SECTION
==========================*/

.faq-section{
    padding:40px 15px;

}

.faq-container{
    max-width:1150px;
    margin:auto;
    background:#fff;
    border:1px solid #e8e8e8;
    border-radius:12px;
    padding:30px;
    box-shadow:0 2px 10px rgba(0,0,0,.06);
}

.faq-container h2{
    font-size:28px;
    color:#1f3b5d;
    margin-bottom:25px;
    font-weight:700;
}

.faq-item{
    border:1px solid #e2e2e2;
    border-radius:8px;
    background:#f8f9fc;
    margin-bottom:15px;
    overflow:hidden;
}

.faq-item summary{
    list-style:none;
    cursor:pointer;
    display:flex;
    align-items:center;
    padding:18px 20px;
}

.faq-item summary::-webkit-details-marker{
    display:none;
}

.faq-item summary::before{
    content:"▶";
    color:#e1262c;
    font-size:16px;
    margin-right:12px;
    transition:.3s;
}

.faq-item[open] summary::before{
    transform:rotate(90deg);
}

.faq-item h3{
    font-size:22px;
    color:#e1262c;
    font-weight:700;
    margin:0;
}

.faq-answer{
    padding:0 20px 20px 48px;
}

.faq-answer p{
    font-size:17px;
    line-height:1.8;
    color:#333;
}

/*========== Tablet ==========*/

@media(max-width:991px){

.faq-container{
    padding:25px;
}

.faq-container h2{
    font-size:34px;
}

.faq-item h3{
    font-size:20px;
}

.faq-answer p{
    font-size:16px;
}

}

/*========== Mobile ==========*/

@media(max-width:767px){

.faq-section{
    padding:20px 10px;
}

.faq-container{
    padding:18px;
}

.faq-container h2{
    font-size:28px;
    margin-bottom:18px;
}

.faq-item summary{
    padding:15px;
}

.faq-item summary::before{
    margin-right:10px;
}

.faq-item h3{
    font-size:18px;
    line-height:1.5;
}

.faq-answer{
    padding:0 15px 15px 40px;
}

.faq-answer p{
    font-size:15px;
    line-height:1.7;
}

}

/* ===== INFO TABLE ===== */

.info-table-wrap {
  width: 100%;
  max-width: 900px;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.info-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  min-width: 600px;
}

.info-table th,
.info-table td {
  padding: 16px 20px;
  text-align: left;
  border: 1px solid #e5e5e5;
  font-size: 16px;
  line-height: 1.6;
}

.info-table th {
  background:#D9232D;
  color: #fff;
  font-weight: 700;
}

.info-table tr:nth-child(even) {
  background: #f8f9fc;
}

.info-table tr:hover {
  background: #f1f5ff;
  transition: 0.3s ease;
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .info-table {
    min-width: 100%;
  }

  .info-table th,
  .info-table td {
    padding: 12px 14px;
    font-size: 14px;
  }
}

/* ===== AUTHOR SECTION ===== */

.author-section {
  width: 100%;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
}

.author-card {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 18px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.author-image {
  flex: 0 0 280px;
  text-align: center;
}

.author-image img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto;
  border: 6px solid #f3f3f3;
}

.author-content {
  flex: 1;
}

.author-content h1 {
  margin: 0 0 20px;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.author-content p {
  margin: 0 0 18px;
  font-size: 1rem;
  line-height: 1.8;
}

.author-content p:last-child {
  margin-bottom: 0;
}

/* ===== TABLET ===== */

@media (max-width: 992px) {
  .author-card {
    gap: 30px;
    padding: 30px;
  }

  .author-image {
    flex: 0 0 220px;
  }

  .author-image img {
    width: 220px;
    height: 220px;
  }

  .author-content h1 {
    font-size: 1.75rem;
  }
}

/* ===== MOBILE ===== */

@media (max-width: 768px) {
  .author-card {
    flex-direction: column;
    text-align: center;
    padding: 25px 20px;
    gap: 25px;
  }

  .author-image {
    flex: unset;
  }

  .author-image img {
    width: 180px;
    height: 180px;
  }

  .author-content h1 {
    font-size: 1.5rem;
  }

  .author-content p {
    font-size: 15px;
    line-height: 1.7;
  }
}

.site-footer{
    background:#D9232D;
    padding:25px 15px;
    text-align:center;
}

.site-footer p{
    margin:10px 0;
    color:#fff;
    line-height:1.8;
}

.site-footer a{
    color:#fff;
    text-decoration:none;
    margin:0 5px;
}

.site-footer a:hover{
    text-decoration:underline;
}