body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #9ac9c9;
    margin: 0;
    padding: 0;
    color: #ccc;
    line-height: 1.6;
    font-size: 16px;
    color: #fff;
}

header {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    border-bottom: 5px solid #ccc;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

header h1 {
    color: #1126e2;
    font-family: 'Brush Script MT', cursive;
    font-size: 2.0em;
    margin-right: auto;
}

select {
    border: none;
}

option {
    background-color: #fff;
    color: #000;
    padding: 10px;
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
    border-radius: 5px;
    margin: 5px 0;
    cursor: pointer;
    transition: background-color 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    width: 100%;
    text-align: center;

}

.dropdown {
    position: relative;
    display: inline-block;
    margin-left: 70px;

}

.dropbtn {
    background-color: #ffffff;
    border: none;
    padding: 20px 20px;
    margin-right: 180px;
    font-size: 16px;
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-content a:hover {
    background-color: #4588c7;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown:hover .dropbtn {
    background-color: #ddd;
}

main {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    color: #fff;
    margin-top: 150px;
}

main img {
    flex: 0 0 auto;
    max-width: 100%;
    height: auto;
}

main .text {
    flex: 1;
    text-align: center;
    align-items: center;
    margin: 30px;
    font-family: 'Times New Roman', Times, serif;
}

main .text h1 {
    font-size: 70px;
}

main .buttons {
    align-items: center;
}

hr {
    width: 50px;
}

.buttons {
    width: 290px;
    height: 50px;
    background-color: #4588c7;
    color: #fff;
    border: none;
    border-radius: 22px;
    font-size: 16px;
    font-family: 'Times New Roman', Times, serif;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 20px auto;
}

.buttons:hover {
    background-color: #356aa0;
    transform: scale(1.05);
}

.buttons:active {
    background-color: #2a4f7a;
    transform: scale(0.95);
}

.stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #ffffff;
    color: #050505;
    padding: 20px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 90px auto;
    max-width: 600px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
}

.stats .stat-item {
    flex: 1;
    margin: 0 10px;
}

.stats .stat-item h2 {
    font-size: 2em;
    margin: 10px 0;
}

.stats .stat-item p {
    font-size: 1em;
    color: #333;
}

section {
    display: flex;
    justify-content: space-around;
    padding: 70px;
    margin-left: 90px;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f8ff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    margin: 15px;
    max-width: 350px;
    font-family: 'Times New Roman', Times, serif;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.feature h2 {
    font-size: 1.8em;
    color: #1126e2;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1.1em;
    color: #333;
    line-height: 1.5;
}

.feature img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 15px;
}

hr {
    width: 258px;
}

@media (max-width: 1200px) {
    header {
        flex-direction: column;
        padding: 40px;
    }

    header h1 {
        margin-right: 0;
        text-align: center;
    }

    .dropdown {
        margin-left: 0;
        margin-top: 10px;
    }

    .dropbtn {
        margin-right: 0;
    }

    main {
        flex-direction: column;
        align-items: center;
        margin-top: 100px;
    }

    section {
        flex-direction: column;
        align-items: center;
        margin-left: 0;
        padding: 20px;
    }

    .feature {
        max-width: 100%;
        margin: 10px 0;
    }

    .stats {
        flex-direction: column;
        padding: 10px;
        margin: 20px auto;
    }

    .stats .stat-item {
        margin: 10px 0;
    }
}
@media (max-width: 1024px) {
    header {
        padding: 15px;
        display: flex;
        justify-content: space-around;
        margin-bottom: 90px;
    }
    main {
        margin-top: 150px;
    }
    main .text h1 {
        font-size: 50px;
    }

    .buttons {
        width: 80%;
        height: auto;
        padding: 10px;
    }

    .stats {
        padding: 10px;
    }

    section {
        padding: 10px;
    }

    .feature h2 {
        font-size: 1.5em;
    }

    .feature p {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px;
        display: flex;
        justify-content: space-around;
        margin-bottom: 90px;
    }
    main {
        margin-top: 150px;
    }
    main .text h1 {
        font-size: 50px;
    }

    .buttons {
        width: 80%;
        height: auto;
        padding: 10px;
    }

    .stats {
        padding: 10px;
    }

    section {
        padding: 10px;
    }

    .feature h2 {
        font-size: 1.5em;
    }

    .feature p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    header {
        padding: 10px;
    }

    header h1 {
        font-size: 1.5em;
    }

    main .text h1 {
        font-size: 40px;
    }

    .buttons {
        font-size: 14px;
        padding: 8px;
        max-width: 80%;
    }

    .stats {
        padding: 5px;
        max-width: 250px;
    }

    .feature {
        padding: 15px;
        max-width: 230px;
    }

    .feature h2 {
        font-size: 1.2em;
    }

    .feature p {
        font-size: 0.9em;
    }

    hr {
        width: 190px;
    }
}