/* General Page Styling */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #FFF5F7;
    color: #333;
}

/* Global Reset and Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* Navbar */
.navbar {
    background-color: #2A2B2D;
    display: flex;
    width: 1520px;
    align-items: center;
    justify-content: space-between;
    padding: 15px;
    height: 80px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.navbar-title {
    font-size: 32px;
    font-weight: bold;
    color: #FFF5F7;
    flex-grow: 1;
    text-align: center;
}

.footer {
    background-color: #2A2B2D;
    text-align: center;
    padding: 15px;
    width: 100%;
    margin-top: 40px;
    color: #FFF5F7;
    font-size: 16px;
    font-weight: bold;
}

.logo-container {
    width: 60px;
    height: 60px;
    background-color: #FFF5F7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-size: 50px;
    font-weight: 600;
    color: #2A2B2D;
    font-family: 'Times New Roman';
}

.logo-link {
    text-decoration: none;
}

/* --- Custom Animated Back Button --- */
.back-button {
    display: block;
    position: absolute;
    top: 100px;
    left: 20px;
    width: 56px;
    height: 56px;
    background-color: transparent;
    cursor: pointer;
    border: 0;
    overflow: hidden;
    outline: none;
}

.back-button:before,
.back-button:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 7px;
}

.back-button:before {
    border: 4px solid #2A2B2D;
    transition: opacity 0.4s ease-in-out, transform 0.5s ease-in-out;
}

.back-button:after {
    border: 4px solid #2A2B2D;
    transform: scale(1.3);
    opacity: 0;
    transition: opacity 0.4s ease-in-out, transform 0.5s ease-in-out;
}

.back-button:hover:before {
    opacity: 0;
    transform: scale(0.7);
}

.back-button:hover:after {
    opacity: 1;
    transform: scale(1);
}

.button-box {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
}

.button-elem {
    display: block;
    width: 20px;
    height: 20px;
    margin: 17px 18px 0 18px;
    transform: rotate(180deg);
    fill: #4A403A;
}

.back-button:hover .button-box {
    transition: 0.4s;
    transform: translateX(-56px);
}



/* Main Container */
.container {
    max-width: 800px;
    margin: 30px auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Headings */
h2 {
    color: #2A2B2D;
    margin-bottom: 10px;
    font-size: 24px;
    border-bottom: 3px solid #2A2B2D;
    padding-bottom: 5px;
}

h3 {
    color: #4A403A;
    font-size: 20px;
    margin-top: 15px;
}

/* Help Sections */
.help-section {
    background: #FFF5F7;
    padding: 15px;
    margin: 15px 0;
    border-radius: 10px;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.help-section h3 a {
    text-decoration: none;
    color: #2A2B2D;
    font-weight: 600;
}

.help-section h3 a:hover {
    text-decoration: underline;
}

/* Paragraphs */
p {
    font-size: 16px;
    color: #4A403A;
    line-height: 1.5;

}
/* Paragraph Styling */
h4 {
    font-size: 20px;
    color: #4A403A;
    text-align: center;
    margin-bottom: 15px;
}


/* Buttons */
button {
    background: #2A2B2D;
    color: white;
    border: none;
    padding: 10px 15px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    margin-top: 10px;
    transition: background 0.3s ease;
}






  /* -------- MOBILE VIEW CSS -------- */
@media (max-width: 768px) {

  

  .container {
    width: 90%;
    padding: 15px;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: none;
  }

   /* General body adjustments */
  body {
    padding: 0;
    margin: 0;
    font-size: 15px;
  }

  /* Navbar */
  .navbar {
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 10px;
    align-items: flex-start;
  }

  .logo-container {
    width: 45px;
    height: 45px;
    margin-left: 0;
  }

  .logo-text {
    font-size: 30px;
  }

  .navbar-title {
    font-size: 20px;
    text-align: center;
    margin-top: 8px;
    width: 100%;
  }
  /* Headings */
  h2 {
    font-size: 20px;
  }

  h3 {
    font-size: 18px;
    margin-top: 12px;
  }

  h4 {
    font-size: 16px;
  }

  /* Help Section */
  .help-section {
    padding: 10px;
    margin: 12px 0;
    border-radius: 8px;
  }

  .help-section h3 a {
    font-size: 16px;
  }

  /* Paragraph */
  p {
    font-size: 14px;
  }

  /* Buttons */
  button {
    font-size: 14px;
    padding: 8px 12px;
    border-radius: 4px;
  }

  /* Back Button */
  .back-button {
    width: 44px;
    height: 44px;
    top: 80px;
    left: 15px;
  }

  .back-button:before,
  .back-button:after {
    inset: 6px;
    border-width: 3px;
  }

  .button-box {
    transform: scale(0.8);
  }

  .button-elem {
    width: 16px;
    height: 16px;
    margin: 13px 14px 0 14px;
  }

  /* Footer */
  .footer {
    font-size: 14px;
    padding: 10px;
    margin-top: 30px;
    width: 100%;
  }
}
