.main{
    width: 100%;
    height: auto;
    margin-top: 5%;
    display: flex;

    justify-content: center;
}
.main_div{
    width: 90%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.title_div{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
}
.title_div h6{
    font-weight: lighter;
    font-size: 15px;
    color: #ff006e;
}
.title_div h1{
    font-weight: 900;
    font-size: 35px;
    color: black;
}
.title_div hr{
    width: 100px;
    height: 2px;
    background-color: #0A0A0A80;
    border: none;
}
.title_div p{
    margin-top: 30px;
    font-size: 15px;
    font-weight: 300;
    color: #0A0A0A80
}
.vision_div{
    margin-top: 5%;
    width: 80%;
    height: auto;
    display: flex;
    flex-direction: row;
}
.vision_hr{
    width: 95% !important;
    height: 2px;
    background-color: #0A0A0A80;
    border: none;
    margin-top: 50px;
}
.vision_div_left{
    width: 50%;
    height: auto;
    gap: 5;
}
.vision_div_left span{
    font-weight: lighter;
    font-size: 15px;
    color: #ff006e;
}
.vision_div_left h3{
    font-size: 25px;
    font-weight: 900;
    color: black;
    line-height: 2rem;
    margin-top: 10px;
}
.vision_div_right{
    width: 50%;
    height: auto;
    gap: 5;
}
.vision_div_right h3{
    font-size: 25px;
    font-weight: 900;
    color: black;
    line-height: 2rem;
    margin-top: 10px;
}
.vision_div_right span{
    font-weight: lighter;
    font-size: 15px;
    color: #ff006e;
}
.partners_div{
    width: 100%;
    height: auto;
}
.rules-container {
    margin: 40px auto;
    padding: 20px;
    max-width: 900px;
    background-color: #f9f9f9;
    border-left: 6px solid #3498db;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.rules-container h2 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 15px;
    text-align: center;
}

.rules-content {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 10px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.rules-content ol {
    padding-left: 20px;
}

.rules-content li {
    margin-bottom: 12px;
}

@media screen and (max-width: 750px) {
    .title_div h1 {
        font-size: 28px;
    }
    .vision_div_left h3{
        font-size: 18px;
    }
    .vision_div_right h3{
        font-size: 18px;
    }
}
@media screen and (max-width: 500px) {
    .title_div h1 {
        font-size: 26px;
    }
    .vision_div_left h3{
        font-size: 16px;
        line-height: 1.5rem;
    }
    .vision_div_right h3{
        font-size: 16px;
        line-height: 1.5rem;
    }
    .vision_div{
        gap: 15px;
    }
}