/* Basic styling for the contact page */
.container {
    max-width: 1400px;
    margin: 0 auto;
}
.page-title-section {
    text-align: center;
    margin-bottom: 40px;
}
.page-title-section h1 {
    font-size: 2.5em;
    color: #333;
    margin-bottom: 10px;
}
.page-title-section p {
    font-size: 1.2em;
    color: #666;
}
.contact-section {
    padding: 40px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 30px;
}
.section-header h2 {
    font-size: 2em;
    color: #333;
    margin-bottom: 10px;
}
.section-header p {
    font-size: 1.1em;
    color: #666;
}
.contact-methods {
    max-width: 800px; /* Increased max-width for better form layout */
    margin: 20px auto; /* Added top/bottom margin */
    background-color: #ffffff; /* Changed background to white */
    padding: 40px; /* Increased padding */
    border-radius: 10px; /* Slightly larger border-radius */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
    border: 1px solid #e0e0e0; /* Added a subtle border */
}
.contact-methods p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #555;
}
.contact-methods ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.contact-methods ul li {
    margin-bottom: 10px;
    color: #555;
}
.contact-methods ul li a {
    color: #007bff;
    text-decoration: none;
}
.contact-methods ul li a:hover {
    text-decoration: underline;
}
.contact-methods h3 {
    margin-top: 20px;
    margin-bottom: 15px;
    font-size: 1.5em;
    color: #333;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333; /* Darker label color */
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 12px; /* Increased padding */
    border: 1px solid #ccc; /* Kept border color */
    border-radius: 6px; /* Slightly larger border-radius */
    font-size: 1em;
    box-sizing: border-box;
    transition: border-color 0.3s ease; /* Added transition for focus effect */
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group textarea:focus {
    border-color: #007bff; /* Highlight border on focus */
    outline: none; /* Remove default outline */
}
.form-group textarea {
    resize: vertical; /* Allow vertical resizing */
}
.btn-primary {
    display: block; /* Make button full width */
    width: 100%;
    background-color: #007bff;
    color: white;
    padding: 12px 20px; /* Increased padding */
    border: none;
    border-radius: 6px; /* Slightly larger border-radius */
    font-size: 1.1em; /* Slightly larger font size */
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s ease;
}
.btn-primary:hover {
    background-color: #0056b3;
}