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

/* ✅ Navigation Bar */
nav {
    background: #222;
    padding: 15px 0;
    text-align: center;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    padding: 10px;
    transition: 0.3s;
}

nav ul li a:hover {
    color: #ff416c;
}

/* ✅ Contact Section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    background: #f9f9f9;
}

.contact-info {
    flex: 1;
    max-width: 45%;
}

.contact-info h1 {
    font-size: 28px;
    color: #ff416c;
    margin-bottom: 10px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.contact-details p {
    font-size: 18px;
    margin: 10px 0;
}

/* ✅ Contact Form */
.contact-form {
    flex: 1;
    max-width: 45%;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.contact-form h2 {
    font-size: 24px;
    color: #ff416c;
    margin-bottom: 15px;
}

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

.contact-form button {
    background: #ff416c;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.contact-form button:hover {
    background: #e03e5d;
}

/* ✅ Google Map */
.location {
    text-align: center;
    padding: 40px;
    background: #fff;
}

.location h2 {
    font-size: 24px;
    color: #ff416c;
    margin-bottom: 20px;
}

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

.footer-links a {
    color: #ff416c;
    text-decoration: none;
    font-size: 16px;
    margin: 0 10px;
}

.footer-links a:hover {
    color: white;
}