

.section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 50px 200px;
    gap: 50px;
    
}

.text-content {
    width: 45%;
    height: auto;
    font-size: x-large;
}

.text-content h2 {
    font-size: 40px;
    font-weight: bold;
    margin-bottom: 10px;
}

.text-content p {
    line-height: 1.6;
    margin-bottom: 20px;

}

.text-content button {
    padding: 7px 22px;
    border: 1px solid #333;
    background-color: hsla(0, 13%, 53%, 0.486);
    cursor: pointer;
    transition: 0.2s;
    border-radius: 4px;
}

.text-content button:hover {
    background-color: hsla(0, 13%, 53%);
}

.image-area {
    width: 60%;
    position: relative;
}

.image-area img {
    width: 100%;
    height: 50vh;
    border-radius: 8px;
}

.dots {
    display: flex;
    justify-content: right;
    gap: 6px;
    margin-top: 8px;
    margin-bottom: 30px;
    
}

.dot {
    width: 30px;
    height: 30px;
    background: #cfcfcf;
    border-radius: 50%;
    cursor: pointer;
}
.dot:hover {
    border: 2px solid #008cff;
}

.dot.active {
    background: #81b8ce;
}

@media (max-width: 900px) {
    .section {
        flex-direction: column;
        text-align: center;
    }

    .text-content,
    .image-area {
        width: 90%;
    }
}