/* General Styles */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
}

/* Header Styles */
header {
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.logo {
    width: 120px;
    height: auto;
}

/* Hero Section */
.hero-section {
    background-color: #0056b3;
    padding: 4rem 0;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}

/* Button Styles */
.btn-primary {
    background-color: #0056b3;
    border-color: #0056b3;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.btn-primary:hover {
    background-color: #004494;
    border-color: #004494;
}

.btn-light {
    background-color: #ffffff;
    color: #0056b3;
    border-color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
}

.btn-light:hover {
    background-color: #f0f0f0;
    color: #004494;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
}

footer a:hover {
    color: #f0f0f0;
    text-decoration: underline;
}

/* Testimonials */
.testimonial-item {
    padding: 1.5rem;
}

/* Media Queries */
@media (max-width: 768px) {
    .hero-section {
        padding: 2rem 0;
    }
    
    .logo {
        width: 100px;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.5rem;
    }
    
    .hero-section h2 {
        font-size: 1.8rem;
    }
}

/* Form Styles */
.form-control:focus {
    border-color: #0056b3;
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}

/* List Styles */
.list-group-item {
    border-left: none;
    border-right: none;
}

/* Accordion Styles */
.accordion-button:not(.collapsed) {
    background-color: rgba(0, 86, 179, 0.1);
    color: #0056b3;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 86, 179, 0.25);
}
/* Custom CSS to change the primary theme color to match the logo red */
:root {
  --bs-primary: #FF0000; /* This is a common red color often used in logos, adjust as needed */
  --bs-primary-rgb: 200, 16, 46;
}

.bg-primary {
  background-color: var(--bs-primary) !important;
}

.text-primary {
  color: var(--bs-primary) !important;
}

.btn-primary {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  background-color: #a30e26 !important; /* Darker shade for hover states */
  border-color: #a30e26 !important;
}

.btn-outline-primary {
  color: var(--bs-primary);
  border-color: var(--bs-primary);
}

.btn-outline-primary:hover {
  background-color: var(--bs-primary);
  border-color: var(--bs-primary);
}

/* Additional styles for any other elements using the primary color */
.nav-link.active {
  color: var(--bs-primary) !important;
}

a {
  color: var(--bs-primary);
}

a:hover {
  color: #a30e26;
}