/* Start of Octajump Resume Builder CSS (cv_styles.css) */

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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f9fafb;
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
}

header {
  background-color: #1a2638;
  color: #ffffff;
  padding: 1.8rem 2rem;
  text-align: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

header h1 {
  font-weight: 700;
  font-size: 2rem;
  margin-bottom: 0.3rem;
}

header p {
  font-weight: 400;
  font-size: 1.1rem;
  color: #b0bec5;
}

.container {
  max-width: 850px;
  background-color: #fff;
  margin: 2.5rem auto;
  padding: 2rem 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(26, 38, 56, 0.12);
}

.section h2 {
  font-size: 1.5rem;
  color: #1a2638;
  font-weight: 700;
  margin-bottom: 1rem;
  border-bottom: 2px solid #d1d9e6;
  padding-bottom: 0.3rem;
}

form {
  display: block;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #4a4a4a;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  margin-bottom: 1.5rem;
  border: 1.8px solid #cfd8dc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s ease;
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: #3f83f8;
  box-shadow: 0 0 5px rgba(63, 131, 248, 0.4);
}

button {
  background-color: #3f83f8;
  color: #ffffff;
  border: none;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin: 2rem auto 0;
  width: 180px;
}

button:hover {
  background-color: #336ecf;
}

.section {
  margin-bottom: 2.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1.5px solid #e3e8ee;
}

@media (max-width: 600px) {
  .container {
    padding: 1.5rem 1.5rem;
    margin: 1.5rem 1rem;
  }

  button {
    width: 100%;
    font-size: 1rem;
    padding: 0.75rem;
  }

  header h1 {
    font-size: 1.6rem;
  }

  header p {
    font-size: 1rem;
  }
}

/* End of Octajump Resume Builder CSS (cv_styles.css) */
