img,
table,
pre,
video,
canvas {
    max-width: 100%;
    height: auto;
}

* {
    box-sizing: border-box;
    
}

body {
    overflow-x: hidden; /* Prevents horizontal scrollbar */
}

.main-content {
    display: flex;
    flex-direction: row; /* Ensures content is laid out in a row */
    flex-wrap: wrap; /* Allows items to wrap onto the next line */
    justify-content: space-between; /* Spaces out the children */
    align-items: flex-start; /* Aligns items at the start of the flex container */
    gap: 20px; /* Adds space between your left and right content */
    margin-top: 15px;
    
}
    
.logo-container {
    /* Adjust width as needed */
    width: 65px;
    margin-left: 40px;
    
}

.left-content, .image-area {
    flex: 1; /* Takes up the available space */
    margin-top: 0px; /* Adjust the value as needed */
    padding: 25px;
    max-width: 800px; /* Adjust as needed to fit your design for left-content */
}

.left-content {
    max-width: 100%; /* Takes the full width of the screen */
    margin-left: 0; /* Adjust the value as needed */
}

.image-area {
    max-width: 90%; /* Takes the full width of the screen */
    order: 2; /* Moves the image area to the bottom */
    text-align: center; /* Centers inline or inline-block elements (like images) */
    margin-right: 40px auto; /* Centers the image */
    margin-top: 20px;
    height: auto;

}

.intro-image {
    width: 65%; /* Limits the image size */
    height: auto;
    margin: 10px auto; /* Centers the image */
}

.result-image {
    width: 80%;
    margin: 0px auto; /* Centers the image */

}

#startNow {
    margin-top: 40px;
    font-size: 12px; /* Increases the font size */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white; /* Changes the text color */
    background-color: #f59247; /* Changes the background color */
    padding: 10px 15px; /* Adds padding inside the button */
    border: none; /* Removes the border */
    border-radius: 5px; /* Rounds the corners */
    cursor: pointer; /* Changes the cursor to a pointer on hover */
    align-items: right;
  }


/* Part 1 aka choices phase */
  
#part1 {
    padding: 0px; /* Applies padding to the element with the ID 'introduction' */
    margin-bottom: 10px; /* Space below the title */
    margin-top: 20px; 
    margin: 20px 40px; /* Adjusted margins */
}
    
 
  #part1 h2 {
    font-size: 1.5rem; /* Increased font size for visibility */
    color: #333; /* Dark grey color for the title text */
    margin-bottom: 10px; /* Space below the title */
}

#part1 p {
    font-size: 1rem; /* Standard text size */
    color: #666; /* Lighter grey color for the paragraph text */
    line-height: 1.6; /* Spacing between lines for better readability */
}

#part1 ul {
    font-size: 14px; 
    margin-top: 10px; /* Space above the list */
    margin-bottom: 30px;
}

#part1 li {
    font-size: 1rem; /* Adjusting font size for better readability */
   margin-bottom: 5px; /* Space between list items */
}

.button-container {
    text-align: center;
    margin-top: 0px;
}

.hidden-checkbox {
    display: none; /* Hide the actual checkbox */
}


.question-text {
    font-weight: bold;
    margin-bottom: 30px;
}

.choice-item {
    display: flex;
    align-items: center; /* Align items vertically in the center */
    gap: 10px; /* Adds space between the checkbox and the text */
    background-color: #e5e8ef;
    border: 2px solid #ddd;
    padding: 10px;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.choice-item {
    margin-bottom: 10px; /* Add space between choice items */
    width: 100%; /* Ensure full width to utilize space */
    box-sizing: border-box; /* Include padding and border in the element's total width and height */
}

 /* Targeting an element with the ID 'nextQuestion' for a button */
 #nextQuestion {
    margin-top: 25px;
    margin-right: 45px;
    font-size: 12px; /* Increases the font size */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white; /* Changes the text color */
    background-color: #f59247; /* Changes the background color */
    padding: 10px 15px; /* Adds padding inside the button */
    border: none; /* Removes the border */
    border-radius: 5px; /* Rounds the corners */
    cursor: pointer; /* Changes the cursor to a pointer on hover */
    align-items: right;
    float: right;
  }


  
/* Completed page */
#finalMessage {
    padding: 0px; /* Applies padding to the element with the ID 'introduction' */
    margin-bottom: 10px; /* Space below the title */
    margin-top: 30px; 
    margin-left: 40px; 
    margin-right: 50px; 
}


#finalMessage h2 {
    font-size: 24px; /* Larger text for the title */
    color: #333; /* Dark grey color for the title text */
    margin-bottom: 10px; /* Space below the title */
}

#finalmessage p {
    font-size: 23px; /* Standard text size */
    color: #666; /* Lighter grey color for the paragraph text */
    line-height: 1.6; /* Spacing between lines for better readability */
}

#finalmessage li{
    font-size: 16px; 
    margin-top: 10px; /* Space above the list */
    font-family: 'Montserrat', sans-serif;
}



/* Email form before results */
#userInfoForm {
    max-width: 500px; /* Adjusted width */
    margin: 20px auto;
    margin-top: 40px;
    padding: 20px;
    background-color: #f3f4f6;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left; /* Align text to the left */
  }
  
  #userInfoForm div {
    margin-bottom: 15px;
  }
  
  #userInfoForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
  }
  
  #userInfoForm input[type="text"],
  #userInfoForm input[type="email"] {
    width: calc(100% - 20px); /* Full width of the form with padding */
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  
  #userInfoForm input[type="text"]:focus,
  #userInfoForm input[type="email"]:focus {
    border-color: #007bff;
    outline: none;
  }
  
  

  /* Targeting an element with the ID 'startNow' for a button */
  #calculateResults {
    margin-top: 50px;
    margin-right: 0px;
    font-size: 12px; /* Increases the font size */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white; /* Changes the text color */
    background-color: #f59247; /* Changes the background color */
    padding: 10px 15px; /* Adds padding inside the button */
    border: none; /* Removes the border */
    border-radius: 5px; /* Rounds the corners */
    cursor: pointer; /* Changes the cursor to a pointer on hover */
    align-items: right;
    float: right;
  }

  #calculateResults:hover {
    background-color: #94d7a4;
  }


  #contactInfo h2 {
    font-size: 20px;
    color: #373737;
    margin: 5px 0 0;
    margin-bottom: 15px;
}

#contactInfo p {
    font-size: 14px;
    color: #373737;
    margin: 5px 0 0;
    line-height: 1.5; /* This is a unitless number, it's generally the preferred way */
}


/* Contact info at result page */
#contactInfo {
    border: 1px solid #f0f0f0; /* Light grey border */
    background-color: #f0f0f0; /* Light grey background */
    padding: 25px; /* Spacing inside the box */
    margin-top: 15px; /* Spacing outside the box */
    border-radius: 5px; /* Rounded corners */
    text-align: left; /* Align text to the center */
    display: none; /* Keep it hidden initially */
    margin-left: auto; /* Centering horizontally */
    margin-right: auto; /* Centering horizontally */
    max-width: 90%; /* Adjust the max width as necessary */
    padding-bottom: 80px;
}

.contact-button {
   margin-top: 30px;
    font-size: 12px; /* Increases the font size */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white; /* Changes the text color */
    background-color: #f59247; /* Changes the background color */
    padding: 10px 15px; /* Adds padding inside the button */
    border: none; /* Removes the border */
    border-radius: 5px; /* Rounds the corners */
    cursor: pointer; /* Changes the cursor to a pointer on hover */
    align-items: right;
    float: right;

}


/* Desktop styles */

@media (max-width: 980px) {
    .main-content {
        display: flex;
        flex-direction: column; /* Ensures content is laid out in a row */
        flex-wrap: wrap; /* Allows items to wrap onto the next line */
        justify-content: space-between; /* Spaces out the children */
        align-items: flex-start; /* Aligns items at the start of the flex container */
        gap: 20px; /* Adds space between your left and right content */
        margin-top: 15px;
    }
    
    .left-content {
        max-width: 100%; /* Takes the full width of the screen */
        margin-left: 0; /* Adjust the value as needed */
        height: auto;
        order: 1; /* Keep the text area on top */
    }
    
    .image-area {
        width: 100%; /* Takes the full width of the screen */
        order: 2; /* Moves the image area to the bottom */
        text-align: center; /* Centers inline or inline-block elements (like images) */
        margin: 40px auto; /* Centers the image */
        margin-top: -25px;
        height: auto;
    }
    
    .intro-image {
        width: 80%; /* Limits the image size */
        height: auto;
        margin: 40px auto; /* Centers the image */
    }
    
    .result-Image {
        max-width: 100%; /* Limits the image size */
        height: auto;
    }
    
    
      /* Targeting an element with the ID 'startNow' for a button */
      #startNow {
        margin-top: 50px;
        font-size: 40px; /* Increases the font size */
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        color: white; /* Changes the text color */
        background-color: #f59247; /* Changes the background color */
        padding: 30px 30px; /* Adds padding inside the button */
        border: none; /* Removes the border */
        border-radius: 5px; /* Rounds the corners */
        cursor: pointer; /* Changes the cursor to a pointer on hover */
        align-items: center;
      }

      #part1 {
        width: 90%;
        padding: 0px; /* Applies padding to the element with the ID 'introduction' */
        margin-bottom: 10px; /* Space below the title */
        margin-top: 20px; 
        margin: 20px 40px; /* Adjusted margins */
    }

    #part1 h2 {
        font-size: 30px;
        color: #333; /* Dark grey color for the title text */
        margin-bottom: 10px; /* Space below the title */
    }
    
    #part1 p {
        font-size: 40px; /* Standard text size */
        color: #666; /* Lighter grey color for the paragraph text */
        line-height: 1.6; /* Spacing between lines for better readability */
    }
    
    #part1 ul {
        font-size: 40px;
        margin-top: 10px; /* Space above the list */
        margin-bottom: 30px;
    }
    
    #part1 li {
        font-size: 1rem; /* Adjusting font size for better readability */
        margin-bottom: 5px; /* Space between list items */
    }
    
    .question-text {
        width: 100%;
        font-weight: bold;
        margin-bottom: 30px;
    }

    .button-container {
        text-align: center;
        margin-top: 0px;
    }

    .choice-item {
        margin-bottom: 10px; /* Add space between choice items */
        margin-top: 20px;
        font-size: 40px;
        width: 100%; /* Ensure full width to utilize space */
        box-sizing: border-box; /* Include padding and border in the element's total width and height */
        padding: 25px;
    }

    .choice-item .checkmark,
    .choice-item .hidden-checkbox {
        display: none;
    }
    
     /* Targeting an element with the ID 'nextQuestion' for a button */
     #nextQuestion {
        margin-top: 50px;
        font-size: 40px; /* Increases the font size */
        font-family: 'Montserrat', sans-serif;
        font-weight: 700;
        color: white; /* Changes the text color */
        background-color: #f59247; /* Changes the background color */
        padding: 30px 30px; /* Adds padding inside the button */
        border: none; /* Removes the border */
        border-radius: 5px; /* Rounds the corners */
        cursor: pointer; /* Changes the cursor to a pointer on hover */
        float: right;
      }
    
      
/* Completed page */
#finalMessage {
    padding: 0px; /* Applies padding to the element with the ID 'introduction' */
    margin-bottom: 10px; /* Space below the title */
    margin-top: 30px; 
    margin-left: 40px; 
    margin-right: 50px; 
}


#finalMessage h2 {
    font-size: 30px; /* Larger text for the title */
    color: #333; /* Dark grey color for the title text */
    margin-bottom: 50px; /* Space below the title */
}

#finalmessage p {
    color: #666; /* Lighter grey color for the paragraph text */
    line-height: 1.6; /* Spacing between lines for better readability */
}

#finalmessage li{
    font-size: 16px; 
    margin-top: 10px; /* Space above the list */
    font-family: 'Montserrat', sans-serif;
}



/* Email form before results */
#userInfoForm {
    max-width: 90%; /* Adjusted width - if you want the form to be wider, you could increase this value */
    margin: 20px auto; /* Centers the form on the page */
    margin-top: 80px; /* Adds space above the form */
    padding: 20px; /* Adds padding inside the form */
    background-color: #f3f4f6; /* Sets the background color of the form */
    border-radius: 10px; /* Rounds the corners of the form */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a shadow to the form */
    text-align: left; /* Aligns text to the left */
}

#userInfoForm div {
    margin-bottom: 20px; /* Space between form rows */
}

#userInfoForm label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    font-size: 30px; /* Larger label font size */
    color: #333; /* Label text color */
}

#userInfoForm input[type="text"],
#userInfoForm input[type="email"] {
    width: calc(100% - 20px); /* Full width of the form with padding */
    padding: 40px; /* Increased padding for larger input fields */
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 40px; /* Increase font size of input text */
}

#userInfoForm input[type="text"]:focus,
#userInfoForm input[type="email"]:focus {
    border-color: #007bff; /* Changes border color on focus */
    outline: none; /* Removes default outline on focus */
}

/* Increase size of placeholder text */
#userInfoForm input::placeholder {
    font-size: 35px; /* Increase font size of placeholder text */
    color: #888; /* You can also change the color if needed */
}

#userInfoForm > :last-child {
    margin-top: 80px; /* Adjust this value to the desired space */
}

  /* Targeting an element with the ID 'startNow' for a button */
  #calculateResults {
    margin-top: 80px;
    font-size: 40px; /* Increases the font size */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white; /* Changes the text color */
    background-color: #f59247; /* Changes the background color */
    padding: 30px 30px; /* Adds padding inside the button */
    border: none; /* Removes the border */
    border-radius: 5px; /* Rounds the corners */
    cursor: pointer; /* Changes the cursor to a pointer on hover */
    float: right;
  }

  #calculateResults:hover {
    background-color: #94d7a4;
  }

  
/* Contact info at result page */
#contactInfo {
    border: 1px solid #f0f0f0; /* Light grey border */
    background-color: #f0f0f0; /* Light grey background */
    padding: 40px; /* Spacing inside the box */
    margin-top: 15px; /* Spacing outside the box */
    border-radius: 5px; /* Rounded corners */
    text-align: left; /* Align text to the center */
    display: none; /* Keep it hidden initially */
    margin-left: auto; /* Centering horizontally */
    margin-right: auto; /* Centering horizontally */
    max-width: 90%; /* Adjust the max width as necessary */
    padding-bottom: 80px;
}

  
#contactInfo h2 {
    font-size: 20px;
    color: #373737;
    margin: 5px 0 0;
    margin-bottom: 15px;
}

#contactInfo p {
    font-size: 14px;
    color: #373737;
    margin: 5px 0 0;
    line-height: 1.5; /* This is a unitless number, it's generally the preferred way */
}


.contact-button {
    margin-top: 130px;
    font-size: 50px; /* Increases the font size */
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: white; /* Changes the text color */
    background-color: #f59247; /* Changes the background color */
    padding: 40px; /* Adds padding inside the button */
    border: none; /* Removes the border */
    border-radius: 5px; /* Rounds the corners */
    cursor: pointer; /* Changes the cursor to a pointer on hover */
    float: center;

}

    
    }

    #introduction {
        margin-left: 35px;
                
      } 

  

body {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    font-optical-sizing: auto;
    font-weight: 400; /* Adjust weight as needed */
    font-style: normal;
    background-color: #f7f6fb;
}

.header {
    background: #292929;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo-container {
    /* Adjust width as needed */
    width: 65px;
    
}

.logo {
    width: 100%;
    height: auto;
    display: block;
}

.header-title {
    text-align: right;
}

.header h1 {
    font-size: 12px;
    color: #f6f7fa;
    margin: 0;
    font-weight: normal;
}

.header h2 {
    font-size: 35px;
    color: #f6f7fa;
    margin: 5px 0 0;
}


#introduction {
    padding: 35px; /* Applies padding to the element with the ID 'introduction' */
    
  }

  #introduction h2 {
    font-size: 28; /* Larger text for the title */
    color: #333; /* Dark grey color for the title text */
    margin-bottom: 10px; /* Space below the title */
}

#introduction p {
    font-size: 20px; /* Standard text size */
    color: #666; /* Lighter grey color for the paragraph text */
    line-height: 1.6; /* Spacing between lines for better readability */
}

#introduction ul {
    font-size: 16px; 
    margin-top: 10px; /* Space above the list */
    line-height: 1.6; /* Spacing between lines for better readability */
}

#introduction li {
    margin-bottom: 5px; /* Space between list items */
}


  #startNow:hover {
    background-color: #94d7a4;
  }

  #nextQuestion:hover {
    background-color: #94d7a4;
  }


.hidden-checkbox {
    opacity: 0;
    position: absolute;
    z-index: -1;
}

.checkmark {
    display: inline-block;
    height: 25px;
    width: 25px;
    background-color: #eee;
    border-radius: 4px;
    position: relative; /* Position relative to allow absolute positioning of ::after content */
}

/* On mouse-over, add a grey background color */
.choice-item:hover .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.hidden-checkbox:checked + .checkmark {
    background-color: #f69247;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark::after {
    content: "";
    position: absolute;
    display: none;
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    transform: rotate(45deg);
}

/* Show the checkmark when checked */
.hidden-checkbox:checked + .checkmark::after {
    display: block;
}

/* Results page area design */

/* Completed page */
#results {
    padding: 0px; /* Applies padding to the element with the ID 'introduction' */
    margin-bottom: 10px; /* Space below the title */
    margin-top: 40px; 
    margin-left: 40px; 
    margin-right: 40px; 
}

#results h2 {
    font-size: 24px; /* Larger text for the title */
    color: #333; /* Dark grey color for the title text */
    margin-bottom: 10px; /* Space below the title */
}

#results {
    font-size: 16px; /* Standard text size */
    color: #666; /* Lighter grey color for the paragraph text */
    line-height: 1.6; /* Spacing between lines for better readability */
}


/* Result page text styles */

#topCategory {
    font-weight: bold; /* Make it stand out more */
    font-size: 30px; /* Increases the font size */
    margin-bottom: 15px;
}

#otherTopCategories {
    font-weight: bold; /* Make it stand out more */
    font-size: 20px; /* Increases the font size */
    padding: 0px;
    margin-bottom: 50px;
    margin-top: 0px;

}

/* Specific style for total scores text */
#totalScores {
    color: #272727; /* Use a different color to differentiate */
    margin-left: 40px;
}

/* Specific style for percentage scores text */
#percentageScores {
    font-style: italic; /* Italicize to indicate a different type of information */
    margin-left: 40px;
}

.category-description {
    padding: 30px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-size: 14px; /* Increases the font size */
    background-color: #f0f0f0;
    
}

.contact-button:hover {
    background-color: #94d7a4;
  }
  
/* Add additional styles below */

