.email-marketing-main {
  padding-bottom: 60px;
  background-color: #fffdf9;
}

.email-marketing-image-wrapper {
  display: flex;
  justify-content: center;
  padding: 2rem 1rem;
}

.email-marketing-illustration {
  width: 70%;
  max-width: 480px; /* Set a max width to prevent it from getting too large */
  height: auto;
  border-radius: 12px;
  border: 2px solid #e3c56b;
  box-shadow: 0 6px 16px rgba(102, 61, 41, 0.1);
}


.hero-section {
  background: linear-gradient(to right, #fff5e6, #fcead7);
  padding-top: 60px;
  padding-bottom: 60px;
  box-shadow: inset 0 -1px 10px rgba(0, 0, 0, 0.05);
}

.hero-section h1 {
  font-weight: 700;
  color: #663d29;
  text-shadow: 1px 1px 2px rgba(102, 61, 41, 0.1);
}

.hero-section p {
  color: #6f4e37;
  font-size: 1.15rem;
  margin-top: 15px;
}

.content-section {
  background-color: #fffdf6;
  border-left: 5px solid #e3c56b;
  padding: 30px 20px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  margin-bottom: 40px;
}

.content-section h2 {
  color: #663d29;
  font-weight: 600;
  margin-bottom: 20px;
}

.content-section ul,
.content-section ol {
  padding-left: 1.2rem;
}

.content-section ul li,
.content-section ol li {
  margin-bottom: 10px;
  font-size: 1.05rem;
  color: #333;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(to right, #b97c5d, #9a674d);
  color: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
}

.cta-section h3 {
  font-size: 1.8rem;
  font-weight: 600;
}

.btn-brand {
  background-color: #e3c56b;
  color: #000;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn-brand:hover {
  background-color: #da926e;
  color: #fff;
  transform: translateY(-2px);
}

/* Author Image */
.author-section .author-image {
    flex: 0 0 auto;
    text-align: center;
    width: 100%; /* Full width on mobile */
}

.author-section .author-image img {
    width: 120px; /* Slightly smaller for mobile */
    height: 120px;
    border-radius: 50%; /* Circular shape */
    border: 4px solid #da926e; /* Accent border */
    object-fit: cover;
}

/* Author Details */
.author-section .author-details {
    flex: 1;
    width: 100%; /* Full width on mobile */
    text-align: center; /* Center align text on mobile */
}

.author-section .author-details h3 {
    color: #663d29;
    font-size: 1.5rem; /* Adjust font size for smaller screens */
    margin-bottom: 10px;
    font-weight: bold;
}

.author-section .author-details p {
    margin-bottom: 10px;
    line-height: 1.6;
    font-size: 1rem; /* Smaller font size for mobile */
}

/* Author Title */
.author-section .author-details .author-title {
    color: #da926e;
    font-size: 1rem; /* Adjust font size */
    font-weight: 500;
}

/* Author Bio */
.author-section .author-details .author-bio {
    color: #555;
    font-size: 0.9rem; /* Adjust font size */
}

/* Responsive Design for Mobile */
@media (max-width: 768px) {
    .author-section {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center align items */
    }

    .author-section .author-image img {
        width: 100px; /* Smaller image on mobile */
        height: 100px;
        border-width: 3px; /* Adjust border size */
    }

    .author-section .author-details h3 {
        font-size: 1.4rem; /* Smaller heading size */
    }

    .author-section .author-details p,
    .author-section .author-details .author-bio {
        font-size: 0.9rem; /* Adjust text size for readability */
    }

    .author-section .author-details .author-title {
        font-size: 0.95rem; /* Adjust title size */
    }
}