:root {
  --mql-dark-blue: #2a3b5c;        /* Header/nav background */
  --mql-primary-blue: #36558b;     /* Tab active, primary buttons */
  --mql-light-blue: #cfd9e8;       /* Light section background, optional borders */
  --mql-orange: #39ad39;           /* Warning or highlight (keep as-is) */
  --mql-gray: #e6e9f0;             /* Backgrounds, light containers */
  --mql-dark-gray: #1e2b40;        /* Sidebar or footer bg */
  --mql-text-dark: #333333;        /* Body text */
  --mql-text-light: #ffffff;       /* White text on dark sections */
}
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #f5f7fa;
  color: var(--mql-text-dark);
  line-height: 1.6;
}

/* Banner Styles */
.mql-banner {
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Ticker Styles */
.mql-ticker-container {
  background-color: var(--mql-dark-blue);
  padding: 15px 0;
  margin-bottom: 30px;
  border-radius: 5px;
}

/* Blog Cards */
.mql-blog-card {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mql-blog-card:hover {
  transform: translateY(-5px);
}

.mql-blog-card img {
  height: 200px;
  object-fit: cover;
}

.mql-blog-card .card-body {
  flex: 1;
}

.mql-blog-card .card-title {
  color: var(--mql-primary-blue);
  font-weight: 600;
}

.mql-blog-card .card-footer {
  background-color: white;
  border-top: 1px solid var(--mql-gray);
}

/* CTA Section */
.mql-cta {
  background-color: var(--mql-primary-blue);
  border-radius: 10px;
  padding: 50px;
  margin: 50px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.mql-cta::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.mql-cta h2 {
  font-weight: 700;
  margin-bottom: 20px;
}

.mql-cta-btn {
  background-color: white;
  color: var(--mql-primary-blue);
  border: none;
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.mql-cta-btn:hover {
  background-color: var(--mql-orange);
  color: white;
}

/* Contact Form */
.mql-contact-container {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin: 50px 0;
  overflow: hidden;
}

.mql-contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mql-contact-form {
  padding: 40px;
}

.mql-contact-form h2 {
  color: var(--mql-primary-blue);
  font-weight: 700;
  margin-bottom: 30px;
}

.mql-contact-form input,
.mql-contact-form textarea {
  border: 1px solid var(--mql-gray);
  border-radius: 5px;
  padding: 12px 15px;
  margin-bottom: 20px;
  width: 100%;
}

.mql-contact-form textarea {
  min-height: 150px;
}

.mql-contact-form button {
  background-color: var(--mql-primary-blue);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s;
}

.mql-contact-form button:hover {
  background-color: var(--mql-dark-blue);
}

/* Footer */
.mql-footer {
  background-color: #e0e5ec;
  color: black !important;
  padding: 50px 0;
}

.mql-footer h4 {
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--mql-light-blue) !important;
}

.mql-footer a {
  color: var(--mql-light-blue);
  text-decoration: none;
  transition: all 0.3s;
}

.mql-footer a:hover {
  color: var(--mql-light-blue);
}

.mql-footer ul {
  list-style: none;
  padding: 0;
}

.mql-footer li {
  margin-bottom: 10px;
}

.mql-footer i {
  margin-right: 10px;
  color: var(--mql-light-blue);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .mql-contact-image {
    display: none;
  }
  
  .mql-contact-form {
    width: 100%;
  }
}
