/* Global Styles */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #fff;
  }
 
  /* Background Colors */
  .seo-common-content .blue-bg {
    background-color: #DFF4FF;
  }

  
  .seo-common-content .light-blue-bg {
    background-color: #e8f4f9;
  }
  .seo-common-content .white-bg {
    background-color: #ffffff;
  }

  .seo-common-content .ptb0 {
    padding-top: 0%; 
    padding-bottom: 0%;
  }

  .seo-common-content .pt0 {
    padding-top: 0%; 
  }

  .seo-common-content .pb0 {
    padding-bottom: 0%;
  }
  .seo-common-content h3 {
    font-size: 32px;
    font-weight: bold;
    color: #000000;
  }
  
  .seo-common-content .header3-motto { 
    font-size: 18px;
    color: #4c5e18;
  }
  .content-container h3,
.content-container .header3-motto {
  margin: 0; /* Remove default margins */
  padding: 0; /* Remove any padding, just in case */
}
  
  /* Text Styles */
  p {
    margin: 0 0 15px;
    color: #000000;
    /*font-size: 24px;*/
    padding-bottom: 0%;
    letter-spacing: -.005em;
    /*margin-top: 0;*/
    /*margin-bottom: 24px;*/
    font-size: 21px;
    font-style: normal;
    font-weight: 400;
    line-height: 35px;
  }

  .seo-common-content ul {
    list-style-position: outside; /* Moves the marker (circle) inside the padding of the <li> */
    padding-left: 5%; /* Adjust the left padding for the entire list */
    text-align: left;
    }
  .seo-common-content ul li {
    margin: 0 0 15px;
    color: #000000;
    font-size: 21px;
    align-items: left;
  }

  .custom-list {
    list-style: none; /* Remove default list numbers */
    margin: 0;
    padding: 0;
    text-align: left;
}

.custom-list li {
    position: relative; /* Set relative positioning for the list item */
    margin-bottom: 20px; /* Add spacing between list items */
    padding-left: 3em; /* Create space for the custom number */
    font-size: 21px;
    color: #000000;
    line-height: 1.5; /* Adjust line height for readability */
}

.custom-list li::before {
    content: counter(custom-counter) "."; /* Insert the custom list number */
    counter-increment: custom-counter; /* Increment the counter */
    position: absolute;
    left: 0; 
    top: 0.5em; /* Place the number just before the second line */
    font-size: 28px;  
    font-weight: bold;  
    color: #3724a3;  
}

.custom-list {
    counter-reset: custom-counter; 
}


  
  .title {
    margin-top: 0;
    color: #222375;
    font-size: 50px;
    font-weight: bolder;
  }
  
  .highlight {
    font-weight: bold;
  }
  
   .content-container {
    padding-top: 2.5%;
    padding-bottom: 2.5%;
    display: flex;
    justify-content: space-between;
    padding-left: 10% ;
    padding-right: 10%;
    background-color: #DFF4FF; /* Background color for the container */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    width: 100%; /* Ensure it adjusts to screen size */
    max-width: 100%; /* Set a max width for the container */
    gap: 20px;
    box-sizing: border-box;
  }
  
  .text-content p {
    font-size: 21px;
    line-height: 1.8;
    color: #333;
    margin-bottom: 42px;
  }
  .text-content p span {
    font-weight: bold;
  }
  
  .text-content p span.highlight {
    font-weight: bold;
    color: #222375; /* Highlight color */
  }
  
  .text-content {
    flex: 1;
    max-width: 50%;
  }

  .right-image-content {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column; /* This can stay, depending on other content */
    justify-content: left; /* Center vertically */
    align-items: flex-start; /* Align to the left boundary */
    text-align: left; /* Align text to the left */
  }
  
  .right-image-content img {
    padding: 10%;
    max-width: 60%;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 0; /* Remove any extra margin */
  }

  

  .left-image-content {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column; /* This can stay, depending on other content */
    justify-content: right; /* Center vertically */
    align-items: flex-end; /* Align to the left boundary */
    text-align: right; /* Align text to the left */
  }
   
  
  .left-image-content img {
    padding: 10%;
    max-width: 50%;
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 0; 
  }

  
  .local-growth-img {
    flex: 1;
    display: flex;
    flex-direction: column; 
    justify-content: right; 
    align-items: flex-end;  
    text-align: right;  
  }
   
  
  .local-growth-img img {
    width: 80%;
    padding-right: 10%;
    height: auto;
    border-radius: 10px;
    margin: 0; 
  }
  



.seo-common-content {   
    display: block;
  }
.seo-common-content .text p{
    text-align: left;
    font-size: 24px; /* Adjust text size */
    line-height: 1.5; /* Improve readability */
  }


  .seo-audit-container {
    border-radius: 8px;
    padding: 20px 30px;
    max-width: 100%;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .seo-audit-container h2 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333333;
  }
  
  .seo-audit-container p {
    font-size: 24px;
    color: #666666;
    margin-bottom: 20px;
  }
  
  .seo-audit-container .highlight {
    font-weight: bold;
    color: #0056b3;
  }
  
  .seo-audit-form input {
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    border: 1px solid #cccccc;
    border-radius: 4px;
    font-size: 24px;
  }
  
  .seo-audit-form button {
    width: 100%;
    padding: 10px;
    background-color: #0056b3;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 24px;
    cursor: pointer;
  }
  
  .seo-audit-form button:hover {
    background-color: #003d80;
  }
  
  .seo-illustration {
    margin-top: 20px;
    height: 100px;
    background: url('/frontend/assets/img/service-icon/local-seo/local-seo7.png') no-repeat center;
    background-size: contain;
  }
  
  /* Replace 'illustration-placeholder.png' with the actual path to your image */

  .stats-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding-left: 10%;
    padding-right: 10%;
  }
  
  .stats-table {
    width: 100%;
    border-collapse: collapse; /* Ensures no border spacing */
    text-align: center;
    padding: 20px;
  }
  
  .stats-table thead th {
    font-size: 80px;
    font-weight: bold;
    color: #003d80;
    padding: 10px;
  }
  
  .stats-table tbody .highlight-row span {
    display: block;
    font-size: 35px;
    font-weight: bold;
    color: #95beea;
    padding: 15px 0;
  }
  
  .stats-table tbody td {
    font-size: 24px;
    padding: 15px;
    font-weight: normal;
    color: #000000;
    max-width: 60px;
    border: none; /* Removed the right border */
  }
  
  .stats-table tbody tr {
    background-color: #ffffff;
  }
  
  .stats-table thead tr {
    background-color: transparent;
  }
  
  
  .stars {
    display: flex; /* Use flexbox for alignment */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically if needed */
    font-size: 2rem; /* Adjust the size of the stars */
    color: #FFD700; /* Gold color for the stars */
    margin: 20px 0;
}

.card {
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background-color: #DFF4FF;
}

.card img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.card-title {
    font-size: 24px;
    font-weight: bold;
    margin-top: 10px;
    color: #5b89df;
}

.card-text {
    font-size: 20px;
    color: #555;
}

.plan-container {
  /* background-color: #f8f9fa; */
  padding: 20px;
  border-radius: 8px;
  /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
}

.plan-title {
  background-color: #004c73;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  font-size: 24px;
  text-align: left;
  max-width: 500px;
}

ul {
  list-style-type: disc;
  margin: 0 0 0 20px;
  font-size: 16px;
}

.plan-image {
  max-height: 150px;
  object-fit: contain;
  margin: 20px auto;
}

.vertical-line {
  position: absolute;
  height: 180px; /* Adjust the height based on your design */
  width: 2px;
  background-color: #000000;
  left: 50%;
  transform: translateX(-50%); /* Center horizontally */
}
.parent-container {
  display: flex;
  align-items: center;
  height: 100%; /* Ensure the parent takes up full height */
}


.issue-box {
  max-width: 500px;
  padding: 20px;
  border-radius: 8px;
  /* box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); */
}

.issue-icon {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.issue-title {
  padding-top: 20px;
  font-size: 24px;
  font-weight: bold;
  color: #004c73;
  margin-bottom: 5px;
}

.issue-description {
  padding-top: 20px;
  font-size: 20px;
  color: #555;
  line-height: 1.5;
}

.local-business-icon {
  padding-top: 5%; 
}

#location-based-seo {
  border-radius: 5%;
}

.seo-box {
  background: #f6f5f5; /* Light peach background */
  padding: 5%;
  border-radius: 8px;
  position: relative;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 1%;
}
.seo-box::before {
  content: "";
  position: absolute;
  top: 0;
  width: 10px;
  height: 100%;
  background: #1E3A5F; /* Dark blue strip */
  border-radius: 8px 0 0 8px;
}
.strip-right::before {
  right: 0;
  border-radius: 0 8px 8px 0;
}
.strip-left::before {
  left: 0;
}
  
  /* Responsive Design */
  @media (max-width: 768px) {
    /* Adjust Proximity Section */
      .local-business-icon {
        padding-top: 0%; 
      }
      .seo-common-content {
          padding: 2%;
      }
      
      .seo-common-content p{
        padding-top: 2%;
        padding-bottom: 2%;
        padding-left: 5%;
        padding-right: 5%;
        font-size: 16px;
      }
      .seo-common-content h3{
        font-size: 24px;
      }
      .seo-common-content ul li{
        font-size: 16px;
      }
      .seo-common-content ol li{
        font-size: 16px;
      }
      .info-box {
          padding: 15px;
      }
      
      .title {
        font-size: 20px;
      }

      .proximity {
        display: block;
        padding: 15px;
      }
    
      .content-container {
        flex-direction: column;
        max-width: 100%;
        padding: 0;
        align-items: center;
        text-align: center;
      }
    
      .text-content {
        max-width: 100%;
        text-align: left;
      }
    
    
      .text-content p {
        font-size: 16px;
        line-height: 1.6;
      }
    
      .right-image-content {
        display: flex;
        justify-content: center;
        margin-top: 15px;
      }
  
      .right-image-content img {
      max-width: 100%;
      height: auto;
      }
      .left-image-content {
        display: flex;
        justify-content: center;
        margin-top: 15px;
      }
  
      .left-image-content img {
      max-width: 100%;
      height: auto;
      }

        
  .local-growth-img {
    margin-top: 15px;
    display: flex;
    justify-content: center;
  }

  .local-growth-txt {
    flex: 1;
    max-width: 50%;
    display: flex;
    flex-direction: column; /* This can stay, depending on other content */
    justify-content: left; /* Center vertically */
    align-items: flex-start; /* Align to the left boundary */
    text-align: left;
    padding-left: 10%;
    padding-right: 10%;
  }
  .local-growth-img img {
    width: 100%;
    max-width: 100%;
    padding-right: 0%;
    height: auto;
    border-radius: 10px;
    margin: 0; 
  }

    
      .text-content {
        max-width: 100%;
      }
    
      .right-image-content {
        max-width: 50%;
      }
      .content-container p {
        text-align: left;
      }
      
      .content-container h1 {
        text-align: left;
        font-size: 36px;
        font-weight: bold;
        color: #000;
        margin-bottom: 20px;
      }

      .stats-table thead th {
        font-size: 20px;
        padding: 2px;
      }
    
      .stats-table tbody td {
        font-size: 10px;
        padding: 2px;
      }
    
      .stats-table tbody .highlight-row span {
        font-size: 12px;
        padding: 2px;
      }
      .card-text {
        font-size: 12px;
      }
      .plan-container {
        margin-top: 20px;
      }

      .vertical-line {
        display: none;
      }
      
      .plan-title {
        text-align: center;
      }
      
      .seo-common-content h3 {
        text-align: center; 
        padding-top: 5%;
      }
      
  .content-container h3,
  .content-container .header3-motto {
    margin: 0; /* Remove default margins */
  }
      .content-container .header3-motto {
        padding-bottom: 5%; /* Remove any padding, just in case */
      }
      .seo-common-content {
        margin: 0;
        padding: 0;
    }
  }


  
  /*================================
  seo-common-content End
  ==================================*/
  