* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.Reviewer-container{
      background-color: #fff;
  box-shadow: 0 6px 24px 0 rgba(30,43,62,0.20);
  margin: 25px 340px;
  padding: 20px;
  border-radius: 8px;
  max-width: 750px;
  

}
 h1 {
      color: #006d21;

    }
    p {
      font-size: 18px;
      line-height: 1.6;
      text-align: justify;
      margin: 8px 5px;
    }
    .button {
      display: inline-block;
      padding: 12px 20px;
      margin-top: 20px;
      background-color: #006d21;
      color: white;
      text-decoration: none;
      border-radius: 6px;
      font-size: 16px;
    }
    .button:hover {
      background-color: #004e17;
    }
    .pdf-link {
color: #0066cc;
  text-decoration: underline;
  word-break: keep-all;
  white-space: nowrap;
    }
/*footer container*/
.footer-container{
    background-color: rgb(0, 255, 98,0.1);
}
.footer{
    display: flex;
    padding: 30px 50px;
    margin-top: 20px;
    gap: 245px;
    
}
.footer h6{
    font-size: 13px;
      

}

.privacy-policy{
    text-decoration: none;
    color: #222;
}
/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 1001;
}

@media screen and (max-width: 768px) {
    .navbar {
        padding: 15px 0;
    }
    
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .left .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        background-color: #262626;
        position: absolute;
        top: 60px;
        left: 0;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    }
    
    .left .nav-links.active {
        display: flex;
    }
    
    .left .nav-links li {
        margin: 10px 0;
        margin-right: 0;
    }
    
    .mobile-nav-toggle {
        display: block;
    }
    
    .right {
        display: none;
    }
    
    .search-box {
        display: none;
    }
}
/* Responsive Logo Section */
@media screen and (max-width: 1024px) {
    .logo {
        padding: 40px 30px;
        height: auto;
        flex-wrap: wrap;
        gap: 20px;
    }

    .left-group {
        gap: 20px;
        justify-content: flex-start;
    }

    .main-text h1 {
        font-size: 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 20px;
        margin-top: 20px;
    }
}

@media screen and (max-width: 768px) {
    .logo {
        margin-top: 60px;
        padding: 30px 20px;
        flex-direction: column;
        text-align: center;
        gap: 25px;
        height: auto;
    }

    .left-group {
        flex-direction: column;
        gap: 15px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .institute-logo {
        width: 70px;
    }

    .main-text h1 {
        font-size: 20px;
        line-height: 1.3;
        text-align: center;
    }
    
  .cta-buttons {
display: none
    }
    
    .btn {
display: none
    }
}

@media screen and (max-width: 479px) {
    .logo {
        padding: 20px 15px;
        margin-top: 60px;
        gap: 20px;
    }

    .main-text h1 {
        font-size: 24px;
    }

    .institute-logo {
        width: 60px;
    }
      .cta-buttons {
display: none
    }
    
    .btn {
display: none
    }
}
/* Responsive Reviewer Container */
@media screen and (max-width: 1200px) {
    .Reviewer-container {
        margin: 25px 200px;
        max-width: 700px;
    }
}

@media screen and (max-width: 1024px) {
    .Reviewer-container {
        margin: 25px 100px;
        max-width: 600px;
    }
}

@media screen and (max-width: 768px) {
    .Reviewer-container {
        margin: 20px 40px;
        max-width: 100%;
        padding: 15px;
    }
    
    h1 {
        font-size: 24px;
        text-align: center;
    }
    
    p {
        font-size: 16px;
        margin: 8px 0;
        text-align: left;
    }
}

@media screen and (max-width: 479px) {
    .Reviewer-container {
        margin: 15px 20px;
        padding: 12px;
    }
    
    h1 {
        font-size: 22px;
    }
    
    p {
        font-size: 15px;
        line-height: 1.5;
    }
    
    .button {
        width: 100%;
        text-align: center;
        padding: 10px 15px;
        font-size: 15px;
    }
}
/* Responsive PDF Links */
@media screen and (max-width: 768px) {
    .pdf-link {
        white-space: normal;
        word-break: break-word;
    }
}
/* Responsive Footer */
@media screen and (max-width: 1024px) {
    .footer {
        gap: 100px;
        padding: 25px 40px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        padding: 20px;
    }
    
    .footer h6 {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 479px) {
    .footer {
        padding: 15px;
    }
    
    .footer h6 {
        font-size: 12px;
    }
}
