/* General Styles */
body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.container {
    width: 100%;
    max-width: 1200px;  /* Max width for large screens */
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

/* Logo Styles */
.logo img {
    max-width: 100%;  /* Make the logo responsive */
    height: auto;     /* Maintain aspect ratio */
    width: auto;
    max-height: 150px; /* Ensure it doesn't become too large */
}

/* Content Styles */
.content {
    margin-top: 20px;
}

h1, h2 {
    color: #333;
}

p {
    color: #555;
}

/* Form Styles */
form {
    margin-top: 20px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background-color: #5cb85c;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #4cae4c;
}

/* Contact Info Styles */
.contact-info {
    margin-top: 20px;
}

.map {
    margin-top: 20px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 10px;
    }

    .logo img {
        max-width: 80%;  /* Ensure logo scales down on smaller screens */
        max-height: 100px;  /* Reduce height on smaller screens */
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    .logo img {
        max-width: 70%;  /* Further reduce the logo size on very small screens */
        max-height: 80px;
    }
}
