* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #e6ecea;
    color: #000;
    font-family: "GothamLight";
    font-size: 18px;
    line-height: 24px;
    padding: 0;
    margin: 0;
}

.container {
    max-width: 1024px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    padding: 0 15px 15px 15px;
}

.header-mob {
    display: none;
}
.header-wrap {
    font-size: 0;
}
.header-wrap img {
    width: 100%;
}
.redbtn {
    display: block;
    background: red;
    color: #fff;
    padding: 20px;
    border-radius: 14px;
    margin: 10px 0;
    font-size: xxx-large;
}
@media (max-width: 768px) {
    .header {
        display: none !important;
    }

    .header-mob {
        display: block;
    }

    .container {
        max-width: 600px;
    }
}
@media (max-width: 520px) {
    .redbtn {
        font-size: larger;
    }
}
#commentForm {
    margin: 0 auto;
    padding: 20px;
    background-color: #f7f7f7;
    border-radius: 10px;
}

#commentForm input[type="text"],
#commentForm textarea {
    width: -webkit-fill-available;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#commentForm input[type="file"] {
    width: -webkit-fill-available;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    background-color: #f7f7f7;
    font-size: 16px;
}

#commentForm textarea {
    height: 100px;
    margin-top: 15px;
}

#commentForm button[type="submit"] {
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#commentForm button[type="submit"]:hover {
    background-color: #45a049;
}

#commentForm input[type="file"]::-webkit-file-upload-button {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#commentForm input[type="file"]::-webkit-file-upload-button:hover {
    background-color: #45a049;
}
.fileLabel {
    background: #555555;
    padding: 10px;
    border-radius: 5px;
    color: white;
    font-size: 16px;
}
.cert {
    display: flex;
    align-items: center;
    gap: 20px;
}
.cert img {
    width: 45%;
}