main {
    display: block;
}

main article {
    display: block;
    position: relative;
    padding: 50px 0;
    width: 60%;
    margin: 0 auto;
}

main article h1 {
    font-size: 35px;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 10px;
}

main article p {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 15px;
}

main article .iletisim {
    display: flex;
    width: fit-content;
    user-select: none;
    justify-content: center;
    align-items: center;
    background-color: rgb(41, 151, 31);
    color: rgb(255, 255, 255);
    padding: 12px 20px;
    border-radius: 5px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 30px;
    transition: all 0.2s ease-in-out;
}

main article .iletisim:hover {
    opacity: 0.8;
}

main article .iletisim svg {
    width: 35px;
    height: 35px;
    margin-right: 8px;
}

main article img{
    width: 100%;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 20px;
}

main article h2 {
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 5px;
}

main article ul {
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 15px;
}

main article ul li {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
}

@media screen and (max-width:850px) {
    main article {
        width: 90%;
        margin: 0 auto;
    }
    
    main article h1 {
        font-size: 28px;
    }
    
    main article p {
        font-size: 16px;
    }
    
    main article .iletisim {
        padding: 10px 20px;
        font-size: 18px;
    }
    
    main article .iletisim svg {
        width: 30px;
        height: 30px;
    }
    
    main article h2 {
        font-size: 22px;
    }
    
    main article ul li {
        font-size: 16px;
    }
}