/* styles.css */
/* Reset some default styles */

/* For smooth scrolling for all scrolling actions */
html, body { 
    scroll-behavior: smooth;
    -webkit-scroll-behavior: smooth; /* Safari and Chrome */
    -moz-scroll-behavior: smooth; /* Firefox */
    -ms-scroll-behavior: smooth; /* Internet Explorer */
}

/* Add this CSS to enable smooth scrolling in Safari */
.smooth-scroll {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}


body, h2, h3, h4, h5, h6{
    font-family: 'Poppins', 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
}

h1 {
    font-family: 'Poppins', 'Roboto', sans-serif;
    font-size: 40px;
    margin: 40px 0px;
    padding: 0;
}

body {
    padding-top: 140px; /* Adjust the value to match the height of your sticky header */
}


h3 {
    font-weight: 500;
}

h4 {
    font-size: 20px; /* Adjust the font size for h4 */
    font-weight: 300; /* Adjust the font weight for h4 */
    color: #333; /* Adjust the text color for h4 */
}

p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}


/* Global Styles */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header Styles */
header {
    background-color: #f7ebda;
    color: #333;
    padding-bottom: 10px;
    padding-top: 0px
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-logo img {
    max-width: 80px; /* Adjust the logo size as needed */
}

nav {
    margin-left: auto; /* Pushes the nav to the right */
    margin-right: 50px; /* Adjust as needed */
}

nav ul {
    list-style: none;
    display: flex; /* Ensures horizontal layout */
    padding: 0;
    margin: 0; /* Adjust margins as necessary */
    align-items: center; /* Align menu items vertically */
}

nav ul li {
    margin-right: 20px; /* Space between each menu item */
}

nav ul li:last-child {
    margin-right: 0; /* No margin for the last item */
}

nav a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

/* Navigation link hover effect */
nav ul li a {
    text-decoration: none;
    color: #333; /* Default text color */
    font-weight: bold;
    transition: color 0.3s ease, border-bottom 0.3s ease; /* Smooth transition for hover effects */
}

nav ul li a:hover, nav ul li a:focus {
    color: #e9c99b; /* Change color on hover and focus */
}


.sticky-header {
    height: 100px; /* Reduce the height */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f7ebda;
    z-index: 1000;
    transition: height 0.3s ease; /* Smooth transition for height change */
}

/* Media query for smaller screens (e.g., screens with a max-width of 768px) */
@media screen and (max-width: 768px) {

    .sticky-header {
        height: 80px; /* Adjust the height for smaller screens */
        padding-top:0px;
    }

    .header-logo img {
        max-height: 60px; /* Adjust the max height of the logo for smaller screens */
    }

    body {
        padding-top: 100px; /* Adjust the value to match the height of your sticky header */
    }
}



/* Media Queries */
@media screen and (max-width: 768px) {
    nav ul li {
        margin-right: 10px;
    }
}

.language-selector {
    display: inline-block;
    position: relative;
  }
  
  .selected-language {
    display: flex;
    align-items: center;
    cursor: pointer;
  }
  
  .selected-language img {
    width: 24px;
    height: 16px;
    margin-right: 8px;
  }
  
  .language-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
    margin: 0;
    z-index: 1;
  }
  
  .language-options li {
    display: block;
  }
  
  .language-options a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 10px 16px;
  }
  
  .language-options img {
    width: 24px;
    height: 16px;
    margin-right: 8px;
  }
  
  .language-options a:hover {
    background-color: #f0f0f0;
  }
  
  .language-options.visible {
    display: block;
  }

/* Initially hide language names and options */
.language-name,
.language-options {
  display: none;
  position: absolute;
}

/* Display language names and options when the menu is open */
.language-selector.open .language-name,
.language-selector.open .language-options {
  display: inline-block;
  position: static;
}

/* Position the options menu to the left */
@media screen and (max-width: 768px) {
  .language-selector {
    position: relative;
  }

  .language-options {
    left: -50px; /* Adjust the value as needed to fully show the menu */
  }

  .language-selector.open .language-options {
    left: 0;
  }
}


    





/* Hero Section Styles */
.hero {
    background-color: #f7ebda;
    color: #333;
    padding: 60px 0;
    display: flex;
    align-items: center;
    flex-direction: row; /* Default: Image on the right for larger screens */
    margin-top: -30px;
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row; /* Default: Image on the right for larger screens */
}

.hero-content {
    flex: 1;
    padding: 20px;
    text-align: left;
}

.hero h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 30px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
}

.hero .btn {
    display: inline-block;
    background-color: #e9c99b;
    color: #000;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for hover effects */
}

.hero .btn:hover, .btn:focus {
    transform: scale(1.05); /* Slightly enlarge the button */
    cursor: pointer; /* Changes the cursor to the 'clickable' hand icon */

}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 80%;
    border-radius: 40px;
}

/* Styles for the App Store and Google Play buttons */
.app-store-logos a {
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for hover effects */
}

.app-store-logos a:hover, .app-store-logos a:focus {
    transform: scale(1.05); /* Slightly enlarge the button */
    cursor: pointer; /* Changes the cursor to the 'clickable' hand icon */
}


/* Media Queries */
@media screen and (max-width: 768px) {
    .hero {
        flex-direction: column-reverse; /* Image on top for smaller screens */
    }

    .hero .container {
        flex-direction: column-reverse; /* Image on top for smaller screens */
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        margin-top: 20px;
    }
}

.app-store-logos {
    display: flex;
    justify-content: flex-start; /* Align left by default on larger screens */
    align-items: center;
    margin-top: 20px;
}

.app-store-logos img {
    max-width: 95px; /* Adjust the max-width as needed */
    margin-right: 10px; /* Add some spacing between the logos */
}

/* Media Queries */
@media screen and (max-width: 768px) {
    .app-store-logos {
        justify-content: center; /* Center on smaller screens */
    }
}

/* FEATURES Section Styles */
.features {
    background-color: #fff;
    padding: 60px 0;
    text-align: center;
}

.features-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-column {
    flex: 1; /* Each column takes an equal portion of the container */
    max-width: 25%; /* Limit the width of each column on larger screens */
}

.feature-column img {
    border-radius: 40px;
    max-width: 100%;
}

/* Right Feature Column */
.right-feature-column {
    max-width: 65%;
    min-width: 65%;
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between feature cards */
}

.feature {
    background-color: #ffffff; /* Card background */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    text-align: left; /* Align text to the left for better readability */
}

.feature h4 {
    font-size: 20px; /* Adjusted for modern look */
    color: #333;
    margin-bottom: 10px;
}

.feature p {
    font-size: 16px;
    color: #666;
    font-weight: 300;
}

.feature-icon {
    /* Style for icons, if added */
    font-size: 24px;
    color: #007bff; /* Example icon color */
    margin-right: 10px;
}

.features .btn {
    display: inline-block;
    background-color: #e9c99b;
    color: #000;
    text-decoration: none;
    text-align: center;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for hover effects */
    max-width: 20%;
}

.features .btn:hover, .btn:focus {
    transform: scale(1.05); /* Slightly enlarge the button */
    cursor: pointer; /* Changes the cursor to the 'clickable' hand icon */

}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .right-feature-column {
        max-width: 100%;
        min-width: 100%;
        padding-top: 50px;
    }

    .feature-column img {
        max-width: 80%; /* Adjust image size on smaller screens */
    }
}

@media screen and (min-width: 769px) and (max-width: 900px) {
    .right-feature-column {
        max-width: 50%;
        min-width: 50%;
    }
}



/* Use-cases Section Styles */
.use-cases {
    padding: 20px 0;
    background-color: #f0f3f2; /* Choose a background color or image */
}

.use-case {
    margin-bottom: 20px;
    padding-top: 20px;
    text-align: center;
}

.use-case h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
}

.use-case p {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
    font-weight: 300;
}

.use-case-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.image-container {
    flex-basis: calc(33.33% - 20px); /* Three images per row on larger screens */
    display: flex;
    flex-direction: column; /* Image above description */
    align-items: center; /* Center-align items */
    text-align: center;
}

.image-container img {
    width: 80%; /* Adjust width as needed */
    border-radius: 10px; /* Optional: for styled images */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Optional: for depth */
}

.image-description {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
    font-weight: 300;
    flex: 1; /* Take up the remaining space */
    text-align: left; /* Align description text to the left */
}

/* Media Query for Smaller Screens */
@media screen and (max-width: 768px) {
    .image-container {
        flex-basis: 100%; /* Full width for smaller screens */
        flex-direction: row; /* Image next to description */
        align-items: center; /* Vertically center image and description */
    }

    .image-container img {
        width: 40%; /* Adjust image width */
        margin-right: 10px; /* Space between image and description */
    }

    .image-description {
        flex: 1;
        text-align: left;
    }
}



/* Style the CTA-middle section */
.cta-section-middle {
    background-color: #6B8E7D; /* Choose a background color or image */
    text-align: center; /* Center-align the buttons */
    padding: 60px 10px; /* Add padding for spacing */
}

/* Style the CTA description container */
.cta-description-middle {
    max-width: 800px; /* Limit the width to prevent text from stretching too wide */
    margin: 0 auto; /* Center-align the description */
    line-height: 1.2; /* Adjust line spacing for readability */
}

/* Style the first sentence */
.first-sentence-middle {
    font-size: 28px; /* Larger font size for the first sentence (title-like) */
    color: #fff; /* Text color */
    font-weight: bold; /* Make it bold for emphasis */
    margin-bottom: 10px; /* Add spacing between the sentences */
}

/* Style the second sentence */
.second-sentence-middle {
    font-size: 18px; /* Smaller font size for the second sentence */
    color: #ebebeb; /* Slightly different text color */
    margin-bottom: 50px;

}

/* Style the primary CTA button */
.primary-cta-button-middle {
    display: inline-block;
    background-color: #e9c99b;
    color: #000;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for hover effects */
    margin-bottom: 20px;
}

.primary-cta-button-middle:hover, .primary-cta-button-middle:focus{
    transform: scale(1.05); /* Slightly enlarge the button */
    cursor: pointer; /* Changes the cursor to the 'clickable' hand icon */

}




/* Image feature section with SLIDER */
.image-feature .container {
    margin: auto;
    padding-bottom: 40px;
    padding-top: 60px;
    position: relative;
}

.image-feature {
    background-color: #f7ebda;

}

.image-feature .image-row {
    display: flex;
    justify-content: center;
    align-items: center;
}

.static-images {
    display: block;
    width: 20%; /* Adjust as needed */
}

.static-images img {
    max-width: 100%; /* Ensure images don't exceed container width */
    height: auto; /* Maintain aspect ratio */
}

/* Left Images */
.static-images.left-images {
    margin-right: 100px; /* Increase right margin to push images to the left */
    /* Other styles... */
}

/* Right Images */
.static-images.right-images {
    margin-left: 100px; /* Increase left margin to push images to the right */
    /* Other styles... */
}

.swiper-container {
    position: relative;
    width: calc(100% + 0px); /* Increase width: 30px padding on each side */
    margin-left: 0px; /* Adjust margin to align with the page layout */
    overflow: hidden;
    padding: 0 30px; /* Padding for the arrows */
    margin: 0 20px;
    background-color: #f7ebda;
}

.mySwiper {
    width: 25%; /* Adjust as needed for larger screens */
    max-width: 600px; /* Maximum width of the slider on larger screens */
}

.swiper-slide {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-slide img {
    max-width: 100%; /* Ensure images don't exceed slide width */
    height: auto; /* Maintain aspect ratio */
}

.swiper-button-prev, .swiper-button-next {
    background-color: black;
    padding: 5px;
    position: absolute;
    top: 100%; /* Position arrows below the slider */
    transform: translateY(-50%); /* Adjust vertical positioning */
    z-index: 10; /* Ensure arrows are above other content */
    --swiper-navigation-size: 30px;
}

.swiper-button-prev::after, .swiper-button-next::after {
    color: #fff !important;
}

.swiper-button-prev {
    transform: translate(5px, 0); /* Adjust horizontal positioning */
}

.swiper-button-next {
    transform: translate(-5px, 0); /* Adjust horizontal positioning */
}


.swiper-container .swiper-pagination {
    bottom: 40px !important; /* Move 20px higher and ensure override with !important */
    position: absolute; /* Ensure the position is set to absolute */
}


@media screen and (max-width: 767px) {
    .image-feature .swiper-container {
        padding: 0; /* Remove padding for full width */
    }

    .image-feature .mySwiper {
        width: 60%; /* Full width on smaller screens */
        max-width: none; /* No max-width on smaller screens */
    }

    .image-feature .swiper-button-prev, 
    .image-feature .swiper-button-next {
        display: none; /* Hide navigation arrows on smaller screens */
    }

    .image-feature .static-images {
        display: none; /* Hide static images on smaller screens */
    }
    .swiper-container .swiper-pagination {
        bottom: 30px !important; /* Move 20px higher and ensure override with !important */
        position: absolute; /* Ensure the position is set to absolute */
    }
}





/* FAQ Section Styles */
.faq {
    background-color: #fff; /* Same background as features section */
    padding-top: 40px;
    padding-bottom:0px;
    text-align: center;
}

.faq-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.faq-column {
    flex: 1;
    max-width: 45%;
    margin-bottom: 40px;
    text-align: left;
    margin-right: 20px; /* Add margin between columns */
}

.faq-item {
    background-color: #ffffff; /* Card background */
    margin-bottom: 20px;
    padding: 20px;
    border: 0px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    position: relative; /* Position for the icon */
    flex-basis: calc(50% - 10px); /* Adjust basis for two columns with gap */
    box-sizing: border-box; /* Include padding and border in the width */
    text-align: left; /* Align text to the left */
}

/* Indicate that FAQ titles are clickable when hovering */
.faq-question {
    cursor: pointer;
    transition: color 0.3s;
    display: flex; /* Enable flex layout for icon alignment */
    align-items: center; /* Align icon vertically */
}

/* Change the text color when hovering over FAQ titles */
.faq-question:hover, .faq-question:focus {
    color: #e9c99b;
}

.faq-question h4:hover,  .faq-question h4:focus{
    color: #e9c99b;
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #333;
    flex: 1; /* Allow the title to expand and push the icon to the right */
}

.faq h3 {
    font-weight: 500;
    margin-bottom: 30px;
    color: #333;
}

/* Icon for accordion */
.accordion-icon {
    font-size: 14px;
    margin-left: 10px; /* Add spacing between title and icon */
    transform: rotate(0deg); /* Initial rotation for closed state */
    transition: transform 0.3s; /* Add a transition for rotation */
}

/* Rotate the triangle icon when FAQ is expanded */
.faq-item.open .faq-question .accordion-icon {
    transform: rotate(90deg); /* Rotate 90 degrees for open state */
}

.faq-answer p {
    font-size: 16px;
    color: #666;
    font-weight: 300;
    line-height: 1.5;
}

/* Media Queries for Smaller Screens */
@media screen and (max-width: 767px) {
    .faq-container {
        flex-direction: column;
        margin-right: 0; /* Remove margin between columns on smaller screens */
    }

    .faq-column {
        max-width: 100%;
    }
}

/* Media Queries for Larger Screens */
@media screen and (min-width: 768px) {
    .faq-container {
        justify-content: center; /* Center the columns */
    }

    .faq-column {
        max-width: 48%; /* Adjust the width to accommodate two columns */
        margin-right: 20px; /* Add margin between columns */
    }
}
.see-more-btn {
    background-color: #f7ebda; /* Example color */
    color: #000;
    border: none;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: block; /* Change to block */
    font-size: 16px;
    margin: 20px auto; /* Adjust top & bottom margin as needed, auto for left & right */
    cursor: pointer;
    border-radius: 5px;
}

.faq-column .faq-item:nth-child(n+5) {
    display: none;
}


/* device compatibility section*/

#device-compatibility h2 {
    margin-bottom: 50px; /* Adjust this value as needed */
    margin-top: 50px;
    text-align: center;
    font-weight: 500;
}

.device-compatibility
{
    background:#f0f3f2;
}

/* Base styles */
.device-images {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.device-image {
    margin: 10px;
    text-align: center; /* Center-aligns the text below the image */
}

.device-image img {
    max-width: 80%; /* Limits the image width to the container's width */
    height: auto; /* Maintains the image's aspect ratio */
}


    .device-images {
        flex-direction: row;
        justify-content: space-around; /* Distribute space evenly around the items */
    }

    .device-image {
        /* Assign flexible grow, shrink, and basis values */
        flex: 0 1 auto; /* Do not grow, can shrink, and size based on content */
    }

    .smartphone-image {
        max-width: 100%; /* Restrict the maximum width of the smartphone container */
    }

    .smartphone-image img {
        max-height: 50%; /* Restrict height to 50% */
    }

    /* Optionally adjust the width of other containers if needed */
    .ipad-image {
        max-width: 35%; 
    }

    /* Optionally adjust the width of other containers if needed */
    .ipad-image img {
        max-width: 80%; 
    }

     /* Optionally adjust the width of other containers if needed */
     .macbook-image {
        max-width: 100%; 
    }

     /* Optionally adjust the width of other containers if needed */
     .macbook-image img{
        max-width: 100%; 
    }










/* Style the CTA section */
.cta-section {
    background-color: #f7ebda; /* Choose a background color or image */
    text-align: center; /* Center-align the buttons */
    padding: 40px 0; /* Add padding for spacing */
}

/* Style the CTA description container */
.cta-description {
    max-width: 800px; /* Limit the width to prevent text from stretching too wide */
    margin: 0 auto; /* Center-align the description */
    line-height: 1.2; /* Adjust line spacing for readability */
}

/* Style the first sentence */
.first-sentence {
    font-size: 32px; /* Larger font size for the first sentence (title-like) */
    color: #333; /* Text color */
    margin-bottom: 10px; /* Add spacing between the sentences */
}

/* Style the second sentence */
.second-sentence {
    font-size: 18px; /* Smaller font size for the second sentence */
    color: #555; /* Slightly different text color */
}

/* Style the primary CTA button */
.primary-cta-button {
    display: inline-block;
    background-color: #e9c99b;
    color: #000;
    text-decoration: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-weight: bold;
    transition: transform 0.3s ease, filter 0.3s ease; /* Smooth transition for hover effects */
}

.primary-cta-button:hover, .primary-cta-button:focus{
    transform: scale(1.05); /* Slightly enlarge the button */
    cursor: pointer; /* Changes the cursor to the 'clickable' hand icon */

}

/* Footer Styles */
.footer {
    background-color: #fff; /* Use your desired background color */
    color: #333; /* Text color */
    padding-top:10px;
    padding-bottom:10px;
    text-align: center;
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-content {
    display: flex;
    flex-direction: column; /* Stack content vertically */
    align-items: center; /* Center content horizontally */
    margin-bottom: 0px; /* Add some spacing between sections */
}

/* Center-align the "Follow storytAIm" text */
.footer h4 {
    font-size: 20px;
    margin-bottom: 10px;
    text-align: center;
}

/* Center-align the social icons */
.footer-social ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center; /* Center icons horizontally */
    gap: 10px; /* Add some spacing between icons */
}

/* Center-align the copyright text */
.footer-copyright {
    margin-top: 0px;
    font-size: 14px;
    text-align: center;
}

.footer-social a {
    color: #995D30; /* Icon color */
    text-decoration: none;
    font-size: 24px; /* Increase icon size */
    transition: color 0.3s;
}

.footer-social a:hover {
    color: #e9c99b; /* Hover color */
}

/* Media Queries */
@media screen and (max-width: 768px) {
    header {
        padding: 20px 0;
    }

    header h1 {
        font-size: 20px;
    }

    nav ul li {
        margin-right: 10px;
    }

    .hero h2 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

}

.footer-links {
    margin-top: 10px;
    margin-bottom: 10px;
}

.footer-links a {
    color: #995D30; /* Adjust the color as needed */
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e9c99b; /* Hover color */
}


  
  /* Policy webpage */

  .policy-section p {
    font-size: 16px;
    color: #666;
    font-weight: 300;
}

.policy-section h2 {
    font-size: 20px;
    color: #333;
}


/* Mailchimp form */

#mc_embed_shell {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0,0,0,0.4); 
    padding-top: 60px;
    border-radius: 8px;
}

.modal-content {
    background-color: #fefefe;
    margin: auto; /* Center the modal-content horizontally and vertically */
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 600px; /* Adjust the maximum width as needed */
    position: relative;
    top: 50%;
    transform: translateY(-50%); /* This will vertically center your form */
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2); /* Optional: Adds a box shadow for better aesthetics */
    border-radius: 8px;
}
/* Style the form container */
/* Form container styling */
#mc_embed_signup {
    text-align: center;
    background: #fff;
    padding: 2em;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Headline styling */
#mc_embed_signup h2 {
    font-family: 'Poppins', 'Roboto', sans-serif;
    font-size: 2em; /* Adjust the size as needed */
    font-weight: bold;
    margin-bottom: 0.5em;
}
#mc_embed_signup h3 {
    font-family: 'Poppins', 'Roboto', sans-serif;
    font-size: 1.5em; /* Adjust the size as needed */
    font-weight: bold;
    margin-bottom: 1em;
}

/* Input field styling */
#mc_embed_signup .mc-field-group input {
    font-family: 'Poppins', 'Roboto', sans-serif;
    border: 1px solid #888; /* Solid black border */
    border-radius: 8px;
    padding: 1em;
    font-size: 1em;
    margin-bottom: 1em;
    width: 80%; /* Adjust the width as needed */
    display: block;
    margin-left: 10%; /* Match this with label's margin-left for alignment */
    margin-right: 10%; /* This is optional, for maintaining symmetry */
    
}

#mc_embed_signup .mc-field-group label {
    text-align: left;
    display: block; /* Ensures the label takes up its own line */
    margin-left: 10%; /* Adjust as needed to align with your form's structure */
    margin-bottom: 0.5em; /* Adds some space below the label */
    font-size: 0.6em;
}

/* Subscribe button styling */
#mc_embed_signup .button {
    font-family: 'Poppins', 'Roboto', sans-serif;
    background-color: #e9c99b; /* Black background */
    color: #000000; /* White text */
    padding: 1em 2em;
    font-size: 1em;
    border: none;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-block; /* Make sure the button doesn't stretch */
    border-radius: 8px;
}

#mc_embed_signup .button:hover {
    transform: scale(1.05); /* Slightly enlarge the button */
}

/* Adjustments for different screen sizes */
@media (max-width: 600px) {
    #mc_embed_signup .mc-field-group input,
    #mc_embed_signup .button {
        width: 90%; /* Full width on smaller screens */
    }
}




  

