/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

*{
    scroll-behavior: smooth;
}

#services{
    scroll-margin-top: 40px;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

a.btn.btn-primary.btn-lg {
    background-color: #9b0000;
    border-color: #9b0000;
}

.navbar-brand {
    font-weight: bold;
    font-size: 2rem;
    color: #9b0000;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #9b0000 0%, #ff4444 100%);
    color: white;
    padding: 80px 0;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
}

/* Services Section */
.service-card {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: white;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    color: #9b0000;
}

.service-card h3 {
    margin: 1rem 0;
    font-size: 1.5rem;
}

/* Footer Section */
.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 0 2rem;
}

.logo{
    width: 80px;
    border-radius: 5px;
}

.footer h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #9b0000;
}

.footer-brand p {
    color: #cecece;
    font-size: 0.95rem;
}

.social-icons a {
    color: #fff;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: #9b0000;
}

.contact-list, .legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li, .legal-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    color: #cecece;
}

.contact-list i, .legal-list i {
    color: #9b0000;
    margin-right: 10px;
    margin-top: 5px;
    min-width: 20px;
}

.contact-list a {
    color: #cecece;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-list a:hover {
    color: #9b0000;
}

.footer-divider {
    margin: 1rem 0;
    border-color: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    color: #888;
    margin: 0;
    font-size: 0.9rem;
}

.footer-content {
    margin: 0 auto;
}

.footer-info {
    line-height: 1.8;
}

.footer-info p {
    margin-bottom: 1rem;
}

.footer-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-info a:hover {
    color: #9b0000;
}

.footer i {
    color: #9b0000;
    width: 20px;
    text-align: center;
}

.footer-bottom {
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}