/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat", sans-serif;
    color: white;
    min-height: 100vh;
    background-color: #1E1E1E;
}

header {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem;
    position: sticky;
    top: 0;
    background: #1E1E1E;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    
    #left-side-of-header {
        display: flex;
        align-items: center;
        
        #logo {
            width: 40px;
        }

        p {
            margin-left: 5px;
        }
    }

    #right-side-of-header {
        #header-cta-btn {
            background-color: #1e1e1e;
            color: #3fff75;
            font-weight: bold;
            padding: 10px;
            text-decoration: none;
            border-radius: 5px;
            transition: transform 0.3s ease;
            display: inline-block;
            text-align: center;
            cursor: pointer;
            border: 1px solid #3fff75;
        }
    }
}

section {
    padding: 1.25rem;
    max-width: 1280px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.stores_buttons_container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    a {
        img {
            height: 50px;
            width: 100%;
        }
    }
}

#hero_section {
    display: grid;
    #hero-headline {
        margin-bottom: 1.25rem;
        font-size: 2rem;
    };
    #hero-subheadline {
        color: hsl(0deg 0% 100% / 80%);
        margin-bottom: 1.5rem;
        font-size: 1.125rem;
        .bold_text {
            font-weight: 500;
            color: white;
        }
    }
    #hero-image {
        width: 100%;
        img {
            width: 100%;
        }
    }
    #hero-CTA-container {
        margin-top: 1.5rem;
        display: flex;
        justify-content: center;
        gap: .75rem;
        flex-direction: column;


        #reviews_container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: .75rem;
            img {
                height: 26px;
            }
            p {
                color: hsl(0deg 0% 100% / 80%);
            }
        }
    }
}


.card {
    background-color: #141414;
    padding: 1.25rem;
    border-radius: 10px;
    color:#f0f0f0;
    h2 {
        text-align: center;
        font-size: 1.8rem;
        margin-bottom: 3rem;
    }
    .card_elements_list {
        display: flex;
        flex-direction: column;
        gap: 3rem;

        .card_element {
            display: flex;
            gap: 1rem;
            img {
                width: 3.5rem;
                border-radius: 10px;
            }
            h3 {
                font-size: 1.25rem;
                margin-bottom: .75rem;
            }
        }
    }
    .card_CTA {
        margin-top: 3rem;
        width: 100%;
        height: 50px;
        border-radius: 50px;
        background-color: #1e1e1e;
        text-align: center;
        border: 1px solid #3fff75;
        a {
            text-decoration: none;
            color: #3fff75;
            font-weight: bold;
            line-height: 50px;
            display: block;
        }
    }

    h3 {
        font-size: 1.25rem;
        margin-bottom: .75rem;
    }
    p {
        font-size: 1rem;
        color: hsl(0deg 0% 100% / 80%);
        margin-bottom: 1.25rem;
    }
}

#FAQ {
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
        text-align: left;
        color: #fff; /* Adjust for dark background */
      }
      
      h2 {
        text-align: center;
        font-size: 2rem;
        margin-bottom: 1rem;
      }
      
      p {
        color: #ccc; /* Subdued text color for intro */
      }
      #FAQ_sub_text {
        text-align: center;
        margin-bottom: 2rem;
      }
      
      /* FAQ Item Styling */
      .faq-item {
        margin-bottom: 1rem;
        border: 1px solid #333;
        border-radius: 8px;
        overflow: hidden;
      }
      
      .faq-question {
        background-color: #222;
        padding: 1rem;
        margin: 0;
        font-size: 1.25rem;
        cursor: pointer;
        position: relative;
      }
      
      .faq-question::after {
        content: '▼';
        font-size: 0.75rem;
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
      }
      
      .faq-item.active .faq-question::after {
        content: '▲';
      }
      
      .faq-answer {
        display: none;
        padding: 1rem;
        background-color: #333;
        border-top: 1px solid #444;
      }
      
      /* Active State */
      .faq-item.active .faq-answer {
        display: block;
      }
}

.outlined_card {
    border: 1px
}
footer {
    padding: 20px;
    background: #000;
}

.footer-links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    a {
        text-align: center;
        font-size: 0.75rem;
        color: white;
        text-decoration: none;
    }
}

@media (min-width: 768px) {
    section {
        padding: 2rem;
    }
    header {
        padding: 2rem;
    }
    #hero_section {
        display: grid;
        column-gap: 50px;
        grid-template-columns: auto auto; /* Two columns with equal width (50%) */
        grid-template-rows: auto auto 1fr; /* Three rows in column 1 */
        width: 100%;
        position: relative; /* Ensures child items can use absolute positioning */
        
        #hero-headline {
            font-size: 3rem;
            grid-column: 1; /* First column */
            grid-row: 1; /* First row */
            align-self: start; /* Align to top */
            justify-self: start; /* Align to left */
        }
        #hero-subheadline {
            font-size: 1.5rem;
            grid-column: 1; /* First column */
            grid-row: 2; /* Second row */
            align-self: start; /* Align to top */
            justify-self: start; /* Align to left */
        }
        #hero-image {
            grid-column: 2; /* Second column */
            grid-row: 1 / span 3; /* Span all rows in column 2 */
            align-self: start; /* Align to top */
            justify-self: end; /* Align to right */
            img {
                width: 100%; /* Ensure the image fills column 2 */
                height: auto; /* Maintain aspect ratio */
                object-fit: cover; /* Ensures the image fits nicely */
              }
        }
        #hero-CTA-container {
            grid-column: 1; /* First column */
            grid-row: 3; /* Third row */
            align-self: start; /* Align to top */
            justify-self: start; /* Align to left */
        }
    }
    .card {
        padding: 5rem;
        .card_elements_list {
            flex-direction: row;
            justify-content: space-between;
            .card_element {
                flex-direction: column;
                width: 50%;
                img {
                    width: 4rem;
                }
            }
        }
        .card_CTA {
            max-width: 40%;
            margin-left: auto;
            margin-right: auto;
        }
    }
}