.protection-hero {
  position: relative;
  background-image: url('/images/protection/protection-hero.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

.container {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
}

.protection-hero h1 {
    color: #FFF;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 50px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.protection-hero p {
    overflow: hidden;
    color: #E8E8E8;
    text-align: center;
    text-overflow: ellipsis;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-right: auto;
}

.protection-benefits {
  padding: 20px 0;
  background-color: #f8f9fa;
}

.benefits-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
}

.benefit-item {
  flex: 1;
  text-align: center;
}

.benefit-icon {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.benefit-icon svg {
  width: 48px;
  height: 48px;
  color: #333;
}

.benefit-item p {
    color: #1C1C1C;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.protection-form {
  padding: 50px 0;
  background-color: #ffffff;
}

.protection-form .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.protection-form h2 {
    color: #1C1C1C;
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: capitalize;
    margin-bottom: 10px;
}

.form-note {
    color: rgba(28, 28, 28, 0.70);
    text-align: center;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
}

.required-asterisk {
    color: #F30305;
}

.registration-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  gap: 20px;
  width: 100%;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full-width {
  flex: 1;
  min-width: 100%;
  width: 100%;
}

.form-group input,
.form-group select,
.form-group .file-upload {
  width: 100%;
}

.form-group label {
    color: #1C1C1C;
    font-family: "Proxima Nova";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.form-group label::before {
    content: attr(data-required);
    color: #F30305;
    margin-right: 5px;
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #333;
}

.file-upload {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 40px;
  text-align: center;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.file-upload:hover {
  border-color: #333;
}

.file-upload svg {
  margin: 0 auto 15px;
  display: block;
}

.file-upload p {
  margin: 5px 0;
  color: rgba(28, 28, 28, 0.40);
  text-align: center;
  font-family: "PingFang SC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.file-note {
  color: rgba(28, 28, 28, 0.40);
  text-align: center;
  font-family: "PingFang SC";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
}

.file-upload input[type="file"] {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.form-actions {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.register-btn {
  display: flex;
  padding: 14px 30px;
  justify-content: center;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  color: #FFF;
  text-align: center;
  text-overflow: ellipsis;
  font-family: "Proxima Nova";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  border-radius: 6px;
  border: 1px solid #BE930B;
  background: #BE930B;
  transition: background-color 0.3s ease;
}

.register-btn:hover {
  background-color: #b88714;
}

.why-register {
  padding: 60px 0;
  background-color: #f8f9fa;
}

.why-register .container {
  max-width: 1440px;
  margin: 0 auto;
}

.why-register h2 {
  color: #1C1C1C;
  text-align: center;
  font-family: "Proxima Nova";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: capitalize;
  margin-bottom: 40px;
}

.tlg-text {
  color: #BE930B;
}

.register-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@media (max-width: 1200px) {
  .register-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .register-cards {
    grid-template-columns: 1fr;
  }
}

.register-card {
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.register-card-content {
  padding: 20px 24px;
}

.register-card .card-btn {
  border-top: 1px solid #f0f0f0;
  border-radius: 0 0 8px 8px;
}

.register-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50px;
  background: rgba(190, 147, 11, 0.10);
  display: flex;
  padding: 12px;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  display: flex;
  justify-content: flex-start;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  color: #d4a017;
}

.register-card h3 {
  color: #1C1C1C;
  font-family: "Proxima Nova";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  color: #333;
  text-align: left;
  margin-bottom: 8px;
}

.register-card p {
  color: rgba(28, 28, 28, 0.70);
  font-family: "Proxima Nova";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  text-align: left;
}

.card-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  background-color: #F8F4E6;
  border-radius: 4px;
  overflow: hidden;
  color: #BE930B;
  text-align: center;
  text-overflow: ellipsis;
  font-family: "Proxima Nova";
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  transition: all 0.3s ease;
  position: relative;
}

.card-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.card-btn span {
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.card-btn:hover span {
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .protection-hero {
    padding: 80px 0;
  }
  
  .protection-hero h1 {
    font-size: 2.25rem;
  }
  
  .protection-hero p {
    font-size: 1rem;
  }
  
  .protection-benefits {
    padding: 40px 0;
  }
  
  .benefits-grid {
    flex-direction: row;
    gap: 10px;
  }
  
  .benefit-item {
    flex: 1;
    min-width: 0;
  }
  
  .benefit-icon svg {
    width: 32px;
    height: 32px;
  }
  
  .benefit-item p {
    font-size: 0.875rem;
  }
  
  .protection-form {
    padding: 40px 0;
  }
  
  .protection-form h2 {
    font-size: 1.75rem;
  }
  
  .form-row {
    flex-direction: column;
  }
  
  .file-upload {
    padding: 30px 20px;
  }
  
  .register-btn {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
  
  .why-register {
    padding: 40px 0;
  }
  
  .why-register h2 {
    font-size: 1.75rem;
  }
  
  .register-cards {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 0 20px;
  }
  
  .register-card {
    max-width: none;
    margin: 0;
  }
}