

@font-face {
    font-family: 'ToyotaType-Book';
    src: url('../Toyota Fonts/ToyotaType-Book.otf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    font-family: 'ToyotaType-Book';
    user-select: none;
    text-align: justify;
}

body {
    background-color: #f8f9fa;
}

.container {
    max-width: 900px;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 20px;
    position: relative;
}

    .container h4 {
        text-align: center;
        margin-bottom: 20px;
        font-family: ToyotaType-Semibold;
    }

    .container h6 {
        margin-top: 20px;
        border-bottom: 2px solid #007bff;
        padding-bottom: 5px;
        font-family: ToyotaType-Semibold;
    }

ul {
    list-style-type: disc;
}

li {
    margin: 10px;
}

.red-header {
    position: absolute;
    top: 0;
    right: 0;
    width: 280px;
    height: 20px;
    background-color: #ff0030;
    border-top-right-radius: 10px;
}

.red-text {
    color: #ff0030;
}

.underline {
    text-decoration: underline;
}


@media (max-width: 768px) {

    .red-header {
        width: 180px;
        height: 20px;
    }

    @media (max-width: 480px) {

        .red-header {
            width: 130px;
            height: 20px;
        }
    }
}
