body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #e0e3e7; /* Alternate color */
    color: #333;
}

header {
    background-color: #19db8a; /* Primary color */
    color: white;
    padding: 1rem;
    text-align: center;
}

header nav ul {
    list-style-type: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 10px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background-color: #36b4ff; /* Secondary color */
    color: white;
    padding: 50px 0;
    text-align: center;
}

section.about, section.products, section.resources, section.pricing {
    background-color: white;
    padding: 40px;
    margin: 20px auto;
    max-width: 900px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 10px solid #ffa130; /* Tertiary color */
}

.support-form {
    background-color: white;
    padding: 20px;
    margin: 50px auto;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-left: 10px solid #ffa130; /* Tertiary color */
    text-align: center;
}

.support-form h2 {
    color: #19db8a; /* Primary color */
    margin-bottom: 20px;
}

.support-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.support-form label {
    text-align: left;
    font-weight: bold;
    color: #333;
}

.support-form input[type="text"],
.support-form input[type="email"],
.support-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    box-sizing: border-box;
}

.support-form textarea {
    resize: vertical;
    min-height: 100px;
}

.support-form button {
    background-color: #19db8a; /* Primary color */
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.support-form button:hover {
    background-color: #17c47e;
}

.error {
    color: red;
    font-size: 0.875rem;
    text-align: left;
}

footer {
    background-color: #36b4ff; /* Secondary color */
    color: white;
    padding: 1rem;
    text-align: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer .footer-section {
    display: inline-block;
    margin: 0 20px;
}

footer .footer-section ul {
    list-style-type: none;
    padding: 0;
}

footer .footer-section ul li a {
    color: white;
    text-decoration: none;
}

footer .footer-section ul li a:hover {
    color: #ffa130; /* Tertiary color */
}

footer .footer-section p {
    margin: 0;
}

