/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body and Global Styles */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    background-color: #f4f4f4;
    color: #333;
}

/* Container for Content */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header */
header {
    background-color: #4CAF50;
    color: white;
    padding: 30px 0;
    text-align: center;
}

header h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

header p {
    font-size: 22px;
    color: #e0e0e0;
}

/* Contact Info Section */
#contact-info {
    background-color: #fff;
    padding: 50px 0;
    text-align: center;
}

#contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#contact-info .contact-details {
    font-size: 18px;
    margin: 20px 0;
}

#contact-info a {
    color: #4CAF50;
    text-decoration: none;
}

#contact-info a:hover {
    text-decoration: underline;
}

#contact-info ul {
    font-size: 18px;
    list-style-type: none;
    padding: 0;
}

#contact-info ul li {
    margin-bottom: 10px;
}

/* Contact Form Section */
#contact-form {
    background-color: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}

#contact-form h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

#contact-form p {
    font-size: 20px;
    color: #666;
    margin-bottom: 30px;
}

form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

form input, form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

form input:focus, form textarea:focus {
    border-color: #4CAF50;
    outline: none;
}

form .submit-button {
    background-color: #4CAF50;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form .submit-button:hover {
    background-color: #45a049;
}

/* Footer Section */
footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 16px;
}

footer a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}