/* General Styles for Callout Section */
.callout-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background-color: #f9f9f9;
  transition: background-color 0.3s ease;
  margin-bottom: 30px;
}

/* Left Section (Title and Content) */
.callout-left {
  max-width: 70%;
}

.callout-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.callout-content {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* Right Section (Button) */
.callout-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #0073e6;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.callout-button:hover {
  background-color: #005bb5;
}

/* Responsive Styling */
@media (max-width: 768px) {
  .callout-section {
    flex-direction: column;
    align-items: flex-start;
  }

  .callout-left {
    max-width: 100%;
    margin-bottom: 15px;
  }

  .callout-button {
    align-self: flex-start;
  }
}
