.page{
  background-color: aliceblue;
  min-height: 100vh;
}
/* nav bar */
.navbar{ 
  padding: 10px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;


}
.navbar .menu{
  margin-left: auto;
}
.navbar .web-title{
  font-size: 30px;
  font-weight: bold;
  color: white;
  cursor: pointer;
}
.navbar a{
  color: white;
 
  min-block-size: 15px;
}
  
 

  /* margin: 0 10px; */

/* From Uiverse.io by cssbuttons-io */ 
.reg {
  padding: 12px 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  /* font-weight: 500; */
  color: #ffffff;
  background-color: aqua;
  border: none;
  border-radius: 30px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease 0s;
  cursor: pointer;
  outline: none;
  width: 100%;
  max-width: 200px; /* Limit the button width */
  font-weight: bold;
}

.reg:hover {
  background-color: #e6eeeb;
  box-shadow: 0px 10px 15px rgba(46, 229, 157, 0.4);
  color: aqua;
  transform: translateY(-5px);
}

@media (min-width: 768px) {
  .reg {
    font-size: 16px;
    padding: 10px 20px;
    max-width: 250px; /* Adjust for larger screens */
  }
}

.reg:active {
  transform: translateY(-1px);
}
.navbar .login-txt{
  font-size: 16px;

  padding: 12px 16px;
  border-radius: 20px;
  color: white;
  font: bold;
  cursor: pointer;
  transition: background-color 0.3s;
}
.head{
  text-align: center;
  height: 120px;
}
.login-container {
  background-color: #2c2c3e;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  width: 30vw;
  text-align: center;
  margin-top: 90px;
  min-width: 300px;
  max-width: 60vw;
}

.login-w {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

.input-group {
  margin-bottom: 15px;
  text-align: left;
}

.input-group label {
  font-size: 14px;
  color: gray;
}

.input-group input {
  width: 100%;
  padding: 10px;
  margin-top: 5px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
}

.input-group input:focus {
  border-color: #007bff;
}

.login-button {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  color: #fff;
  background-color: #007bff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
}

.login-button:hover {
  background-color: #0056b3;
}
/* social login */
.social-login{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
 
}
/* left nav bar in home */

.navbar-home {
  height: 100%;
  width: 100px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #051a2b;

  overflow-x: hidden;
  padding-top: 20px;
}
.navbar-home a {
  display: block;
  color: white;
  padding: 10px 15px;
  text-decoration: none;
}
.navbar-home a:hover {
  background-color: #575757;
}
.content {
  margin-left: 210px; /* Adjust this based on navbar width */
  padding: 20px;
}
/* home up dashboard navbar */
.navbar-home-up {
  height: 80px;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #051a2b;
  overflow-x: hidden;
  padding-top: 20px;
  margin-left: 100px;
  padding-left: 20px;
  justify-content: center;
}

/* home page */
.home_nav{
    padding: 10px 20px;
    display: flex;
    align-items: center;
    color: white;
    height: 80px;
    margin-left: 120px;

}

  /* home drawer  */
#iconContainer {
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 10;
}
  
#menuButton {
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    font-size: 24px;
    cursor: pointer;
}
  
.drawer {
    position: fixed;
    top: 0;
    left: -250px; /* Hidden initially */
    width: 250px;
    height: 100%;
    background-color: #333;
    color: white;
    overflow: auto;
    transition: 0.3s;
    padding: 20px;
}
  
.drawer.open {
    left: 0; /* Slide in */
}
  
.drawer ul {
    list-style-type: none;
    padding: 0;
}
  
.drawer li {
    margin: 15px 0;
}
  
.drawer a {
    color: white;
    text-decoration: none;
}
  
.drawer a:hover {
    text-decoration: underline;
}
  
/* index */
.server-icon{
    display: flex;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    
    
}
/* Hero Section */
.hero {
    background-color: #051a2b;
    color: white;
    padding: 4rem 0;
  }
  
  .hero .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }
  
  .hero-content {
    flex: 1 1 400px;
  }
  
  .hero-image {
    flex: 1 1 400px;
    text-align: center;
    min-width: 200px;
  }
  
  .hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
  }
  
  .btn-primary {
    background-color: aqua;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s;
  }
  
  
  .btn-primary:hover {
    background-color: #333;
  }
  /* Features Section */
.features {
    padding: 4rem 0;
    background-color:white;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #051a2b;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s;
    color: wheat;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}
/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}
/* states  */

/* state cards */

/* drawe  */
/* Drawer/Sidebar Styles */
.menu-icon {
    cursor: pointer;
  }
  
  .menu {
    display: flex;
    
  }
  
  .menu a {
    color: white;
    text-decoration: none;
  }
  
  /* Drawer/Sidebar styles */
  .drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 250px;
    height: 100vh;
    background-color: #051a2b;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    z-index: 1000;
    padding: 20px;
  }
  
  .drawer.open {
    left: 0;
  }
  
  .drawer ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
  }
  
  .drawer li {
    margin-bottom: 15px;
  }
  
  .drawer a {
    text-decoration: none;
    color: #ffffff;
    font-size: 20px;
    transition: color 0.2s;
    display: block;
    padding: 8px 0;
  }
  
  .drawer a:hover {
    color: #007bff;
  }
  
  /* Overlay */
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
  }
  /* dashboard styles */
.home-page {
    /* display: flex; */
  
    padding: 20px;
    background-color: #07253d;
    height: 100%;
    width: 100%;
    min-height: 100vh;
  }
  /* .dashboard-container */

/* logout btn */
.logout-icon{
    font-size: 20px;
    color: red;
    cursor: pointer;
    align-self: center;

}
/* pop up to add link  */
.popup {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.popup-content {
  background-color: #fff;
  margin: 10% auto;
  padding: 20px;
  width: 300px;
  border-radius: 8px;
  position: relative;
}

.close {
  position: absolute;
  top: 5px; right: 10px;
  font-size: 20px;
  cursor: pointer;
}
/* tables */
#filterContainer {
  text-align: left;
  margin-bottom: 20px;
}

select {
  padding: 8px 12px;
  font-size: 16px;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  border-radius: 25px;
}

th, td {
  padding: 12px;
  text-align: center;
  border-bottom: 1px solid #eee;
}

th {
  background: #f0f0f0;
  font-weight: bold;
}

.status {
  padding: 5px 10px;
  border-radius: 5px;
  font-weight: bold;
  text-transform: capitalize;
}

.status.active {
  background-color: #d4edda;
  color: #155724;
}

.status.down {
  background-color: #f8d7da;
  color: #721c24;
}

.status.unknown {
  background-color: #e2e3e5;
  color: #383d41;
}

.status.pending {
  background-color: #fff3cd;
  color: #856404;
}
/* responsive table in home/ */
.table-container {
  width: 100%;
  border-collapse: collapse;
  margin: 20px auto;
  background-color: #1e1e2f;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);


}

.table-container th,
.table-container td {
  padding: 12px 15px;
  text-align: center;
  color: #fff;
  border-bottom: 1px solid #444;
}

.table-container th {
  background-color: #2c2c3e;
  font-weight: bold;
}

.table-container tr:hover {
  background-color: #33354a;
  transition: 0.3s;
}


.table-container td::before {
  content: attr(data-label);
  font-weight: bold;
  color: #aaa;
  display: block;
  margin-bottom: 6px; /* زيدنا المسافة هنا */
  font-size: 13px;
}


/* Responsive popup linkadd */
.add-link-btn {
  background-color: #007bff;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin: 20px 0;
}

.add-link-btn:hover {
  background-color: #0056b3;
}

/* Popup styling */
.popup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

.popup-title {
  font-size: 20px;
  margin-bottom: 15px;
  color: #333;
}

.popup-input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.popup-save-btn {
  background-color: #28a745;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.popup-save-btn:hover {
  background-color: #218838;
}

.close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
}

.close:hover {
  color: #ff0000;
}

/* Responsive adjustments */


.horizontal-container {
  display: flex;
  flex-direction: row;
  gap: 10px; /* Adjust spacing between items */
  flex-wrap: wrap; /* Allow wrapping for responsiveness */
}




.add-link-btn {
  background-color: #4caf50;
  color: white;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  order: 1; /* Ensure add button appears first */
}

.add-link-btn:hover {
  background-color: #45a045;
}

/* Popup styles */
.popup {
  display: none; /* default hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  background-color: #2c2c3e;
  padding: 24px;
  border-radius: 12px;
  width: 90%;
  max-width: 320px;
  position: relative;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

.popup-title {
  margin-top: 0;
  color: white;
  text-align: center;
}

.popup-input {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #444;
  background-color: #1e1e2f;
  color: white;
  border-radius: 6px;
}

.popup-save-btn {
  width: 100%;
  padding: 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.popup-save-btn:hover {
  background-color: #45a045;
}

.close {
  position: absolute;
  right: 12px;
  top: 10px;
  color: white;
  font-size: 18px;
  cursor: pointer;
}
/* dashboard bar */
.dashboard-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  /* background-color: #2c3e50; */
  border-radius: 5px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
/* searchbar */

#searchBar {
  flex: 1;
  max-width: 200px;
  min-width: 140px;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
}
/* end of sb */
#statusFilter {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  min-width: 120px;
  margin-left: auto;
}

.add-link-btn {
  padding: 8px 12px;
  background-color: #3498db;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  cursor: pointer;
  min-width: 100px;
  margin-left: auto;
}

.cards-container {
  display: none;
}
.monitor-card {
  background: #1f1f1f;
  border-radius: 12px;
  padding: 15px;
  color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  font-size: 14px;
  margin-bottom: 15px;
}
.card-row {
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
}
.label {
  font-weight: bold;
  margin-right: 10px;
}
/* user info profile /profile.html  */
.profile-home{
  display: flex;
  
  
  
  
}
.user-info {
  display: flex;
  flex-direction: column; /* Default to column for smaller screens */
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background-color: #193e5c;
  color: white;
  border-radius: 10px;
  font-size: 16px; /* Slightly smaller font for better scaling */
  width: 100%;
}

@media (min-width: 768px) {
  .user-info {
    flex-direction: row; /* Switch to row layout for larger screens */
    align-items: center;
    padding: 40px;
    font-size: 18px;
  }
}
.user-info .edit-user-info{
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
.user-info .edit-user-info:hover {
  background-color: white; /* Darker blue on hover */
  color: #007bff;
}
/* profile buttons */
#change-password{
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
#change-password:hover {
  background-color: white; /* Darker blue on hover */
  color: #007bff;
}
/* profile buttons */
#close-account{
  background-color:red;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
#close-account:hover {
  background-color: white; /* Darker red on hover */
  color: red;
}
/* profile buttons */
#delete-account{
  background-color:red;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}
#delete-account:hover {
  background-color: white; /* Darker red on hover */
  color: red;
}
#logout-btn {
  background-color: transparent;
  color: red;
  padding: 10px 20px;
  border: 2px solid red; /* Add a border to simulate a stroke */
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

#logout-btn:hover {
  background-color: red; /* Change background on hover */
  color: white; /* Change text color on hover */
}
.logout-btn2 {
  background-color: transparent;
  color: red;
  padding: 10px 20px;
  border: 2px solid red; /* Add a border to simulate a stroke */
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.logout-btn2:hover {
  background-color: red; /* Change background on hover */
  color: white; /* Change text color on hover */
}
.logout-btn3 {
  background-color: transparent;
  color: red;
  padding: 10px 20px;
  border: 2px solid red; /* Add a border to simulate a stroke */
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  transition: background-color 0.3s, color 0.3s; /* Smooth transition */
}

.logout-btn3:hover {
  background-color: red; /* Change background on hover */
  color: white; /* Change text color on hover */
}
/* profile lables */
.label {
  font-weight: bold;
  margin-right: 10px;
  color: white;
}
.error-image{
  width: 250px;
  height: 250px;
  min-width: 150px;
  min-height: 150px;
  max-width: 300px;
  max-height: 300px;
  margin: 0 auto;
  padding-top: 40px;

}
.error-page{
  padding: auto;
  text-align: center;
 
  align-items: center;
  justify-content: center;
  height: 100vh;
 
}


/* .notification-settings {
  padding: 1rem;
  background: #f9f9f9;
  border-radius: 10px;
  max-width: 400px;
}

.notification-settings label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.notification-settings input[type="checkbox"] {
  transform: scale(1.2);
} */


/* profile info edit */
#editProfileModal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 400px;
  background: #2c2c3e;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  z-index: 1000;
  animation: fadeIn 0.3s ease;
  color: white;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -45%); }
  to { opacity: 1; transform: translate(-50%, -50%); }
}
#overlay {
  display: none;
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
.modal-buttons {
  margin-top: 20px;
  text-align: center;
}
.modal-buttons button {
  margin: 0 10px;
  padding: 8px 16px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}
.save-btn {
  background-color: #4CAF50;
  color: white;
}
.close-btn {
  background-color: #f44336;
  color: white;
}
/* notifications part */
    #notification-container {
      max-height: calc(100vh - 80px - 70px); /* 80px navbar + ~70px footer */
      overflow-y: auto;
      margin-bottom: 10px;
      padding: 0 10px;
      scrollbar-width: none; /* Firefox */
      -ms-overflow-style: none;  /* IE and Edge */
    }
    #notification-container::-webkit-scrollbar {
      display: none; /* Chrome, Safari, Opera */
    }
    #notification-card {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    .notification-item {
      color: #23272f;
      background-color: #fff;
      border-radius: 10px;
      padding: 18px 20px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      font-size: 1rem;
      transition: background 0.2s;
    }
    .notification-item:hover {
      background: #2d323b;
      color: #fff;
     
    }
    #loading, #error-message {
      color: #fff;
      text-align: center;
      margin: 24px 0;
    }
    
.statistics-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px;

}
.statistics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  margin: 20px auto; /* Center the grid */
  max-width: 1200px; /* Limit the width of the grid */
  padding: 20px;
  
 
}
.stat-card{

  
  display: flex;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:12px;
  margin-left: 30px;

}
.stat-card h3{
  font-size: 24px;
  color: white;
  font-style: bold;

}
.stat-card p{
  font-size: 25px;
  color: gray;
  font-style: bold;
}
/* privacy policy page edit */
 .privacy-policy {
        color: #f3f3f3;
        padding-top: 20px;
        max-width: 700px;
        margin-left: 0;
        margin-right: auto;
    }
    .privacy-policy h1,
    .privacy-policy h2,
    .privacy-policy h3 {
        color: #ffd700;
        margin-top: 32px;
        margin-bottom: 12px;
    }
    .privacy-policy h1 {
        font-size: 2.2em;
    }
    .privacy-policy h2 {
        font-size: 1.4em;
    }
    .privacy-policy h3 {
        font-size: 1.1em;
    }
    .privacy-policy p,
    .privacy-policy ul,
    .privacy-policy li {
        color: #e0e0e0;
        margin-bottom: 18px;
        line-height: 1.7;
    }
    .privacy-policy a {
        color: #4fc3f7;
        text-decoration: underline;
    }
    .privacy-policy ul {
        padding-left: 20px;
    }
    .privacy-policy .c-gray {
        color: #b0b0b0;
    }


/* faq style */
 /* Responsive FAQ Styles for UptimeX */

body {
  background: linear-gradient(120deg, #051a2b 60%, #2c2c3e 100%);
  color: #fff;
  
  margin: 0;
  padding: 0;
}

.faq-container {
  max-width: 700px;
  width: 95%;
  margin: 48px auto 32px auto;
  background: rgba(44,44,62,0.97);
  border-radius: 18px;
  box-shadow: 0 4px 32px rgba(25,118,210,0.13);
  padding: 36px 28px;
}

.faq-title {
  text-align: center;
  font-size: 2.2rem;
  color: #4fc3f7;
  font-weight: 700;
  margin-bottom: 32px;
  letter-spacing: 1px;
}

.faq-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.faq-item {
  margin-bottom: 18px;
  border-bottom: 1px solid #2c2c3e;
  padding-bottom: 12px;
}

.faq-question {
  cursor: pointer;
  font-size: 1.13rem;
  font-weight: 600;
  color: #4fc3f7;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}

.faq-question:hover {
  color: #1976d2;
}

.faq-question i {
  margin-right: 10px;
  font-size: 1.2em;
  transition: transform 0.2s;
}

.faq-answer {
  display: none;
  margin-top: 8px;
  color: #e0e0e0;
  font-size: 1.04rem;
  line-height: 1.7;
  padding-left: 28px;
  animation: fadeIn 0.3s;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question i {
  transform: rotate(90deg);
  color: #1976d2;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px);}
  to { opacity: 1; transform: translateY(0);}
}

/* Responsive Design */
@media (max-width: 900px) {
  .faq-container {
    padding: 24px 10px;
    margin: 32px 2vw;
  }
  .faq-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 600px) {
  .faq-container {
    padding: 12px 2vw;
    margin: 18px 1vw;
  }
  .faq-title {
    font-size: 1.15rem;
  }
  .faq-question, .faq-answer {
    font-size: 1rem;
  }
}
/* libe support */
