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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.footer {
    background-color: #2c3e50; /* Dark gray background */
    color: #ecf0f1;
    padding: 40px 0 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.footer-section h3 {
    color: white;
    margin-bottom: 15px;
    font-size: 18px;
    border-bottom: 2px solid #34495e;
    padding-bottom: 5px;
}

.footer-section ul {
    list-style: none;
    margin-bottom: 20px;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: #3498db;
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}
.contact-info p {
    margin-bottom: 10px;
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.9;
}

.contact-info strong {
    color: #3498db;
}

/* Responsive Design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    .footer-section {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 30px 0 15px;
    }
}