body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

h1 {
    color: #4CAF50;
    margin-bottom: 20px;
}

.container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 1600px;
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input,
.form-group select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

#applyTextBtn, #downloadBtn {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#applyTextBtn:hover, #downloadBtn:hover {
    background-color: #45a049;
}

canvas {
    display: block;
    margin: 20px auto;
    border: 2px solid #ccc;
    border-radius: 10px;
}

#upload {
    margin-bottom: 20px;
}

@media screen and (max-width: 600px) {
    .container {
        padding: 15px;
    }

    #applyTextBtn, #downloadBtn {
        width: 100%;
    }

    canvas {
        width: 100%;
    }
}


/* Footer styles */
footer {
    background-color: #f4f4f4;
    padding: 20px;
    margin-top: 50px;
    text-align: left;
    font-size: 16px;
    color: #333;
}

footer h2 {
    font-size: 18px;
    color: #333;
    margin-bottom: 10px;
}

footer p {
    margin-bottom: 15px;
    line-height: 1.6;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    margin-bottom: 10px;
}

footer ul li a {
    color: #0073e6;
    text-decoration: none;
}

footer ul li a:hover {
    text-decoration: underline;
}

.friend-links, .sponsors {
    margin-top: 30px;
}

.copyright {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
    color: #666;
}

/* FAQ Section Styles */
.faq-section {
    margin-top: 50px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
}

.faq-section h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h3 {
    font-size: 18px;
    color: #0073e6;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}


