section h1{
    font-size: 32px;
    color: #1F6642;
}

.breadcrumbs{
  margin-top: 25px;
}

.servicesContainer{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;

    width: 100%;
    margin-top: 20px;
}

.serviceItem{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #EBF6FF;
    border-radius: 10px;
    padding: 10px 20px;
    text-decoration: none;
    transition: .4s;
}

.serviceItemTitle{
    font-size: 16px;
    color: #1F6642;
    width: 100%;
    padding: 0;
    margin: 0;
}

.serviceItemPrice{
    color: #575757;
    font-size: 14px;
    margin-top: 3px;
}

.serviceItem:hover{
    background: #1F6642;
    color: #fff;
}

.serviceItem:hover .serviceItemTitle{
    color: #fff;
}

.serviceItem:hover .serviceItemPrice{
    color: #fff;
}

@media(min-width: 320px) and (max-width: 550px){
    .servicesContainer{
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}


@media(min-width: 550px) and (max-width: 720px){
    .servicesContainer{
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
}

.servicesOrganizationContainer{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media(min-width: 320px) and (max-width: 550px){
    .servicesOrganizationContainer{
        grid-template-columns: repeat(2, 1fr);
    }
}


@media(min-width: 550px) and (max-width: 720px){
    .servicesOrganizationContainer{
        grid-template-columns: repeat(3, 1fr);
    }
}

.servicesOrganizationContainer .organizationContainer{
    display: flex;
    justify-content: space-between;
    height: 100% !important;
}

.servicesOrganizationContainer .organizationInfoContent{
    display: flex;
    height: 100%;
    align-content: space-between;
    flex-direction: column;
    justify-content: space-between;
}

.servicesOrganizationContainer .organizationInfo{
    height: 100%;
}

.info-text {
  font-size: 16px;
  font-weight: 400;
  color: #555555;
  line-height: 1.75;
  margin-bottom: 3em;
}

.info-text p {
  margin-bottom: 1.5em;
  color: #444444;
}

.info-text h1, 
.info-text h2, 
.info-text h3, 
.info-text h4, 
.info-text h5, 
.info-text h6 {
  font-weight: 700;
  line-height: 1.3;
  margin: 1em 0 0.5em;
  color: #1F6642;
}

.info-text h1 { font-size: 32px; }
.info-text h2 { font-size: 28px; }
.info-text h3 { font-size: 24px; }
.info-text h4 { font-size: 20px; }
.info-text h5 { font-size: 18px; }
.info-text h6 { font-size: 16px; font-weight: 600; }

.info-text ul,
.info-text ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}

.info-text ul {
  list-style: disc;
}

.info-text ol {
  list-style: decimal;
}

.info-text li {
  margin-bottom: 0.5em;
  font-size: 15px;
  color: #555555;
  line-height: 1.6;
  position: relative;
  padding-left: 0.5em;
}

.info-text li::marker {
  color: #1F6642;
  font-size: 1.2em;
}

.info-text a {
  color: #1F6642;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
}

.info-text a:hover {
  color: #c69b7e;
  border-bottom: 1px solid #c69b7e;
}

.info-text strong {
  font-weight: 700;
  color: #1F6642;
}

.info-text em {
  font-style: italic;
  color: #777777;
}

.info-text blockquote {
  margin: 1.5em 0;
  padding: 1.5em;
  background: #f9f9f9;
  border-left: 5px solid #1F6642;
  font-style: italic;
  color: #555555;
  font-size: 16px;
  line-height: 1.6;
}

.info-text blockquote p {
  margin: 0;
}

.info-text hr {
  border: none;
  height: 1px;
  background: #e0e5f0;
  margin: 2em 0;
}

.info-text img {
  max-width: 100%;
  height: auto;
  margin: 1.5em 0;
  border-radius: 8px;
}

.info-text table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5em 0;
}

.info-text table th,
.info-text table td {
  border: 1px solid #e0e5f0;
  padding: 0.75em;
  text-align: left;
}

.info-text table th {
  background: #f4f7fc;
  font-weight: 600;
  color: #333;
}

.info-block {
  display: grid;
  grid-template-columns: 1fr 2fr;
  margin: 1em 0 4em 0;
}
@media screen and (max-width: 650px) {
  .info-block {
    grid-template-columns: 1fr;
    gap: 1em;
  }
}