html, body {
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
}

.navy {
  background-color: #0A1F44;
  padding: 20px 40px;
  box-sizing: border-box;
}
.nav-container {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
}
.nav-logo-container {
  width: 200px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.logo a {
  color: white;
  font-size: 1em;
  font-weight: 300;
  text-decoration: none;
}
.nav-links-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 40px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.2em;
  font-weight: 300;
  transition: color 0.3s ease;
}
.nav-links a:hover {
  color: #AFCBFF;
}
.nav-spacer { 
  height: 50px; 
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;      
  justify-items: center;
  min-height: calc(100vh - 250px); 
  padding: 0 10%;
  gap: 50px;
}
.hero-heading {
  font-family: 'poppings', sans-serif;
  font-size: 8em;
  font-weight: 200;
  color: #0A1F44;
  text-shadow: 4px 4px 15px rgba(0, 0, 0, 0.25);
  line-height: 1.1;
  text-align: left;
  white-space: nowrap;
  margin: 0;
}
#dots-container {
  display: inline-block;
  width: 3ch;      
  text-align: left; 
}
#dots {
  display: inline-block;
}
.hero-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 500px;
}
.hero-body {
  font-size: 1.3em;
  color: #333;
  margin-bottom: 30px;
  line-height: 1.6;
}
.cta.outline {
  font-family: poppins, sans-serif;
  background-color: transparent;
  color: #0A1F44;
  border: 2px solid #0A1F44;
  padding: 15px 40px;
  font-size: 1.2em;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, background-color 0.2s, color 0.2s;
}
.cta.outline:hover {
  background-color: #0A1F44;
  color: white;
  transform: scale(1.05);
}


.footer {
  background-color: #f9f9f9;
  border-top: 1px solid #e0e0e0;
  padding: 40px 10%;
  text-align: center;
}
.footer-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  gap: 25px;
  padding: 0;
  margin: 0;
}
.footer-links a {
  text-decoration: none;
  color: #0A1F44;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #0056b3;
}
.footer-text {
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
}


.about-section {
  text-align: center;
  padding: 80px 15%;
}
.about-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5em;
  font-weight: 300;
  color: #0A1F44;
  margin-bottom: 40px;
}
.about-body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3em;
  line-height: 1.8;
  font-weight: 400;
  color: #333;
  max-width: 750px;
  margin: 0 auto 60px auto;
  text-align: left;
}
.about-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 2em;
  font-weight: 400;
  color: #0A1F44;
  margin-bottom: 25px;
  max-width: 750px;
  margin: 0 auto 20px auto;
  text-align: left;
}

.help-section {
  text-align: center;
  padding: 80px 15%;
}
.help-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5em;
  font-weight: 300;
  color: #0A1F44;
  margin-bottom: 0px;
}

.faq-section {
  padding: 0px 15% 60px 15%; 
  text-align: left;
  max-width: 750px;
  margin: -25px auto 0 auto;
  margin-bottom: -60px;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  background-color: #f9f9f9;
}
.faq-question {
  background: #0A1F44;
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1.2em;
  padding: 15px 20px;
  text-align: left;
  width: 100%;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.faq-question:hover {
  background: #0056b3;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.help-detail-section {
  text-align: center;
  padding: 80px 15%;
}
.help-detail-subheading {
  font-family: 'Poppins', sans-serif;
  font-size: 2em;
  font-weight: 400;
  color: #0A1F44;
  margin-bottom: 25px;
  max-width: 750px;
  margin: 0 auto 20px auto;
  text-align: left;
}
.help-detail-body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3em;
  line-height: 1.8;
  font-weight: 400;
  color: #333;
  max-width: 750px;
  margin: 0 auto 60px auto;
  text-align: left;
}


.contact-section {
  text-align: center;
  padding: 80px 15%;
}
.contact-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5em;
  font-weight: 300;
  color: #0A1F44;
  margin-bottom: 40px;
}
.contact-body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.3em;
  line-height: 1.8;
  font-weight: 400;
  color: #333;
  max-width: 750px;
  margin: 0 auto 60px auto;
  text-align: center;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 15px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  border: 2px solid #0A1F44;
  border-radius: 12px;
  outline: none;
  box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #555;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form button {
  width: 40%; 
  padding: 15px 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  background-color: #0A1F44;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: center;
}
.contact-form button:hover {
  background-color: #0056b3;
}



.privacy-section {
  text-align: center;
  padding: 80px 15%;
}
.privacy-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5em;
  font-weight: 300;
  color: #0A1F44;
  margin-bottom: 10px;
}
.privacy-date {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 50px;
}
.privacy-content {
  font-family: 'Poppins', sans-serif;
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
  color: #333;
  line-height: 1.8;
  font-size: 1.1em;
}
.privacy-content h2 {
  color: #0A1F44;
  font-weight: 500;
  font-size: 1.6em;
  margin-top: 50px;
  margin-bottom: 20px;
}
.privacy-content h3 {
  color: #0A1F44;
  font-weight: 500;
  font-size: 1.3em;
  margin-top: 30px;
  margin-bottom: 10px;
}
.privacy-content ul {
  margin: 10px 0 20px 25px;
}
.privacy-content li {
  margin-bottom: 8px;
}
.privacy-content p {
  margin-bottom: 20px;
}



.terms-section {
  text-align: center;
  padding: 80px 15%;
}
.terms-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3.5em;
  font-weight: 300;
  color: #0A1F44;
  margin-bottom: 10px;
}
.terms-date {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  color: #555;
  margin-bottom: 50px;
}
.terms-content {
  font-family: 'Poppins', sans-serif;
  max-width: 750px;
  margin: 0 auto;
  text-align: left;
  color: #333;
  line-height: 1.8;
  font-size: 1.1em;
}
.terms-content h2 {
  color: #0A1F44;
  font-weight: 500;
  font-size: 1.6em;
  margin-top: 50px;
  margin-bottom: 20px;
}
.terms-content h3 {
  color: #0A1F44;
  font-weight: 500;
  font-size: 1.3em;
  margin-top: 30px;
  margin-bottom: 10px;
}
.terms-content ul {
  margin: 10px 0 20px 25px;
}
.terms-content li {
  margin-bottom: 8px;
}
.terms-content p {
  margin-bottom: 20px;
}



.resume-form-section {
  text-align: center;
  padding: 80px 15%;
}
.resume-form-title {
  font-family: 'Poppins', sans-serif;
  font-size: 3em;
  font-weight: 300;
  color: #0A1F44;
  margin-bottom: 30px;
}
.resume-form-body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.2em;
  color: #333;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.resume-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}
.resume-form .form-group input {
  width: 100%;
  padding: 15px 20px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  border: 2px solid #0A1F44;
  border-radius: 12px;
  outline: none;
  box-sizing: border-box;
}
.resume-form .form-group input::placeholder {
  color: #555;
}
.resume-btn {
  width: 40%;
  padding: 15px 25px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.1em;
  background-color: #0A1F44;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: center;
}
.resume-btn:hover {
  background-color: #0056b3;
}



.resume-builder {
  display: flex;
  gap: 40px;
  padding: 60px 10%;
  font-family: 'Poppins', sans-serif;
}
.form-column {
  flex: 1;
  background: #f8f9fb;
  padding: 25px;
  border-radius: 15px;
  border: 2px solid #e1e5f0;
}
.form-column h2 {
  font-size: 2em;
  font-weight: 400;
  color: #0A1F44;
  margin-bottom: 20px;
}
.form-column h3 {
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.2em;
  font-weight: 500;
  color: #0A1F44;
}
.form-column textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  padding: 15px;
  font-size: 1em;
  border: 2px solid #0A1F44;
  border-radius: 12px;
  outline: none;
  background: white;
  font-family: 'Poppins', sans-serif;
  box-sizing: border-box;
}
.form-column textarea::placeholder {
  color: #666;
}

.preview-column {
  flex: 2;
  background: white;
  padding: 30px 40px;
  border-radius: 15px;
  border: 2px solid #e1e5f0;
}
.resume-preview h2 {
  font-size: 2.4em;
  font-weight: 500;
  color: #0A1F44;
  margin-bottom: 10px;
}
.resume-preview p {
  font-size: 1.1em;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}
.resume-preview h3 {
  margin-top: 25px;
  margin-bottom: 8px;
  font-size: 1.4em;
  color: #0A1F44;
}
.resume-preview hr {
  border: none;
  height: 2px;
  background: #e1e5f0;
  margin: 20px 0;
}



.notification {
  position: fixed;
  top: 10px;
  right: -300px;
  background-color: white;
  color: #0A1F44;
  padding: 15px 25px;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 1em;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: right 0.4s ease;
  z-index: 9999;
}
.notification.show {
  right: 20px;
}
