.back-button {
    background-color: #007BFF; /* Change the background color */
    color: white; /* Change the text color */
    border: none; /* Remove border */
    padding: 10px 20px; /* Add padding */
    font-size: 16px; /* Increase font size */
    border-radius: 5px; /* Rounded corners */
    cursor: pointer; /* Pointer cursor on hover */
    display: flex; /* Flex display for centering */
    align-items: center; /* Vertically center items */
    justify-content: center; /* Horizontally center items */
    margin: 20px; /* Add margin */
    text-decoration: none; /* Remove underline */
}

.back-button:hover {
    background-color: #0056b3; /* Darken background on hover */
}

    
        body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #ffffff;
}

.hero {
    background-image: url('contact-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 3em;
    margin: 0;
}

.hero p {
    font-size: 1.5em;
    margin: 10px 0 20px;
}

.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}

.contact-form-section, .contact-details-section, .map-section, .social-media-section {
    margin-bottom: 50px;
}

h2 {
    font-size: 2.5em;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 1.2em;
    margin-bottom: 10px;
}

.form-group input, .form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
}

button {
    padding: 10px 20px;
    border: none;
    background-color: #3498db;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1.2em;
}

button:hover {
    background-color: #2980b9;
}

.contact-methods {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.contact-method {
    max-width: 300px;
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-method i {
    font-size: 2em;
    color: #3498db;
    margin-bottom: 10px;
}

.contact-method h3 {
    font-size: 1.5em;
    margin: 10px 0;
}

.link {
    color: #3498db;
    text-decoration: none;
    border-bottom: 1px dotted #3498db;
    transition: color 0.3s ease;
}

.link:hover {
    color: #2980b9;
}

.map-container {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.social-media-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    font-size: 2em;
    color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #2980b9;
}

@media (max-width: 768px) {
    .hero {
        height: 300px;
    }

    .hero h1 {
        font-size: 2em;
    }

    .hero p {
        font-size: 1.2em;
    }

    .contact-methods {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .map-container iframe {
        width: 100%;
        height: 300px;
    }

    .social-media-links {
        flex-direction: column;
        gap: 10px;
    }
}
