/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial', sans-serif;
}

body {
  background-color: #f4f4f9;
  color: #333;
  line-height: 1.6;
}

/* Header Styles */
.custom-header-section {
  background: linear-gradient(135deg, #ffffff, #00054d);
  padding: 80px 20px;
  color: #070047;
  text-align: center;
}

.custom-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  flex-wrap: wrap;
}

.custom-header-text {
  max-width: 600px;
}

.custom-header-title {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  letter-spacing: 2px;
}

.custom-header-paragraph {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.custom-download-link {
  background-color: #fff;
  color: #06005e;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.custom-download-link:hover {
  background-color: #04003b;
  color: #fff;
}

.custom-header-image img {
  max-width: 280%;
  height: auto;
  border-radius: 10px;
  max-height: 300px;
}

/* Contact Section Styles */
.custom-contact-section {
  padding: 50px 20px;
  background-color: #fdfdfd;
}

.custom-contact-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.custom-contact-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.custom-contact-info {
  flex: 1;
  background: #ffffff;
  padding: 40px;
  border-radius: 10px;
}

.custom-contact-title {
  font-size: 2rem;
  font-weight: bold;
  color: #09ff00;
  margin-bottom: 20px;
}

.custom-contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.custom-contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.custom-contact-icon {
  font-size: 1.5rem;
  color: #000958;
}

.custom-contact-item ul {
  list-style-type: none;
}

.custom-contact-item li a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

.custom-contact-item li a:hover {
  color: #00084e;
}

.custom-contact-text {
  font-size: 1rem;
  color: #06086d;
}

.custom-contact-form {
  flex: 1;
  background: #06005c;
  padding: 40px;
  border-radius: 10px;
}

.custom-form-title {
  font-size: 2rem;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 30px;
}

/* Form Styles */
.custom-form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.custom-form-input {
  width: calc(50% - 10px);
  padding: 15px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ffffff;
  transition: all 0.3s ease;
}

.custom-form-input:focus {
  outline: none;
  border-color: #00ff00;
  box-shadow: 0 0 10px rgba(255, 111, 97, 0.5);
}

.custom-form-textarea {
  width: calc(100% - 10px);
  height: 150px;
  resize: none;
  padding: 15px;
  font-size: 1rem;
  border-radius: 5px;
  border: 1px solid #ffffff;
}

.custom-form-btn {
  background-color: #00ff15;
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
}

.custom-form-btn:hover {
  background-color: #4bcc01;
}

/* Responsive Styles */

/* For devices with a width up to 1024px (tablets and smaller screens) */
@media (max-width: 1024px) {
  .custom-header-title {
    font-size: 2.5rem;
  }

  .custom-contact-container {
    flex-direction: column;
  }

  .custom-contact-info, .custom-contact-form {
    width: 100%;
    margin-bottom: 30px;
  }

  .custom-form-row {
    flex-direction: column;
  }

  .custom-form-input {
    width: 100%;
  }

  .custom-header-image img {
    max-width: 10%;
  }
}

/* For devices with a width up to 768px (larger phones and small tablets) */
@media (max-width: 768px) {
  .custom-header-title {
    font-size: 2rem;
  }

  .custom-contact-container {
    flex-direction: column;
  }

  .custom-contact-info, .custom-contact-form {
    width: 100%;
  }

  .custom-form-row {
    flex-direction: column;
  }

  .custom-form-input {
    width: 100%;
    margin-bottom: 15px;
  }

  .custom-form-btn {
    width: 100%;
  }

  .custom-header-image img {
    max-width: 100%;
  }
}

/* For devices with a width up to 480px (small phones) */
@media (max-width: 480px) {
  .custom-header-section {
    padding: 60px 20px;
  }

  .custom-form-title {
    font-size: 1.6rem;
  }

  .custom-form-input {
    padding: 10px;
    font-size: 0.9rem;
  }

  .custom-form-btn {
    padding: 10px 20px;
    font-size: 1rem;
  }

  .custom-header-title {
    font-size: 1.8rem;
  }

  .custom-header-paragraph {
    font-size: 1rem;
  }
}
