body {
    font-family: Roboto, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}
.fixed-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #000;
    padding: 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}
.fixed-header img {
    max-height: 50px;
}
.content {
    margin-top: 80px;
    padding: 40px 20px;
}
.buttons a.btn {
        cursor: pointer;
        padding: 12px 20px;
        border-radius: 2px;
        font-weight: bold;
        font-size: 14px;
        display: inline-block;
        text-transform: uppercase;
        border: 0;
        text-decoration: none !important;
        margin-right: 10px;
        background-color: #1e4544;
        color: #fff;
 
}
    .buttons.modeli {
        margin: 80px auto 120px auto;
    }

.buttons.down{
    /* padding: 40px 100px; */
    display: flex;
    justify-content: flex-start;
    padding: 30px 0 0;
}
.buttons-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 50%;
    margin-top: 20px;
}
.buttons-container button {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    cursor: pointer;
    border: none;
    border-radius: 5px;
    background-color: #007BFF;
    color: white;
    margin-bottom: 10px;
}
.container {
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 90%;
    max-width: 1200px;
    margin: auto;
    padding-bottom: 40px;
}
.container.last {
    margin-top: 80px;
}
.image img {
    max-width: 720px;
    /* max-width: 600px; */
    height: auto;
}
.text {
    text-align: left;
    width: 100%;
    margin-top: 0;
}
h2.kred {
    margin-top: 0;
}
ul {
    list-style-type: disc;
    padding-left: 20px;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    border: 1px solid #ddd;
    background-color: #ccd2d8;;
}
th {
    background-color: rgb(117, 117, 158);
    color: #fff;
}
th, td {
    border: 1px solid #fff;
    padding: 10px;
    text-align: center;
    
}
tr:nth-child(odd) td {
    background-color: #e7eaed;
    border: 1px solid #fff;
    padding: 10px;
    text-align: center;
}
th {
    border: 1px solid #fff;
    padding: 10px;
    text-align: center;
    background-color: #156082;
}
section.white {
    background: white;
    color: #000;
}
section.white h2 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
}
section.white p {
    color: #000;
    font-size: 16px;
}
@media (min-width: 768px) {
    .container {
        flex-direction: row;
        justify-content: space-between;
    }
    .text {
        width: 55%;
    }
    .image {
        width: 35%;
    }
   
}

@media (max-width: 768px) {
    .container {
        display: flex;
        flex-direction: column-reverse;
        /* align-items: start; */
        width: 90%;
        max-width: 1200px;
        margin: 0;
        /* padding-bottom: 40px; */
        padding: 30px 30px;
    }
    .buttons.modeli {
        margin: 40px auto;
    }
    .text {
        width:100%;
        margin: 40px auto 40px auto;
    }
    .container.last {
        margin-top: 0;
    }
    .image img {
        width: 100%;
    }
    .buttons.down {

        justify-content: center;
        padding: 30px 0 0;
    }
    .container.last {
        margin-top: 0;
        padding-top: 0;
    }
}

@media (max-width: 600px) {
    .buttons a.btn {
        font-size: 10px;
    }
}