/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    color: #333;
  }
  
  .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  /* Header */
  header {
    background: #4CAF50;
    color: white;
    padding: 20px 0;
  }
  
  header .logo {
    font-size: 24px;
    font-weight: bold;
  }
  
  header nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-end;
  }
  
  header nav ul li {
    margin-left: 20px;
  }
  
  header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
  }
  
  header nav ul li a:hover {
    text-decoration: underline;
  }
  
  /* Hero Section */
  .hero {
    background: url('placeholder.jpg') no-repeat center center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
  }
  
  .hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .hero .btn {
    background: #FF5722;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
  }
  
  .hero .btn:hover {
    background: #E64A19;
  }
  
  /* Features Section */
  .features {
    padding: 60px 0;
    background: #f9f9f9;
    text-align: center;
  }
  
  .features h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  
  .features .cards {
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }
  
  .features .card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex: 1;
  }
  
  .features .card i {
    font-size: 40px;
    color: #4CAF50;
    margin-bottom: 20px;
  }
  
  .features .card h3 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .features .card p {
    font-size: 16px;
    color: #666;
  }
  
  /* Footer */
  footer {
    background: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
  }
  
  footer .social-links {
    margin-top: 10px;
  }
  
  footer .social-links a {
    color: white;
    margin: 0 10px;
    font-size: 20px;
  }
  
  footer .social-links a:hover {
    color: #4CAF50;
  }

  /* Contact Form Section */
.contact-form {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
}

.contact-form .container {
  max-width: 600px;
  margin: 0 auto;
}

.contact-form h2 {
  font-size: 36px;
  margin-bottom: 40px;
  color: #4CAF50;
}

.contact-form .form-group {
  margin-bottom: 20px;
  text-align: left;
}

.contact-form label {
  display: block;
  font-size: 16px;
  margin-bottom: 5px;
  color: #333;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .btn {
  background: #4CAF50;
  color: white;
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form .btn:hover {
  background: #45a049;
}

/* Privacy Link in Footer */
.privacy-link {
  color: #4CAF50;
  text-decoration: none;
  margin-left: 15px;
}

.privacy-link:hover {
  text-decoration: underline;
}

/* Privacy Policy Page Styling */
.privacy-policy {
  padding: 80px 0;
  background: #f9f9f9;
}

.privacy-policy h2 {
  font-size: 36px;
  text-align: center;
  color: #4CAF50;
  margin-bottom: 40px;
}

.policy-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.policy-content h3 {
  font-size: 24px;
  margin-top: 25px;
  color: #333;
}

.policy-content p, 
.policy-content ol {
  font-size: 16px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 20px;
}

.policy-content a {
  color: #4CAF50;
  text-decoration: none;
}

.policy-content a:hover {
  text-decoration: underline;
}

/* Responsive Design for Mobile Screens */
@media screen and (max-width: 768px) {
  /* General Styles */
  .container {
    width: 95%;
  }

  /* Header */
  header {
    text-align: center;
    padding: 15px 0;
  }

  header nav ul {
    flex-direction: row; /* Stack items vertically */
    align-items: center; /* Center items */
    gap: 10px; /* Ensure spacing between links */
  }

  header nav ul li {
    margin: 5px 0; /* Provide spacing between menu items */
  }

  /* Hero Section */
  .hero {
    padding: 60px 20px;
  }

  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  /* Features Section */
  .features .cards {
    flex-direction: column;
    gap: 15px;
  }

  /* Mock Exams Section */
  .mock-exams {
    padding: 50px 20px;
  }

  .mock-exams h2 {
    font-size: 28px;
  }

  .mock-exams .exam-list {
    flex-direction: column;
    gap: 15px;
  }

  .mock-exams .exam-card {
    flex: 1 1 100%;
    padding: 20px;
  }

  /* Contact Form */
  .contact-form {
    padding: 50px 20px;
  }

  .contact-form h2 {
    font-size: 28px;
  }

  /* Privacy Policy */
  .privacy-policy {
    padding: 50px 20px;
  }

  .privacy-policy h2 {
    font-size: 28px;
  }

  .policy-content {
    padding: 20px;
  }

  .policy-content h3 {
    font-size: 22px;
  }

  /* Comments Section */
  .comments {
    padding: 50px 20px;
  }

  .comments h2 {
    font-size: 28px;
  }

  /* Footer */
  footer {
    padding: 15px 0;
  }

  footer .social-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }

  footer .social-links a {
    margin: 5px;
    font-size: 18px;
  }
}

/* Comments Section */
#comments {
  background: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
  min-height: 100vh; /* Full height */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Info Box */
#comment-info {
  background: white; /* Green background */
  color: #4CAF50;
  padding: 15px;
  border-radius: 8px;
  font-size: 16px;
  margin-bottom: 20px;
  max-width: 600px;
  text-align: justify;
}

/* Comments Heading */
#comments h2 {
  font-size: 24px;
  color: #4CAF50;
  margin-bottom: 20px;
}

/* Comment Box */
#cusdis_thread {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  max-width: 65%;
}

/* Make iframe responsive */
#cusdis_thread iframe {
  width: 100% !important;
  height: 100vh !important;
  min-height: 100vh !important;
  overflow: hidden !important;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Responsive Design */
@media (max-width: 768px) {
  #comment-info {
    font-size: 14px;
    padding: 10px;
    max-width: 90%;
  }

  #comments h2 {
    font-size: 20px;
  }

  #cusdis_thread {
    min-height: 70vh; /* Adjust height for mobile */
    padding: 15px;
    max-width: 90%;
  }
}
