body {
    font-family: Arial, sans-serif;
    background-color: #eef1f5;
    padding: 40px;
}
.contact-info {
    background-color: #fff;
    padding: 25px;
    margin: auto;
    max-width: 500px;
    border-radius: 12px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}
h2 {
    margin-top: 0;
    color: #2c3e50;
}
p {
    margin: 10px 0;
    font-size: 16px;
}
strong {
    color: #34495e;
}
.flex-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 50px;
}
.main-button {
    margin-bottom: 40px;
    text-decoration: underline;
    padding: 10px 50px;
    background-color: #ffffa8;
    border: none;
    font-size: 28px;
    color: #242fff;
    cursor: pointer;
    border-radius: 6px;
}
.main-button:hover {
    background-color: #fffb70;
}


.feedback {
    background: #ffffff;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.feedback h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #333;
}

.feedback label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #444;
}

.feedback input[type="text"] {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-sizing: border-box;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.feedback input[type="text"]:focus {
    border-color: #4a90e2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.2);
    outline: none;
}

.feedback button {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    background-color: #4a90e2;
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.feedback button:hover {
    background-color: #357ABD;
    transform: scale(1.03);
}


textarea {
    width: 100%;
    min-height: 120px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    font-family: inherit;
    line-height: 1.5;
    color: #333;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    border-radius: 12px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.1);
    resize: vertical;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

textarea:focus {
    border-color: #0077cc;
    box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.2);
    background-color: #fff;
    outline: none;
}
