/* Contact Page Styles */
.contact-container {
    max-width: 1280px; /* Align with common.css .container */
    margin: 0 auto 80px auto;
    padding: 0 20px;
}

.contact-container h3 {
    font-size: 1.8rem;
    color: #00a0d2;
    margin-bottom: 30px;
}

/* Other Methods Styles */
.contact-method-item {
    background-color: #222;
    padding: 30px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.contact-method-item h4 {
    font-size: 1.3rem;
    color: #fff;
    margin-top: 0;
    margin-bottom: 15px;
}

.contact-info {
    font-size: 1.5rem;
    font-weight: bold;
    color: #00a0d2;
    margin: 0 0 5px 0;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
}

.line-btn {
    display: inline-block;
    margin-bottom: 20px;
}

.qr-code {
    display: block;
}

/* Form Styles */
.contact-form {
    background-color: #222;
    padding: 40px;
    border-radius: 5px;
}

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

.form-group:last-child {
    margin-bottom: 0;
}

.form-group label {
    display: inline-block;
    color: #fff;
    margin-bottom: 10px;
    font-weight: bold;
    box-sizing: border-box;
    padding-right: 1em;
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #111;
    border: 1px solid #444;
    border-radius: 5px;
    color: #fff;
    font-size: 1rem;
    box-sizing: border-box;
}

.form-group input[type="email"]{
  width: 100%;
  padding: 15px;
  background-color: #111;
  border: 1px solid #444;
  border-radius: 5px;
  color: #fff;
  font-size: 1rem;
  box-sizing: border-box;
}
.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00a0d2;
}

.radio-group label,
.checkbox-group label {
    display: inline-block;
    margin-right: 20px;
    color: #ccc;
    font-weight: normal;
}

.radio-group input[type="radio"],
.checkbox-group input[type="checkbox"] {
    margin-right: 8px;
    transform: translateY(1px);
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background-color: #00a0d2;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #008dbb;
}

.qname{
  display: block;
  color: #fff;
  margin-bottom: 10px;
  font-weight: bold;
}

span.req{
  display: inline-block;
  box-sizing: border-box;
  padding-left: 0.5em;
  color:#f00;
}

.form-group textarea{
 height:300px; 
}
/* Responsive */
@media (max-width: 768px) {
    .contact-form {
        padding: 20px;
    }
}