* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}
.main_page{
    background-color: white;
    display: flex;
    flex-wrap: wrap;

}

.wrapper_main {
    width: 100%;
    /*max-width: 1440px;*/
    margin: 0 auto;
    height: auto;
}

.header{
    width: 100%;
    min-height: 150px;
    background-color:rgb(104, 100, 100);
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    padding: 20px
}

.header_text{
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: bold;
    color: black;
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
}

.header_contact{
    font-size: 30px;
    width: 100%;
    font-weight: bold;
    position: relative;
    background-color:rgb(104, 100, 100);
    padding-left: 30px;
    
}


.main_section{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.main_text{
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-family: Georgia, 'Times New Roman', Times, serif;
    text-align: center;
    color:black;
    height: auto;
    width: 100%;
    max-width: 800px;
    margin: 3rem auto 0 auto;
    padding: 0 15px
}

.main_pic1{
    width:  100%;
    height: auto;
    aspect-ratio: 1 / 1;
    background-image: url(/Img/Screenshot\ 2026-02-02\ 213643.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 500px;
    margin: 20px auto;
}

.sec_section{
    width: 70%;
    height: 150px;
    margin: 1rem auto;
    background-color:rgb(104, 100, 100);
    display: flex;
    justify-content: center;
    align-items: center;
}

.main_link{
    display: flex;
    width: 400px;
    height: 100px;
    position:relative;
    align-items: center;
    justify-content: center;
    
}

.link{
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-weight: bold;
    font-size: 24px;
    width: 250px;
    height: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    
}

a:hover{
    color:blue;
    cursor: pointer;
    font-size: 32px;
}

@media (max-width: 768px){
    .header_contact {
        font-size: 20 px;
        text-align: center;
        padding-left: 0;
    }

    .sec_section {
        width: 90%;
    }

    .main_link {
        width: 100%;
    }
}

