a {
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Footer styles */
footer {
    background-color: #1a202c; /* bg-gray-900 */
    color: #fff;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

@media (min-width: 768px) {
    .container {
        padding: 3rem 1.5rem;
    }
}

.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

h3 {
    font-size: 1.125rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.text-gray-400 {
    color: #a0aec0;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #2d3748; /* bg-gray-800 */
    padding: 0.5rem;
    border-radius: 9999px;
    transition: background-color 0.3s;
}

.social-link:hover {
    background-color: #319795; /* bg-teal-600 */
}

.social-link svg {
    width: 1.25rem;
    height: 1.25rem;
}

.quick-links li {
    margin-bottom: 0.5rem;
}

.quick-links a {
    color: #a0aec0;
    transition: color 0.3s;
}

.quick-links a:hover {
    color: #4fd1c5; /* text-teal-400 */
}

.locations {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.location h4 {
    font-weight: 600;
    color: #fff;
}

.contact-item {
    display: flex;
    align-items: center;
    color: #a0aec0;
    margin-bottom: 0.5rem;
}

.contact-item svg {
    width: 1.25rem;
    height: 1.25rem;
    margin-right: 0.5rem;
    color: #38b2ac; /* text-teal-500 */
}

.contact-item a {
    color: #a0aec0;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: #4fd1c5; /* text-teal-400 */
}

.newsletter-form {
    display: flex;
    margin-top: 1.5rem;
}

.newsletter-form input {
    flex: 1;
    background-color: #2d3748; /* bg-gray-800 */
    border: 1px solid #4a5568; /* border-gray-700 */
    color: #fff;
    padding: 0.5rem 1rem;
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 2px #38b2ac; /* ring-teal-500 */
}

.newsletter-form button {
    background-color: #319795; /* bg-teal-600 */
    color: #fff;
    padding: 0.5rem 1rem;
    border: none;
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.newsletter-form button:hover {
    background-color: #2c7a7b; /* bg-teal-700 */
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #2d3748; /* border-gray-800 */
    margin-top: 3rem;
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.copyright {
    color: #a0aec0;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .copyright {
        margin-bottom: 0;
    }
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    font-size: 0.875rem;
}

.footer-links a {
    color: #a0aec0;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4fd1c5; /* text-teal-400 */
}

.scroll-top {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    background-color: #319795; /* bg-teal-600 */
    color: #fff;
    padding: 0.75rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s;
}

.scroll-top:hover {
    background-color: #2c7a7b; /* bg-teal-700 */
}

.scroll-top svg {
    width: 1.5rem;
    height: 1.5rem;
}