* {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    background-color: #ff5000;
}

header {
    background-color: #000;
    color: #fff;
    padding: 10px;
}

.sat {
    margin: 20px;
    width: 70%;
    text-align: center;
    background-color: #fff;
    font-weight: 600;
    font-size: 20px;
    margin-top: 45px;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
}

footer {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    background-color: #000;
    color: #fff;
    position: relative;
    padding: 10px;
    margin-top: 30px;
}

#blaze, #lwt {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

#tiger-blaze, #l-w-t {
    text-decoration: none;
    color: #fff;
    background-color: #006000;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    font-size: 24px;
    margin: 10px;
}

a {
    text-decoration: none;
}

a p {
    margin-bottom: 20px;
    text-decoration: none;
    color: #0000ff;
}

a p:hover {
    color: #00aaff;
}

a img {
    margin-top: 10px;
}

ul {
    list-style-type: none;
}

ul li {
    margin-top: 10px;
    margin-bottom: 10px;
    color: #004000;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.panel {
    display: none;
    margin-left: 40px;
}

.accordion {
    position: relative;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin: 10px 0;
    background-color: #f9f9f9;
    cursor: pointer;
    user-select: none;
}

.toggle-button {
    display: inline-block;
    margin-left: 10px;
    padding: 5px 10px;
    font-size: 14px;
    color: #fff;
    background-color: #007bff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.toggle-button:hover {
    background-color: #0056b3;
}

.accordion p {
    display: inline-block;
    margin: 0;
}

@media screen and (max-width: 400px) {
    .responsive-image {
        width: 180px !important;
        height: auto;
    }

    .arrow {
        display: none;
    }
}    