body {
 font-family: 'Inter', sans-serif;
 background: linear-gradient(135deg, #ece9e6, #ffffff);
 display: flex;
 justify-content: center;
 align-items: center;
 height: 100vh;
 margin: 0;
}

.contact-container {
 background: #fff;
 padding: 40px;
 border-radius: 12px;
 box-shadow: 0 4px 30px rgba(0,0,0,0.1);
 max-width: 450px;
 width: 100%;
}

h1 {
 text-align: center;
 color: #333;
 margin-bottom: 10px;
}

p {
 text-align: center;
 color: #666;
 margin-bottom: 30px;
 font-size: 0.95rem;
}

.form-group {
 margin-bottom: 20px;
}

label {
 display: block;
 margin-bottom: 8px;
 color: #555;
 font-weight: 600;
 font-size: 0.9rem;
}

input, textarea {
 width: 100%;
 padding: 12px;
 border: 1px solid #ddd;
 border-radius: 8px;
 font-size: 0.95rem;
 transition: border 0.3s, box-shadow 0.3s;
}
img {
    width: 99%; /* Adjust the percentage as needed */
    height: auto; /* Maintains aspect ratio */
}

input:focus, textarea:focus {
 border-color: #007bff;
 box-shadow: 0 0 0 4px rgba(0,123,255,0.1);
 outline: none;
}

.btn {
 width: 100%;
 background: #007bff;
 color: #fff;
 padding: 14px;
 border: none;
 border-radius: 8px;
 font-size: 1rem;
 font-weight: 600;
 cursor: pointer;
 transition: background 0.3s;
}

.btn:hover {
 background: #0056b3;
}