body {
    background-color: #f8f9fa;
    color: #212529;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.navbar {
    background-color: #000;
    padding: 1rem 0;
}

.navbar .nav-link {
    color: #fff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar .nav-link:hover {
    color: #ff4b4b;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.75rem;
    color: #fff;
}

.contact-section {
    background-color: #fff;
    padding: 80px 0;
}

.contact-section h1 {
    color: #212529;
    font-weight: bold;
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-align: center;
}

.contact-section p {
    color: #555;
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-section .form-group {
    margin-bottom: 20px;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    background-color: #fff;
    transition: all 0.3s ease;
}

.contact-section input:focus,
.contact-section textarea:focus {
    border-color: #ff4b4b;
    outline: none;
    box-shadow: 0 0 5px rgba(255, 75, 75, 0.5);
}

.contact-section textarea {
    height: 150px;
    resize: none;
}

.contact-section button {
    background-color: #ff4b4b;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    width: 100%;
}

.contact-section button:hover {
    background-color: #e64545;
    transform: translateY(-3px);
}

.contact-section .form-group label {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 10px;
    display: block;
}

.contact-section .contact-info {
    margin-top: 40px;
    text-align: center;
}

.contact-section .contact-info h3 {
    font-size: 1.8rem;
    color: #212529;
}

.contact-section .contact-info p {
    font-size: 1.1rem;
    color: #555;
}

.contact-section .contact-info a {
    color: #ff4b4b;
    font-weight: bold;
    text-decoration: none;
}

.contact-section .contact-info a:hover {
    color: #e64545;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-section h1 {
        font-size: 2rem;
    }

    .contact-section p {
        font-size: 1.1rem;
    }

    .contact-section button {
        font-size: 1.1rem;
        padding: 12px 20px;
    }
}

/* Footer */
footer {
    background-color: #000;
    color: #fff;
    padding: 30px 0;
    text-align: center;
}

footer p {
    margin: 0;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    color: #ff4b4b;
    text-decoration: underline;
}
