/* Reduce space between top and bottom header rows */
#ct-top-header {
  padding-bottom: 5px !important;
}

#ct-bottom-header {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}
.wp-block-jetpack-contact-form input[type="text"],
.wp-block-jetpack-contact-form input[type="email"],
.wp-block-jetpack-contact-form textarea {
    display: block !important;
    width: 100% !important;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    background-color: #fff;
    color: #000;
body {
  font-family: 'Open Sans', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #222;
}
h1, h2, h3 {
  font-weight: 600;
}
.hero {
  display: flex;
  align-items: center; /* Vertical alignment */
  justify-content: space-between;
  gap: 2rem; /* Space between text and image */
}
.hero img {
  max-width: 400px;
  border-radius: 8px;
}
.hero-text {
  max-width: 50%;
}
/* Bottom Section Layout */
.bottom-section {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.bottom-section .card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  flex: 1;
  max-width: 350px;
}

.bottom-section .card h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #003366; /* Matches your site's tone */
}

.bottom-section ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.bottom-section ul li {
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #444;
}

.bottom-section ul li:last-child {
  border-bottom: none;
}
align-content
/* Container styling */
.subscribe-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0; /* Remove spacing between input and button */
  max-width: 100%;
}

/* Input styling */
.subscribe-container input[type="email"] {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-right: none; /* Merge with button */
  border-radius: 4px 0 0 4px;
  box-sizing: border-box;
  height: 45px; /* Match button height */
}

/* Button styling */
.subscribe-container button {
  padding: 0 20px;
  font-size: 16px;
  background-color: #264653; /* Adjust to your theme */
  color: white;
  border: 1px solid #264653;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  height: 45px; /* Match input height */
}

/* Mobile responsive: stack elements */
@media (max-width: 600px) {
  .subscribe-container {
    flex-direction: column;
  }

  .subscribe-container input[type="email"],
  .subscribe-container button {
    border-radius: 4px;
    border-right: 1px solid #ccc;
    width: 100%;
  }

  .subscribe-container button {
    margin-top: 8px;
    border-color: #264653;
  }
}