/* Reset styles for body and HTML */
/* Global styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    display: flex;
    overflow: auto;
    padding: 20px;
    justify-content: center;
    align-items: flex-start;
}

html {
    height: 100%;
}

*,
textarea,
input {
    box-sizing: border-box;
    font-family: inherit;
}

/* Container styles */
.container {
    width: 817px;
    /* height: 1220px; */
    background-color: rgb(255, 255, 255);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    /* margin: 11px 257px 6px 457px; */
    padding: 2px 15px 10px 17px;
    gap: 13px;
    position: relative;
    box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.062);
    align-items: center;
}

/* Header styles */
.header {
    border-radius: 15px 13px 2px 3px;
    /* background-color: #0093E9; */
    background-image: linear-gradient(160deg, #0093E9 0%, #80D0C7 100%);
    /* background-image: linear-gradient(#0035ff, yellow); */
    /* --tw-gradient-from: #8c29e7; */
    display: flex;
    margin-top: -5px;
    margin-bottom: 50px;
    width: 104%;
    align-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
}

.logo {
    /* margin-left: 170px; */
    /* max-width: 150%; */
}

.header-text {
    /* padding-top: 100px; */
    /* display: flex; */
    /* flex-direction: row; */
    /* align-items: flex-start; */
    /* justify-content: center; */
    /* width: 80%; */
    /* flex-wrap: nowrap; */
}

.header-logo {
    /* margin-left: -32px; */
    /* width: 20%; */
    /* display: flex; */
    /* justify-content: flex-end; */
    /* padding-right: 20px; */
}

/* Heading styles */
h1, h2 {
    /* width: 100%; */
    margin: 0;
}

h1 {
    color: white;
    /* margin-left: 1px; */
    /* font-size: 1.5rem; */
}

h2 {
    /* justify-content: center; */
    font-size: 22px;
    font-weight: normal;
    margin-bottom: 20px;
}

/* Form styles */
label {
    display: flow;
    font-weight: bold;
    margin-top: 10px;
    margin-left: 100px;
}

textarea, input {
    width: 100%;
}

textarea {
    width: 549px;
    height: 200px;
    margin-bottom: 20px;
    border-radius: 11px;
    transition: initial;
}

/* Button styles */
button {
    box-shadow: 0 4px 6px -1px #977ef3, 0 2px 4px -1px #977ef3;
    /* box-shadow: 0 4px 6px -1px #977ef3, 0 2px 4px -1px #977ef3; */
    width: 180px;
    margin-left: 150px;
    height: 38px;
    background-color: #7b57ff;
    transition-duration: .2s;
    border: none;
    color: rgb(241, 241, 241);
    cursor: pointer;
    font-weight: 600;
    border-radius: 20px;
    transition: all .6s ease;
   
    padding-left: 10px;
   
}

button:hover {
    background-color: #0056b3;
}

/* Button container styles */
.buttons-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 20px;
    margin-left: -81px;
    min-width: 201px;
    /* margin-right: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px; */

}

button.copy-btns {
    
    min-width: 156px;
    margin-bottom: 10px;
    width: calc(25% - 10px);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: nowrap;
}

.copy-btn, .copy-instructions-btn {
    padding: 10px;
    border: none;
    cursor: pointer;
    color: white;
    text-align: center;
    font-size: 13px;
}

.copy-btn {
    width: 47%;
    height: 39px;
    background-color: #7b57ff;
    flex-basis: min-content;
    margin-bottom: 10px;
    margin-left: 183px;
}

.copy-btn:hover {
    background-color: #3e8e41;
}

/* Hover and clicked styles */
.clicked {
    background-color: #888;
    color: #ccc;
}

.clicked:hover {
    background-color: #666;
}

.copy-instructions-btn {
    background-color: #FF8000;
    margin-top: 10px;
}

.copy-instructions-btn:hover {
    background-color: #CC6600;
}

/* Custom length input styles */
.custom-length {
    margin-top: 10px;
    padding-top: 2px;
    font-size: 14px;
    border-radius: 5px;
    width: 80px;
    height: 24px;
    margin-left: 10px;
}

select {
    margin-left: 95px;
    border-radius: 10px;
    height: 24px;
}

/* Instructions and help styles */
.instructions {
    display: block;
    position: relative;
    max-width: 820px;
    max-height: 320px;
    background-color: #f2f8f9;
    border-radius: 10px;
    padding: 2em 1.2em;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #c3e6ec, #a7d1d9);
    font-family: Arial, Helvetica, sans-serif;
}

help {
    font-size: 12px;
    color: #888;
}

/* Disabled button styles */
button[disabled] {
    background-color: #cccccc;
    color: #666666;
    cursor: not-allowed;
    margin-left: 146px;
}

/* Character count container styles */
.char-count-container {
    text-align: right;
}

/* Footer styles */
footer {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 1px solid #ccc;
    display: flex;
    width: 100%;
    bottom: 0;
    font-size: 12px;
    align-content: flex-start;
    flex-direction: column;
}

.left, .right {
    width: 50%;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

/* Powered by Vercel styles */
.powered-by-vercel {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 20px;
}

.powered-by-vercel img {
    width: 180px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Visits and How this works styles */
.visits, .how-this-works {
    font-size: 14px;
    text-align: center;
    width: 100%;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
    margin: 2%;
    justify-content: center;
    overflow: hidden;
} */

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    text-align: left;
  }
  
  .faq-question {
    cursor: pointer;
    padding: 10px 20px;
    background-color: #f1f1f1;
    margin: 0;
    text-align: left;
    font-weight: bold;
    border-left: 4px solid #007BFF;
    transition: background-color 0.3s ease;
    display: block; /* Ensures block layout for consistent alignment */
    position: relative; /* Allows for more controlled layout management */
  }
  
  .faq-question:hover {
    background-color: #e1e1e1;
  }
  
  .faq-answer {
    max-height: 0; /* Keeps the element hidden without using display: none */
    overflow: hidden; /* Ensures no content is visible */
    transition: max-height 0.3s ease; /* Smooth transition effect */
    padding: 0 20px; /* Adjusted padding for collapsed state */
    background-color: #fff;
    border-top: 1px solid #ccc;
    text-align: left;
    font-style: italic;
    position: relative;
  }
  
  .faq-item.open .faq-answer {
    max-height: 1000px; /* Arbitrary large value to ensure full expansion */
    padding: 10px 20px; /* Adds padding when expanded */
  }
.box-wrapper {
    height: 95vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
}

#box1 {
    padding: 10px;
    border: solid 1px green
}

#box2 {
    display: table-column-group;
    border: solid 1px blue
}

#box3 {
    /* border-radius: 43px; */
    /* padding: 10px; */
    display: flex;
    flex-direction: row;
    /* border: solid 1px green; */
    /* align-content: flex-end; */
    /* align-items: baseline; */
    justify-content: space-around;
    flex-wrap: wrap;
}

#box4 {
    flex-grow: 2;
    /* border: solid 1px orange; */
}
div#box9 {
    box-shadow: 0 4px 0px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    flex-grow: 2;
    padding: 62px 75px;
}
div#box10 {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    flex-grow: 2;
    padding: 62px 71px;
}

.middle-column {
    border-radius: 34px;
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: stretch;
    align-content: center;
}

.middle-column div {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    flex-grow: 2;
    padding: 45px 23px;
    /* width: 100%; */
    /* border: solid 1px red; */
}

.middle-column div+div {
    /* margin-top: 8px; */
}
.middle-column2 {
display: flex;
justify-content: space-between;
flex-direction: row-reverse;
flex-wrap: nowrap;
align-content: stretch;
align-items: center;
}

#box8 {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    flex-grow: 2;
    padding: 62px 75px;
    /* display: flex; */
    /* border: solid 1px black; */
    flex-direction: row-reverse;
    align-items: center;
}
.fa-star:before {
    color: blue;
    content: "\f005";
}
.footer-basic {
    padding:40px 0;
    background-color:#ffffff;
    color:#4b4c4d;
  }
  
  .footer-basic ul {
   
    display: flex;
    padding: 0;
    list-style: none;
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 0;
  }
  
  .footer-basic li {
    padding:0 10px;
  }
  
  .footer-basic ul a {
    color:inherit;
    text-decoration:none;
    opacity:0.8;
  }
  
  .footer-basic ul a:hover {
    opacity:1;
  }
  
  .footer-basic .social {
    text-align:center;
    padding-bottom:25px;
  }
  
  .footer-basic .social > a {
    font-size:24px;
    width:40px;
    height:40px;
    line-height:40px;
    display:inline-block;
    text-align:center;
    border-radius:50%;
    border:1px solid #ccc;
    margin:0 8px;
    color:inherit;
    opacity:0.75;
  }
  
  .footer-basic .social > a:hover {
    opacity:0.9;
  }
  
  .footer-basic .copyright {
    margin-top:15px;
    text-align:center;
    font-size:13px;
    color:#aaa;
    margin-bottom:0;
  }

@media only screen and (max-width: 600px) {
    /* .body {
        font-family: Arial, sans-serif;
        background-color: #f0f0f0;
        display: flex;
        overflow: auto;
        padding: 21px 10px 10px 164px;
        justify-content: space-between;
        align-items: flex-start;
    } */
h2 {
        font-size: 20px;}

.container{
    margin: 11px 257px 6px 513px;
}
.instructions {
    display: flex;
    position: relative;
    max-width: 620px;
    max-height: 263px;
    background-color: #f2f8f9;
    border-radius: 10px;
    padding: 2em 1.2em;
    margin: 12px;
    text-decoration: none;
    z-index: 0;
    overflow: hidden;
    background: linear-gradient(to bottom, #c3e6ec, #a7d1d9);
    font-family: Arial, Helvetica, sans-serif;
    align-content: stretch;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: row;
    flex-wrap: wrap;
}
  }

