/* General Styles */
body {
  font-family: 'Noto Sans Arabic', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f9f9f9;
  color: #333;
  text-align: right;
}

/* Hero Section */
.hero {
  background-image: url('couple-image.png'); /* Replace with your image */
  background-size: cover;
  background-position: center;
  height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
}

.hero-content {
  /*background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay */
  padding: 20px;
  border-radius: 10px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.cta-button {
  background-color: #e91e63; /* Romantic pink */
  color: white;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1rem;
}

.cta-button:hover {
  background-color: #c2185b;
}

/* Form Section */
.form-section {
  padding: 50px 20px;
  background-color: white;
  text-align: center;
}

.form-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

form {
  max-width: 500px;
  margin: 0 auto;
  text-align: right;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: 'Noto Sans Arabic', sans-serif;
}

button {
  background-color: #e91e63;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  cursor: pointer;
}

button:hover {
  background-color: #c2185b;
}

/* Footer Section */
footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px;
}

footer a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
}

footer a:hover {
  text-decoration: underline;
}

/* Text Section */
.text-section {
  padding: 50px 20px;
  background-color: white;
  text-align: center;
}

.text-content {
  max-width: 800px;
  margin: 0 auto;
}

.text-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.text-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
}

/* Text Section */
.text-section {
  padding: 25px 5px;
  background-color: #dac8c8;
  text-align: right;
}

.text-content {
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 20px;
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-content h2 {
  font-size: 2rem;
  color: #e91e63; /* Romantic pink for headings */
  margin-bottom: 15px;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.text-content ul {
  list-style-type: disc;
  margin-right: 20px;
  color: #555;
}

.text-content ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Add a colorful border to each text block */
.text-content:nth-child(odd) {
  border-right: 5px solid #e91e63; /* Pink border for odd sections */
}

.text-content:nth-child(even) {
  border-right: 5px solid #4caf50; /* Green border for even sections */
}

/* Call-to-Action Section */
.cta-section {
  padding: 50px 20px;
  background-color: #e91e63; /* Romantic pink background */
  text-align: center;
  color: white;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.cta-section .cta-button {
  background-color: white;
  color: #e91e63;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1rem;
  transition: background-color 0.3s ease;
}

.cta-section .cta-button:hover {
  background-color: #f8bbd0; /* Light pink on hover */
  color: #e91e63;
}