@font-face {
  font-family: 'Troyline Sans';
  src: url('fonts/Sans-Regular.woff2') format('woff2'),
       url('fonts/Sans-Regular.woff') format('woff'),
       url('fonts/Sans-Regular.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: 'Troyline';
  src: url('fonts/Regular.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

h1 {
  font-family: 'Troyline Sans', sans-serif;
  line-height:1.2;
  font-size: 3em;
}
h2{
font-family: 'Troyline', serif;
  line-height:1.2;
    font-size:34pt;
}
  
/* Base Styles */
body {
  font-family: 'Open Sans', sans-serif; /* fallback for body text */
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #ffffff;
  line-height: 1.6;
}

/* Logo Section */
.logo-section {
    text-align: center;
    padding: 20px;
    background-color: #fff; /* Background color for the logo section */
    border-bottom: 1px solid #ddd;
}

.logo-container {
    display:flex;
}

.logo {
    width: 325px;
}

.two-column-section {
    display: flex;
    flex-wrap: wrap; /* Ensure responsiveness */
    justify-content: space-between;
    align-items: center;
    padding: 20px 20px;
    gap: 20px;
}

/* Left Column */
.left-column {
    flex: 1;
    text-align: center;
}

.responsive-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px; /* Optional styling */
}

/* Right Column */
.right-column {
    flex: 1;
    padding: 10px;
}

.right-column p {
    margin-bottom: 20px;
    color: #666;
    font-size: 1rem;
}

/* Style the form to be responsive */

#mc_embed_signup .indicates-required {text-align:left!important;}

/* Responsive Layout: Adjust layout for larger screens */
@media screen and (max-width: 600px) {
  #mc_embed_signup {
    flex-direction: row; /* Place input and button side by side on larger screens */
    align-items: center;
  }
  .mailchimp-form-container {
    width: 100%;
  max-width: 325px;
  margin: 0 auto; /* Center the form */
  padding: 10px;  /* Padding around the container */
  box-sizing: border-box;
}
}


/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: #fff;
    font-size: 0.9rem;
}