/* styles.css */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #f2f2f2;
    padding: 20px 0;
}

.header-top {
    background-color: gray;
}

.logo {
    font-family: Georgia, 'Times New Roman', Times, serif;
    margin: 0;
    font-size: 34px;
    color: #333;
}

.main-title {
    margin-top: 30px;
    text-align: center;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.footer {


    background-color: #111827;
    
    
    color: #adc1ec;
    
    
    padding: 20px 20px 25px;
    
    margin-top: 20px;
    
    font-size: 14px;
    
    
    line-height: 18px
    
    
    }

/* styles.css */

/* styles.css */

.grid {
    margin-top: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Ensure exactly 4 boxes per row */
    gap: 20px;
    justify-content: center; /* Center the grid horizontally */
}

@media only screen and (max-width: 768px) {
    .grid {
        grid-template-columns: repeat(2, 1fr); /* Change to 2 boxes per row for tablets */
    }
    .grid-item img {
        max-width: 120% !important;
        max-height: 120% !important;
    }
    .pp{
        color: white;
        font-size: 8px;
    }
}

@media only screen and (max-width: 480px) {
    .grid {
        grid-template-columns: repeat(2, 1fr); /* Change to 2 boxes per row for mobile phones */
    }
    .grid-item img {
        max-width: 80% !important;
        max-height: 80% !important;
    }
    .grid-item {
        width: 100% !important;
        height: 80% !important;
    }
    .pp{
        color: white;
        font-size: 8px;
    }
}

.line1{
    margin-top: 10px;
}


.grid-item {
    background-color: rgb(231, 231, 231);
    text-align: center;
    padding: 10px;
    width: 200px;
    border-radius: 10px;
    height: 130px;
    cursor: pointer;
    display: flex; /* Make grid-item a flex container */
    flex-direction: column; /* Arrange children elements vertically */
    justify-content: center; /* Center items vertically */
    align-items: center; /* Center items horizontally */
}

.label {
    font-weight: bold;
    margin-top: 5px;
    text-align: center;
}

.grid-item img {
    max-width: 60%;
    max-height: 60%;
}


.how-it-works {
    padding: 50px 0;
}

.centered-title {
    text-align: center;
    font-size: 35px;
    margin-bottom: 20px;
}

.content {
    max-width: 600px;
    margin: 0 auto;
}

.content h3 {
    margin-bottom: 10px;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

.pp{
    color: white;
    font-size: 12px;
}

.disclaimer {
    /* background-color: #111827; */
    
    
    color: #adc1ec;
    
    
    padding: 20px 20px 25px;
    
    margin-top: 20px;
    
    font-size: 14px;
    
    
    line-height: 18px
}

/* styles.css */

.how-it-works h3 {
    font-size: 28px;
    color: black; /* Set text color to black */
    font-weight: bold; /* Make text bold */
    text-decoration: underline; /* Add underline */
    text-decoration-color: pink; /* Set underline color to green */
    text-decoration-thickness: 4px; /* Set underline thickness */
    text-underline-offset: 8px; 
}

