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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f0f0f0;
    color: #333333;
    line-height: 1.6;

}

h1 {
    font-size: 24px;
    color: #333333;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.container {
    width: 90%;
    max-width: 600px;
    margin: 20px auto; 
    padding: 20px; 
    color: #666666; 
    background-color: #ffffff;
    border: 2px solid #999999; 
    border-radius: 10px; 
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 

}


.container img {
    display: block;
    margin: 0 auto;
    width: 200px;
    height: auto;
}

input[type="text"], input[type="tel"], textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #999999;
    border-radius: 4px;
    font-size: 16px;
    color: #333333;
}

button {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #06BB64;
    color: white;
    font-size: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #059B56;
}

.logo-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.logo {
    flex: 0 0 48%;
    margin-bottom: 10px;
    text-align: center;
}

.logo img {
    max-width: 100%;
    height: auto;
}

textarea {
    height: 3em;
    resize: vertical;
}

form button[type="submit"] {
    margin-top: 20px;
}

.start-over-link {
    color: #06BB64;
    text-decoration: none;
    font-size: 16px;
    padding: 5px;
    display: inline-block;
}

.start-over-link:hover {
    text-decoration: underline;
    color: #059B56;
}

/* Responsive Styles */
@media (max-width: 600px) {
    h1 {
        font-size: 18px; /* Smaller font size on mobile */
    }

    .container {
        width: 100%; /* Full width for smaller screens */
        padding: 10px 15px; /* Reduced padding */
        margin: 10px auto; /* Reduced margin */
        box-shadow: none; /* Remove shadow for a flatter design */
    }

    .container img {
        width: 150px; /* Smaller logo on mobile */
    }

    button, input[type="text"], input[type="tel"], textarea {
        font-size: 14px; /* Smaller font size for form elements */
    }

    .logo {
        flex-basis: 100%; /* Full width for each logo */
    }

    .start-over-link {
        font-size: 14px; /* Smaller font size for the link */
    }
}
