* {
  margin: 0;
  padding   :0;
  box-sizing  :    border-box;
}

html {
    scroll-behavior :  smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: #2c2c2c;
    background-color: #ffffff;
  line-height  :     1.6;
}

.header__navigation {

  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 0.75rem 2%;
   position: sticky;
    top: 0;
   z-index:  1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
     }

.nav__container {
    max-width: 1200px;
  margin: 0 auto;
  display     :flex;
   align-items: center;
    justify-content: space-between;
}

.nav__logo-section {
  flex-shrink: 0;
}

.nav__logo {
    height: 32px;
   width: auto;
   display: block;
}

.nav__burger {
    display: none;
	      background: transparent;
	   border: none;
	    cursor: pointer;
	   padding: 0.5rem;
	               align-items: center;
	   justify-content: center;
}

.burger__icon  
  {
   width: 24px;
   height: 24px;
   stroke: #ffffff;
   fill :none;
}

.nav__menu {
   list-style: none;
	 display: flex;
  gap: 1.5rem;
  align-items: center;
}

.nav__item {
      position: relative;
}

.nav__link {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight :      500;
   padding: 0.5rem 0;
	transition: color 0.3s ease;
	 border-bottom: 2px solid transparent;
}

.nav__link:hover {
     border-bottom-color: #64b5f6;
        color: #64b5f6;
}

.hero__section {
  background: linear-gradient(to bottom, #f5f5f5, #ffffff);
         padding: 4rem 2%;
   margin-top    :  1rem;
}

.hero__wrapper {
    max-width: 1200px;
    margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
          gap: 3rem;
  align-items: center;
}

.hero__content {
  display: flex;
   flex-direction     : column;
    gap: 1.5rem;
}

.hero__title {


    color: #1a1a1a;
 line-height: 1.2;
	font-size: 2.8rem;
  font-weight: 700;
     }

.hero__subtitle {
   font-size: 1.1rem;
  color:    #666666;
	 line-height: 1.7;
}

.hero__cta{

  display: inline-block;
  background: linear-gradient(135deg, #2196F3, #1976D2);
   color: white;
   padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight   :600;
  font-size: 1rem;
   transition: all 0.3s ease;
   width: fit-content;
  box-shadow: 0 4px 12px rgba(33, 150, 243, 0.3);}

.hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(33, 150, 243, 0.4);
  background: linear-gradient(135deg, #1976D2, #1565C0);

}

.hero__visual {
   display: flex;

         align-items: center;

	justify-content  :center;
}

.hero__image-placeholder {
           width  :    100%;
    border-radius: 12px;
    overflow :      hidden;
	}

.hero__image {
    width: 100%;
    height   :  auto;
  display: block;
 object-fit: cover;
}

.intro__section     {
	    background: #fafafa;
    padding: 4rem 2%;
	}

.intro__container {
	max-width     :1200px;
        margin: 0 auto;
}

.section__title {
   font-size :   2.2rem;
                    font-weight:   700;
   text-align: center;
   margin-bottom: 2.5rem;
	 color: #1a1a1a;
}

.intro__grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
}

.intro__card {
	       background: white;
    padding: 2rem;
  border-radius: 8px;
    border-left: 4px solid #2196F3;
    transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	}

.intro__card:hover {

	  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);


}

.card__header {
   margin-bottom: 1rem;
}



.card__title {
    font-size:      1.3rem;
   font-weight: 600;
    color:     #1a1a1a;
}

.card__text

{

	         font-size: 0.95rem;
    color: #555555;
       line-height: 1.7;

}

.services__preview 
 {
   padding: 4rem 2%;
    background: white;
}

.services__wrapper {
    max-width: 1200px;
  margin: 0 auto;
	
}

.services__grid     {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 2.5rem;
  margin-top :      2rem;
}

.service__item 
 {
   background: #fafafa;
   border-radius: 10px;
   overflow: hidden;
   transition: all 0.3s ease;
  cursor: pointer;
} 

.service__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.15);
  background :    white;
}

.service__image {
   object-fit: cover;
  width: 100%;
   height: 240px;
   display  :      block;
}

.service__name {
	      font-size: 1.25rem;
   font-weight: 600;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #1a1a1a;
     }

.service__desc {
    padding: 0.5rem 1.5rem 1.5rem;
    font-size: 0.95rem;
  color: #666666;
    line-height: 1.6;
}

.conference__section {

  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
   color: white;
  padding: 3.5rem 2%;
  border-radius  :        0;


}

.conference__content {
    max-width: 1200px;
    margin: 0 auto;
} 

.conference__subtitle {

	    font-size: 1.2rem;
  text-align: center;
    margin-bottom: 2.5rem;
    color: #d0d0d0;
  line-height: 1.6;

}

.conference__details {
   display    :    grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
	 margin-bottom: 2.5rem;
} 

.detail__block {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.5rem;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.detail__label   {
	 font-size    :     0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
	color     : #64b5f6;
   margin-bottom: 0.5rem;
    font-weight: 600; 
	
}

.detail__value {

	    font-size: 1rem;
    color: white;
    line-height: 1.5;


}

.conference__cta {
  display: inline-block;
   background: #64b5f6;
   color: white;
    padding: 14px 32px;
 border-radius: 6px;
    text-decoration: none;
      font-weight: 600;
   transition: all 0.3s ease;
}  

.conference__cta:hover {

	  background: #42a5f5;
  transform: translateY(-2px);


}

.testimonials__section {
	padding:4rem 2%;
   background: #f5f5f5;
}

.testimonials__grid {
  max-width :1200px;
					margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
	margin-top     : 2rem;


}



.testimonial__card {
     background     :       white;
   padding     :  2rem;
   border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #2196F3;
}

.testimonial__text {
   font-size: 0.95rem;
    color: #444444;
   margin-bottom: 1.5rem;
   line-height: 1.7;
    font-style    :        italic;
}

.testimonial__author {
  font-size: 0.85rem;
   color: #666666;
    font-weight: 600;
}

.cta__section {
  background: linear-gradient(135deg, #2196F3, #1976D2);
    color: white;
  padding: 3.5rem 2%;
  text-align  : center;
}

.cta__container {
  max-width: 1000px;
   margin  :0 auto;
}

.cta__title {
   font-size   :     2rem;
    font-weight: 700;
       margin-bottom: 1rem;
}

.cta__text {
      font-size: 1.1rem;
   margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
               line-height: 1.6;
}

.cta__button {
    display:    inline-block;
          background    :        white;
	color     :       #2196F3;
					padding: 14px 40px;
  border-radius :       6px;
  text-decoration: none;
   font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease; 

}

.cta__button:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
	
}

.contact__section {
   padding: 4rem 2%;
          background :    #fafafa;
}

.contact__wrapper {
   max-width : 700px;
   margin: 0 auto;
}

.contact__form {
   background: white;
   padding: 2.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
}

.form__group     {
    margin-bottom: 1.5rem;
	display: flex;
	flex-direction: column;
}

.form__label{
  font-size: 0.95rem;
   font-weight: 600;
    color: #1a1a1a;
   margin-bottom: 0.5rem;
}



.form__input,
.form__select,
.form__textarea {
	font-size: 0.95rem;
    padding: 11px 14px;
   border :        1px solid #ddd;
    border-radius: 6px;
   font-family: inherit;
  transition: all 0.2s ease;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
   outline :  none;
    border-color: #2196F3;
  box-shadow: 0 0 0 3px rgba(33, 150, 243, 0.1);
}

.form__textarea {
   resize: vertical;
  min-height: 120px;
}

.form__submit
	{
     background: linear-gradient(135deg, #2196F3, #1976D2);
  color :    white;
	padding: 14px 32px;
  border: none;
  border-radius: 6px;
	 font-size: 1rem;
    font-weight: 600;
                    cursor :      pointer;
   transition :    all 0.3s ease;
   width: 100%;
}


.form__submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(33, 150, 243, 0.4);
}

.form__submit:active {
  transform: translateY(0);
}

.footer__container {
               padding   :3rem 2% 1.5rem;
   background: #1a1a1a;
  color    :        #e0e0e0;
}

.footer__content {
     max-width: 1200px;
  margin    :  0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2.5rem;
  margin-bottom: 2rem;

}

.footer__column

{
    display: flex;
	flex-direction: column;
}

.footer__logo

{
   height    :        28px;
   width: auto;
	 margin-bottom:       1rem;
  display: block;
}

.footer__description {
  font-size     :     0.9rem;
    line-height: 1.6;
   color: #999;
}

.footer__title {
   font-size: 1rem;
 font-weight: 700;
   color: white;
  margin-bottom : 1rem;
}

.footer__links {
	 list-style: none;
}

.footer__link {
    display: inline-block;
    color: #999;
  text-decoration: none;
   font-size: 0.9rem;
   margin-bottom: 0.7rem;
   transition: color 0.2s ease;
}

.footer__link:hover {
   color: #64b5f6;

}

.footer__contact {

	    font-size: 0.9rem;

	  margin-bottom:   0.8rem;

	          line-height: 1.5;

	   color: #999;
} 

.footer__hours {
  color: #777;
  font-size: 0.85rem;
    margin-bottom  :  0.6rem;
}

.footer__copyright		{
    font-size:        0.8rem;
  color: #555;
  margin-top: 1rem;
  padding-top: 1rem;
   border-top     :1px solid #333;
}@media (max-width: 768px) {
  .nav__menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #1a1a1a;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }

  .nav__menu.active {
    display: flex;
  }

  .nav__item {
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: 1rem 2%;
    border-bottom: none;
  }

  .nav__burger {
    display: flex;
  }

  .hero__wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero__title {
    font-size: 2rem;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .cta__title {
    font-size: 1.5rem;
  }

  .contact__form {
    padding: 1.5rem;
  }

  .footer__content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .hero__title {
    font-size: 1.6rem;
  }

  .section__title {
    font-size: 1.5rem;
  }

  .hero__cta, .cta__button, .conference__cta {
    width: 100%;
    text-align: center;
  }

  .intro__grid, .services__grid {
    grid-template-columns: 1fr;
  }

  .conference__details {
    grid-template-columns: 1fr;
  }

  .form__submit {
    padding: 12px 24px;
  }
}.policySection {
    padding: 80px 2rem;
  background: #f8f9fa; 

}



.policyContainer {
   max-width: 800px;
	margin: 0 auto;
    text-align: left;
}

.policyContainer h2 {
          font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
   font-weight: 700;
}

.policyContainer p {
      color: #7f8c8d;
	 margin-bottom: 1.5rem;
  line-height: 1.7;
    font-size: 1.1rem;
     }@media (max-width: 768px) {
  .policyContainer h2 {
    font-size: 2rem;
  }

  .policyContainer p {
    font-size: 1rem;
  }

  .policySection {
    padding: 60px 1rem;
  }
}.services__hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
      color: white;
   padding: 3rem 2%;
  text-align   :       center;
   border-bottom: 3px solid #2196F3;


}

.services__hero-content 
 {
    max-width: 900px;
   margin    :   0 auto;
}

.services__hero-title {
	    font-size: 2.5rem;
 font-weight: 700;
	margin-bottom: 1rem;
	line-height:  1.3;
     }

.services__hero-subtitle {
	font-size: 1.15rem;
    color: #d0d0d0;
	line-height: 1.6;
}

.services__detailed {
   padding: 4rem 2%;
  background: white;
}

.services__detailed-container {


	max-width: 1200px;
       margin: 0 auto;}

.service__detail-card {
   display  :    grid;
    grid-template-columns:1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
  padding   :2.5rem;
  background: #fafafa;
    border-radius: 10px;
    border-left: 5px solid #2196F3;
   transition: all 0.3s ease;
}

.service__detail-card:hover
	{
  box-shadow: 0 8px 20px rgba(33, 150, 243, 0.15);
  transform: translateY(-2px);
}

.service__detail-card.reverse {
    grid-template-columns: 1fr 1fr;
    direction:   rtl;
}

.service__detail-card.reverse > *
	{
	  direction: ltr;
     }

.service__detail-image {
  width: 100%;
    overflow: hidden;
  border-radius: 8px;
}

.detail__image {
    width: 100%;
  height   :auto;
  display: block;
    object-fit: cover;
}

.service__detail-content {
               display: flex;
          flex-direction     :     column;
  gap: 1.5rem;
}

.service__detail-title {
    font-size: 2rem;
   font-weight: 700;
    color: #1a1a1a;
	}

.service__detail-subtitle {
    font-size: 1.1rem;
	 color: #2196F3;
	font-weight : 600;
}

.service__detail-description p {
    font-size: 0.95rem;
     color: #666;
   line-height: 1.7;
  margin-bottom: 1rem;
}

.service__features {
    list-style:      none;
    padding: 0;
}

.feature__item {
   font-size: 0.9rem;
   color: #555;
    padding: 0.7rem 0;
  padding-left:     1.5rem;
    position   :        relative;
  line-height: 1.5;
}

.feature__item:before


{
  content: "✓";
	  position: absolute;
	    left: 0;
	  color: #2196F3;
	          font-weight  : 700;
	       font-size: 1rem;

}

.service__pricing {
   background   :      white;
    padding    :      1.5rem;
    border-radius: 6px;
    display  :        flex;
   align-items     :        center;
	 gap: 0.5rem;
	border :        2px solid #2196F3;
}

.pricing__label		{
  font-size   : 0.85rem;
      color: #999;
       text-transform:   uppercase;
      letter-spacing: 0.5px;
}

.pricing__amount {
    font-weight: 700;
   color: #2196F3;
   font-size: 1.8rem;
}

.pricing__period {
  font-size: 0.85rem;
  color: #666;
   margin-left: auto;}

.services__comparison {
    padding: 4rem 2%;
 background: #f5f5f5;
}

.comparison__wrapper {
	max-width: 1200px;
   margin: 0 auto;
}

.comparison__table {
   background: white;
   border-radius: 8px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
   margin-top: 2rem;
}

.comparison__row {
        display     :     grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-bottom: 1px solid #eee;
}

.comparison__row.header {
  background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
	color: white;
       font-weight: 700;
}

.comparison__cell
	{
    display: flex;

	  font-size: 0.9rem;

	  padding: 1.2rem;

	   min-height: 60px;

	   text-align: center;

	   align-items: center;
}

.comparison__row.header .comparison__cell {
    font-weight: 600;
  background: #1a1a1a;
} 

.comparison__row:nth-child(odd):not(.header)
	{
  background: #fafafa;

}

.comparison__row:hover:not(.header) {
    background: #f0f8ff;
}

.process__section {

	   padding:  4rem 2%;
   background: white;
	}

.process__container {
  max-width: 1200px;
    margin: 0 auto;
}

.process__steps {
    display   :grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top    :        2rem;
}

.process__step {
   text-align: center;
    padding     :     2rem 1.5rem;
  background: #fafafa;
    border-radius: 8px;
    position: relative;
   transition: all 0.3s ease;
}

.process__step:hover {
  transform: translateY(-4px);
   background: white;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.step__number
	{
  font-size: 2.5rem;
  font-weight: 700;
   color: #2196F3;
   margin-bottom: 0.5rem;
}

.step__title {
   font-size: 1.2rem;
  font-weight   :     600;
  color :       #1a1a1a;
	margin-bottom: 0.5rem;
}

.step__description {
   font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

.process__step:not(:last-child):after {
  content: "→";
	position: absolute;
   right: -1rem;
   top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
        color: #2196F3;
  opacity: 0.3;
}

.faq__section {
    padding: 4rem 2%;
   background: #f5f5f5;
}



.faq__wrapper {
    max-width: 900px;
	   margin: 0 auto; 
	
}

.faq__items {


   display: grid;
  grid-template-columns: 1fr;
  gap    : 1.5rem;
  margin-top     :      2rem;}

.faq__item {
	background: white;
   padding: 2rem;
          border-radius   :   8px;
    border-left: 4px solid #2196F3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;


}

.faq__item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.faq__question {
   font-size    :1.1rem;
  font-weight: 600;
   color: #1a1a1a;
          margin-bottom: 1rem;
   cursor: pointer;
	
}

.faq__answer {
      font-size: 0.95rem;
  color: #666;
  line-height :   1.7;
}

.thankyou__section {
      padding: 4rem 2%;
  background: linear-gradient(135deg, #f5f5f5, #ffffff);
   min-height :      70vh;
    display: flex;
    align-items: center;}

.thankyou__wrapper {
  max-width: 700px;
    margin: 0 auto;
       width     :   100%;
}

.thankyou__content   {
   background: white;
 padding   :    3rem;
   border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  border-top: 4px solid #2196F3;
   text-align  :   center;
}

.success__icon {
    margin-bottom: 1.5rem;
   display: flex;
   justify-content: center;
}

.check__mark {
   width: 80px;
  height     :      80px;
  filter: drop-shadow(0 0 8px rgba(33, 150, 243, 0.3));
}

.check__mark {
  stroke: #2196F3;
    stroke-width    :       2;
   fill: none; 
	
}

.thankyou__title {
    font-size: 2rem;
      font-weight: 700;
	color  :     #1a1a1a;
  margin-bottom :    0.5rem;
}

.thankyou__subtitle {
  color: #666;
   margin-bottom: 1.5rem;
    font-size: 1.1rem;
	
}

.thankyou__message {
    background: #f0f8ff;
   padding: 1.5rem;
   border-radius: 6px;
					margin-bottom: 2rem;
  border-left: 4px solid #2196F3;
}

.thankyou__message p {

	  font-size: 0.95rem;
	color     :  #333;
   line-height: 1.6;}

.submission__details {
  background: #fafafa;
    padding :    1.5rem;
   border-radius: 6px;
    margin-bottom: 2rem;
   text-align: left;

}

.details__title {
  font-size: 1rem;
	font-weight: 600;
    color: #1a1a1a;
               margin-bottom: 1rem;
   text-align: center;
}

.details__block	{
   display: grid;
  grid-template-columns  :   1fr;
   gap: 0.5rem;
}

.detail__row  {
  display: flex;
    justify-content: space-between;
  align-items: flex-start;
   border-bottom: 1px solid #eee;
   padding: 0.7rem 0;
    font-size: 0.9rem;
}

.detail__row:last-child {
  border-bottom: none;
}

.detail__label
	{
	 font-weight: 600;
   color: #1a1a1a;
    min-width: 120px;
}

.detail__value {
    color: #666;
   text-align: right;
}

.thankyou__next-steps {
    -webkit-border-radius: 6px;

  padding: 1.5rem;

    border: 2px solid #2196F3;

	-moz-border-radius: 6px;

    margin-bottom: 2rem;

    border-radius: 6px;

  background     :      white;
}

.steps__title{
  font-size: 1rem;
   font-weight: 600;
   color: #1a1a1a;
    margin-bottom: 1rem;
}

.steps__list 
 {
          list-style-position: inside;
  display: grid;
	grid-template-columns: 1fr;
   gap: 0.7rem;
}

.step__item {
   font-size: 0.9rem;
    color: #555;
   text-align: left;
}

.thankyou__faq {
	background  :    #f9f9f9; 
    padding: 1.5rem; 
   border-radius: 6px; 
  margin-bottom: 2rem;
}

.faq__title
	{
  font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.faq__text {

	   font-size: 0.9rem;
   color: #666;
   margin-bottom: 0.7rem; 
	
     }

.faq__contact    {
	font-size: 0.95rem;
  color: #2196F3;
    font-weight: 600;
}

.contact__link {
   color:     #2196F3;
	text-decoration: none;
  font-weight    :    700;
}

.contact__link:hover {

	   text-decoration: underline;


}

.thankyou__actions {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 1rem;
}


.action__button
	{
                    display: inline-block;
  padding: 12px 24px;
   border-radius: 6px;
   text-decoration: none;
    font-weight     :     600;
  font-size    :    0.95rem;
    transition: all 0.3s ease;
  cursor: pointer; 
	
}

.action__button.primary {

	  background: linear-gradient(135deg, #2196F3, #1976D2);
  color: white;}

.action__button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(33, 150, 243, 0.4);
}

.action__button.secondary {
    background:white;
   color: #2196F3;
   border:     2px solid #2196F3;
}

.action__button.secondary:hover {
  background: #f0f8ff;

	  transform: translateY(-2px);

}@media (max-width: 768px) {
  .services__hero-title {
    font-size: 1.8rem;
  }

  .service__detail-card {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 1.5rem;
  }

  .service__detail-card.reverse {
    grid-template-columns: 1fr;
  }

  .service__detail-title {
    font-size: 1.5rem;
  }

  .comparison__row {
    grid-template-columns: repeat(2, 1fr);
  }

  .process__steps {
    grid-template-columns: 1fr;
  }

  .process__step:not(:last-child):after {
    display: none;
  }

  .thankyou__content {
    padding: 2rem;
  }

  .thankyou__title {
    font-size: 1.5rem;
  }

  .thankyou__actions {
    grid-template-columns: 1fr;
  }

  .check__mark {
    width: 60px;
    height: 60px;
  }
}

@media (max-width: 480px) {
  .services__hero-title {
    font-size: 1.4rem;
  }

  .service__detail-card {
    margin-bottom: 2rem;
  }

  .comparison__row {
    grid-template-columns: 1fr;
  }

  .comparison__cell {
    padding: 0.8rem;
    min-height: 40px;
    font-size: 0.85rem;
  }

  .comparison__row.header .comparison__cell:not(:first-child) {
    display: none;
  }

  .comparison__row:not(.header) {
    position: relative;
    padding-left: 0;
  }

  .submission__details {
    padding: 1rem;
  }

  .detail__row {
    flex-direction: column;
    text-align: left;
  }

  .detail__value {
    text-align: left;
    margin-top: 0.3rem;
  }

  .thankyou__content {
    padding: 1.5rem;
  }

  .service__pricing {
    flex-wrap: wrap;
    justify-content: center;
  }

  .pricing__period {
    margin-left: 0;
    flex-basis: 100%;
  }
}