.top-header {
background-color: transparent;
}

.original-navigation li {
color: #000;
}

.burger-icon .line {
background-color: black;
}

/* Close Icon */
.close-icon {
color: #000;
}

/* Slide Navigation */
.slide-navigation {
background-color: white;
box-shadow: -2px 0 5px rgba(0, 0, 0, 0.5);
}

.slide-navigation li {
border-bottom: 1px solid #000;
}

.slide-navigation a {
color: #000;
}

hr {
width: 180px;
height: 2px;
background-color: black;
border-radius: 500px;
margin-bottom: 20px;
}

.page-content .inner-section {
display: flex;
flex-direction: column;
margin-left: auto;
width: 55%;
margin-right: 0;
margin-top: 30px;
height: auto;
background-color: #fff;
}  

.packages-section {
display: flex;
justify-content: space-around;
margin: 20px 0 40px 0;
flex-wrap: wrap;
}

.package {
margin-top: 20px;
max-width: 221px;
}

.package header {
margin-bottom: 10px;
}

.list {
  margin-left: 12px;
}

.package li {
list-style-type: disc;
text-indent: 10px;
line-height: 26px;
}

.price {
margin: 10px 0 10px 0;
}

.price span {
  font-size: x-small;
}

.contact-section {
display: flex;
width: 100%;
justify-content: center;
}

.contact-form-container {
flex: 2;
width: 100%;
max-width: 600px;
margin: auto;
}

.contact-heading {
text-align: start;
font-size: 24px;
margin-bottom: 8px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 16px;
}

.form-input {
width: 100%;
border: none;
border-bottom: 2px solid #000;
padding: 8px 0;
padding-left: 3px;
font-size: 16px;
outline: none;
transition: border-color 0.3s ease;
}

.form-input:focus {
border-bottom: 2px solid #007BFF;
}

/* Textarea Adjustments */
textarea.form-input {
border: 2px solid #000;
resize: none;
}

textarea.form-input:focus {
border: 2px solid #007BFF;
}

/* Submit Button Styling */
.submit-button {
width: 100%;
padding: 12px;
background-color: #000;
color: white;
border: none;
border-radius: 4px;
font-size: 16px;
cursor: pointer;
transition: background-color 0.3s ease;
}

.submit-button:hover {
transform: scale(1.01);
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive Layout*/
@media (max-width: 1024px) {
.page-content .inner-section {
  width: 53%;
}
}

@media (max-width: 769px) {
  body {
    background-size: 100% 40%;
  }

.burger-icon .line {
  background-color: #fff;
}

.page-content {
  background-color: #fff;
  width: 100%;
}

.page-content .inner-section {
  width: 90%;
}  

.contact-form-container {
  max-width: 60%;
  }
}

@media (max-width: 426px) {  
.packages-section {
  flex-direction: column;
  align-items: center;
}
}