* {
    box-sizing: border-box;
  }

  html, body {
    overflow-x: hidden;
    width: 100%;
  }

body {
    font-family: Arial, sans-serif;
    background-color: #e1e1e1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    
    margin: 0;
}

.container {
    display: flex;
    flex-direction: row;
    max-width: 1200px;
    width: 100%;
    overflow: hidden;
    align-items: center;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 100px;
}
.doc-container {
    max-width: 768px;
    padding: 0 16px;
    margin: 0 auto;
    margin-bottom: 50px;
}
.image-block {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-block img {
    max-width: 50%;
}

.text-block {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    align-content: flex-start;
    align-items: flex-start;
}

h2 {
    margin: 0 0 10px;
    font-size: 1.5em;
    font-weight: 700;
}

h2::before {
    content: "▶ ";
}

.feature p {
    margin: 0;
    font-size: 18px;
}

footer {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
    background-color: #ccc;
    position: fixed;
    bottom: 0;
}

footer a {
    text-decoration: none;
    font-size: 18px;
    color: #000;
    
    
    
}
a{
    text-decoration: none;
    font-size: 40px;
}

@media (max-height:832px) {
   
    .container{
        padding: 20px;
    }
    
}
@media (max-width: 768px) {
    .image-block {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    body{
        height: auto;
    }
    .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        
    }

    .image-block img {
        max-width: 80%;
    }

    .text-block {
        width: 90%;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        gap: 20px;
        align-items: center;
        padding-bottom: 50px;
        align-content: center;
    }

    footer {
        position: relative;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    footer a {
        font-weight: bold;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    h2 {
        font-size: 1.2em;
    }

    .feature p {
        font-size: 16px;
    }

    footer a {
        font-size: 14px;
        padding: 6px 12px;
    }
}