    body {
    font-family: 'Montserrat', sans-serif;
       background-color: #f8f9fa;
      margin: 0;
      padding: 0;
      line-height: 1.6;
      color: #333;
    }

    h1, h2, h3 , p{
  font-family: 'Montserrat', sans-serif;
  font-weight: 00; /* Use bold weight if needed */
}


    
/* Top Bar */
.top-bar {
  background-color: #383e48;
  color: white;
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 2rem;
  align-items: center;
  font-size: 14px;
  flex-wrap: wrap;
}

.top-bar i {
  margin: 0 8px;
  color: #5e6203;
}

.top-bar-right i {
  margin-left: 20px;
  cursor: pointer;
}

/* Header */
.main-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background-color: white;
  border-bottom: 1px solid #eee;
  flex-wrap: wrap;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-icon {
  width: 40px;
  height: 40px;
  filter: sepia(1) saturate(3) hue-rotate(15deg);
}

.logo-text h1 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
  color: #333;
}

.logo-text p {
  margin: 0;
  font-size: 12px;
  color: #888;
}

.tagline {
  color: #5e6203;
  font-weight: 600;
  font-style: italic;
  font-size: 16px;
  flex-grow: 1;
  text-align: center;
}

.nav-menu {
  display: flex;
  gap: 25px;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: #383e48;
  font-weight: 500;
  position: relative;
}

.nav-menu a:hover {
  color: #5e6203;
}

.nav-menu span {
  margin-left: 4px;
}

/* Toggle Button (Mobile) */
.nav-toggle {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #1e3053;
}

/* Responsive Rules */
@media (max-width: 768px) {
  .tagline {
    flex-basis: 100%;
    margin-top: 10px;
    text-align: center;
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    gap: 15px;
    background: white;
    padding: 1rem 2rem;
    border-top: 1px solid #eee;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }
}


    .container {
      max-width: 900px;
      margin: 70px auto;
      padding: 20px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
    }

    h1 {
      text-align: center;
      color: #0b2e59;
    }

    p {
      margin-bottom: 20px;
    }

    /** FOOTER **/

.info-content .btn {
  margin-top: 1rem;
}  

        .main-footer {
    background-color: #383e48;
    color: #fff;
    padding: 4rem 2rem 2rem;
    font-size: 0.95rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-col {
    flex: 1 1 220px;
}

.logo-col p {
    margin: 1rem 0;
    color: #ddd;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 1rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    color: #5e6203;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
    cursor: pointer;
    color: #ddd;
}

.footer-col p,
.footer-col ul li {
    line-height: 1.6;
}

.footer-col i {
    margin-right: 0.5rem;
    color: #5e6203;
}

.social-icons {
    margin-top: 1rem;
}

.social-icons i {
    font-size: 1.2rem;
    margin-right: 1rem;
    cursor: pointer;
    color: #5e6203;
    transition: transform 0.3s;
}

.social-icons i:hover {
    transform: scale(1.2);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #1b2a3a;
    margin-top: 2rem;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
    }
}








/* blog */
/* blog */
/* blog */
/* blog */


.blog-section {
  padding: 60px 0;
  background-color: #ffffff;
  font-family: Arial, sans-serif;
}

.blog-section .container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-subtitle {
  font-size: 14px;
  color: #888;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: 32px;
  margin-bottom: 10px;
  color: #333;
}

.section-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 40px;
}

/* Blog Grid */
.blog-grid {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

/* Blog Card */
.blog-card {
  background: #f5f5f5;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: none;
  border: 1px solid #ddd;
}

.blog-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Blog Date */
.blog-date {
  background: #333;
  color: #fff;
  font-size: 14px;
  padding: 8px;
  text-align: center;
}

.blog-date span {
  display: block;
  font-size: 12px;
  color: #ccc;
}

/* Blog Info */
.blog-info {
  padding: 15px;
}

.meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 10px;
}

.meta span {
  display: inline-block;
  margin-right: 10px;
}

.blog-title {
  font-size: 18px;
  color: #222;
  margin: 10px 0;
}

.blog-snippet {
  font-size: 15px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 10px;
}

.read-more {
  font-size: 14px;
  color: #0066cc;
  text-decoration: none;
}


/* contact info */
/* contact info */

.optima-contact-section {
  background-color: #f2f5f7;
  padding: 60px 20px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.optima-container {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.optima-contact-title {
  font-size: 32px;
  color: #1e2b37;
  margin-bottom: 10px;
}

.optima-contact-subtitle {
  font-size: 16px;
  color: #5a6c7b;
  margin-bottom: 40px;
}

.optima-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  text-align: left;
}

.optima-contact-card {
  background-color: #ffffff;
  padding: 20px 25px;
  border-radius: 10px;
  border: 1px solid #dde2e6;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.03);
}

.optima-contact-card h4 {
  font-size: 18px;
  color: #2c3e50;
  margin-bottom: 10px;
}

.optima-contact-card p {
  font-size: 15px;
  color: #3f4f5c;
  line-height: 1.6;
}

.optima-contact-card a {
  color: #0077cc;
  text-decoration: none;
}

.optima-contact-card a:hover {
  text-decoration: underline;
}


/* contact info */
/* contact info */
/* contact info */


.attorney {
  cursor: pointer;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 60px;
  left: 0; top: 0;
  width: 100%; height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
  background-color: #fff;
  margin: auto;
  padding: 30px;
  border: 1px solid #888;
  width: 60%;
  max-width: 600px;
  border-radius: 10px;
  position: relative;
}

.close {
  color: #aaa;
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

/* contact info */
/* contact info */
/* contact info */
/* contact info */


