body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background: beige;
    color: #333;
}

.contact-container {
    background: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    width: 80%;
    max-width: 800px;
    margin: 20px auto;
    text-align: justify;
    line-height: 1.6;
}

h2 {
    color: #009688;
    margin-bottom: 20px;
}

p {
    margin-bottom: 16px;
}

.logo {
    width: 80px;
    margin-bottom: 20px;
}

.back-link {
    color: #009688;
    text-decoration: none;
}

.contact-form {
    margin-top: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}

input:focus, textarea:focus {
    border-color: #009688;
}

button {
    background: #009688;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
}

button:hover {
    background: #00796b;
}

/* Popup Styling */
.popup-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.popup button {
    background: #009688;
    color: #fff;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 10px;
}

.popup button:hover {
    background: #00796b;
}

.back-link {
    color: #009688;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
    margin-left: 430px;
    border: 2px solid #009688;
    padding: 8px 16px;
    border-radius: 4px;
    transition: background 0.3s, color 0.3s;
}

.back-link:hover {
    background: #009688;
    color: #fff;
}