
/* General reset and Montserrat font setup 
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
}

/* Mobile-specific styles 
@media (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        padding: 0 20px;
        text-align: center;
    }

    .header {
        color: #FF6b00;
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .subheader {
        color: #333;
        font-weight: 400;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cta-button {
        text-decoration: none;
        background-color: #FF6b00;
        color: #fff;
        padding: 15px 30px;
        font-weight: 600;
        font-size: 16px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .cta-button:hover {
        background-color: #e66000;
    }
}

/* Hide container on larger screens 
@media (min-width: 769px) {
    .container {
        display: none;
    }
} */




/* General reset and Montserrat font setup 
 {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f9f9f9;
}

/* Container for custom content 
.custom-container {
  
  
    width: 100%;
    padding: 20px;
    text-align: center;
}

/* Mobile-specific styles 
@media (max-width: 768px) {
    .custom-container {
         display: block; /* Ensure it's visible on mobile 
        display: flex;  /* Layout adjustments for mobile 
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
      
      
      
      
    }

    .header {
        color: #FF6b00;
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 10px;
    }

    .subheader {
        color: #333;
        font-weight: 400;
        font-size: 18px;
        margin-bottom: 20px;
    }

    .cta-button {
        text-decoration: none;
        background-color: #FF6b00;
        color: #fff;
        padding: 15px 30px;
        font-weight: 600;
        font-size: 16px;
        border-radius: 5px;
        transition: background-color 0.3s ease;
    }

    .cta-button:hover {
        background-color: #e66000;
    }
}

/* Desktop-specific styles 
@media (min-width: 769px) {
    .custom-container {
        display: none; /* Hide on desktop and larger screens 
    }
} */

/* General reset and Montserrat font setup */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
}

/* Container for custom content */
.custom-container {
    width: 100%;
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 100vh; /* Ensure the container covers full height */
}

/* Mobile-specific styles */
@media (max-width: 768px) {
    .custom-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 10px; /* Reduced padding for better fit */
    }

    .header {
        color: #FF6b00;
        font-weight: 600;
        font-size: 24px;
        margin-bottom: 10px;
      text-align: center;
    }

    .subheader {
        color: #333;
        font-weight: 400;
        font-size: 18px;
        margin-bottom: 20px;
    }
/*
    .cta-button {
        text-decoration: none;
        background-color: #FF6b00;
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        border-radius: 8px;
        margin: 10px 0; /* Space between buttons 
        padding: 18px 0; /* Vertical padding for height but 0 horizontal padding 
        width: 100%; /* Buttons take up full width of the screen 
        max-width: 400px; /* Max width to prevent too large on larger screens 
        box-sizing: border-box; /* Ensure padding doesn’t break the width
        text-align: center;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
        white-space: nowrap; /* Prevent text from wrapping 
        overflow: hidden; /* Hide overflowed text 
        text-overflow: ellipsis; /* Display "..." for overflowed text 
    }

    /* Button hover effect 
    .cta-button:hover {
        background-color: #e66000;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* More prominent shadow on hover 
    }

    /* Box shadow on normal state 
    .cta-button {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow by default 
    }  */
  
  /* -------------------------------------- */
   .cta-button {
      display: inline-flex;
      align-items: center;
      justify-content: center; /* Horizontally center image and text */
        text-decoration: none;
        background-color: #FF6b00;
        color: #fff;
        font-weight: 600;
        font-size: 16px;
        border-radius: 8px;
        margin: 2px 0; /* Space between buttons */
        padding: 12px 0; /* Vertical padding for height but 0 horizontal padding */
        width: 100%; /* Buttons take up full width of the screen */
        max-width: 400px; /* Max width to prevent too large on larger screens */
        box-sizing: border-box; /* Ensure padding doesn’t break the width */
        text-align: center;
        transition: background-color 0.3s ease, box-shadow 0.3s ease;
        white-space: nowrap; /* Prevent text from wrapping */
        overflow: hidden; /* Hide overflowed text */
        text-overflow: ellipsis; /* Display "..." for overflowed text */
    }
  
  /* Style for the image inside the button */
.cta-button .cta-image {
    width: 30px;  /* Make the image smaller, adjust this value as needed */
    height: auto; /* Maintain aspect ratio */
    margin-right: 15px; /* Space between the image and the text */
    vertical-align: middle; /* Vertically center the image with the text */
}

    /* Button hover effect */
    .cta-button:hover {
        background-color: #e66000;
        box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15); /* More prominent shadow on hover */
    }

    /* Box shadow on normal state */
    .cta-button {
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow by default */
    }
  
}

/* Desktop-specific styles */
@media (min-width: 769px) {
    .custom-container {
        display: none; /* Hide on desktop and larger screens */
    }
}

@media (max-width: 768px) {
    .custom-container {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: auto;
        padding: 10px; /* Reduced padding for better fit */
    }

  /* Hide <h1> element with .header class */
h1.header {
    display: none;
}

/* Ensure <h3> is visible (it should be by default) */
h3.header {
    display: block;  /* This is the default display for <h3>, but you can specify it explicitly if needed */
}
  
  
}






