* {


   padding: 0;
   margin: 0;
    box-sizing: border-box; 


}

html {
  scroll-behavior: smooth;
}


body{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   color: #2c3e50;
  background  :   #f8f9fa;
    line-height: 1.6;
}

.navBar {
   position     :sticky;
   top: 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	z-index    :    1000;
	 padding: 0.75rem 0;
}

.navContent {
    max-width: 1200px;
	    margin: 0 auto;
		 padding: 0 2rem;
	   display: flex;
	   justify-content: space-between;
	  align-items: center; 

}

.logoWrapper {
      flex: 1;
}

.navLogo{
    height: 48px;
   width: auto;
  filter: brightness(0) invert(1);
}

.navLinks {
   display: flex;
	 list-style: none;
    gap: 2rem;
   align-items: center;
}

.navLinks a {
     text-decoration: none;
         color: #2c3e50;
    font-weight: 500;
    transition    :     color 0.3s ease;
    position: relative;
}

.navLinks a:hover {

	 color: #3498db;

}

.navLinks a::after {


   left: 0;
   transition: width 0.3s ease;
   background: #3498db;
    height: 2px;
  bottom  :   -5px;
  width: 0;
  content: '';
   position: absolute; 


}

.navLinks a:hover::after {
    width: 100%;
}

.menuToggle {
	display: none;
  flex-direction: column;
   gap: 6px;
  background: none;
    border: none;
   cursor: pointer;
   padding: 0.5rem;
}

.menuToggle span {
  -moz-transition: all 0.3s ease;
        border-radius: 2px;
    height:   3px;
   background: #2c3e50;
   width: 24px;
    -webkit-transition: all 0.3s ease;
  transition :   all 0.3s ease;
          -o-transition  :all 0.3s ease;
}

.menuToggle.active span:nth-child(1)		{
  transform: rotate(45deg) translate(12px, 12px);
}

.menuToggle.active span:nth-child(2)  {
	opacity: 0;
}

.menuToggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.heroSection {
    display   :  grid;
  grid-template-columns:    1fr 1fr;
  gap: 3rem;
    align-items: center;
    max-width: 1200px;
	 margin: 3rem auto;
	 padding:   0 2rem;
   min-height    :500px;
}

.heroContent h1 {
   	font-size: 3.5rem;
	 font-weight     :    700;
   margin-bottom: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   background-clip: text;


}

.heroSubtitle {
   font-size: 1.25rem;
    margin-bottom    :  2rem;
  color: #555;
  line-height: 1.8;
}

.ctaBtn, .ctaBtnLarge
	{
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	padding: 1rem 2rem;
    border-radius:  8px;
    text-decoration: none;
 font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
 cursor: pointer;
  font-size: 1rem;
}

.ctaBtn:hover, .ctaBtnLarge:hover {
  transform: translateY(-3px);

	  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.heroImage img {
   width: 100%;
  height: auto;
          border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}  

.sectionContainer 
 {
    max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
}

.introSection, .benefitsSection, .servicesPreview, .testimonialSection {


   padding: 4rem 0;
}

.introSection {
   background:       white;
      border-radius: 12px;
    margin: 2rem auto;
  padding: 3rem 2rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.introSection h2, .benefitsSection h2, .servicesPreview h2, .testimonialSection h2 {
  font-size: 2.5rem;
     margin-bottom: 2rem;
               color:#2c3e50;
}

.introSection p {
  font-size: 1.1rem;
   line-height: 1.8;
         margin-bottom: 1.5rem;
    color: #555;
}

.benefitsGrid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.benefitCard {
  background: white;
     padding: 2rem;
   border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   border-top: 4px solid #667eea;
}

.benefitCard:hover    {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.benefitIcon {
    margin-bottom: 1rem;
    height: 50px;
         display: flex;
    justify-content: center;
   align-items     :      center;


}

.benefitIcon img {
    width: 50px;
   height: 50px;
}

.benefitCard h3 {
          font-size :    1.5rem;
    margin-bottom: 1rem;
  color: #2c3e50;

}

.benefitCard p {
    font-size: 1rem;
    line-height  :       1.6;
  color: #666;
}

.servicesGrid {
	   display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	    gap: 2rem; 
		margin-bottom: 2rem;

}

.serviceCard {
    background: white;
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.serviceCard:hover {
  transform: scale(1.05);
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.serviceCard img {
  width     :   100%;
   height: 250px;
	object-fit: cover;
    display: block;
}

.serviceCard h3 {
      padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.3rem;
    color: #2c3e50;
}

.serviceCard p {
    padding: 0 1.5rem 1.5rem;
   color: #666;
   font-size: 0.95rem;
}

.serviceLink {

		text-align: center;


}

.linkBtn  {
    display: inline-block;
	background: white;
   color: #667eea;
    padding: 0.75rem 1.5rem;
  border: 2px solid #667eea;
  border-radius: 8px;
    text-decoration   :        none;
	 font-weight: 600;
   transition: all 0.3s ease;
}

.linkBtn:hover {
  background: #667eea;
      color: white;

}

.testimonialGrid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}  

.testimonialCard {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

 padding  :      2rem;

 border-radius  :   12px;

  border-left: 5px solid #764ba2;
}

.testimonialText  {
    font-style: italic;
  color: #2c3e50;
   margin-bottom: 1rem;
  line-height: 1.7;
}


.testimonialAuthor{
   font-weight: 700;
    color: #667eea;
  font-size: 0.95rem;
}

.ctaSection {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 4rem 0;
  margin: 3rem 0;
      border-radius: 12px;
} 

.ctaSectionContent {

	  text-align: center;
    color: white;



}

.ctaSectionContent h2 {
     color: white;
	margin-bottom: 1rem;
   font-size: 2.5rem;


}

.ctaSectionContent p {
  color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
	 margin-bottom: 2rem;
}

.contactSection {
  margin: 2rem auto;
  background: white;
  border-radius: 12px;
 padding:   4rem 0;
}

.contactWrapper {
   gap: 3rem;
  grid-template-columns: 1.5fr 1fr;
   display: grid;
    margin-top: 2rem;
}

.contactForm {
   background: #f8f9fa;
	padding: 2rem;
	border-radius: 12px;
}

.formGroup {
  display:flex;
    margin-bottom: 1.5rem;
    flex-direction    :column;
}

.formGroup label {
	   margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}



.formGroup input, .formGroup select, .formGroup textarea {
    padding: 0.75rem;
 border: 2px solid #e0e0e0;
    border-radius  :    6px;
  font-family     :inherit;
   font-size    :   1rem;
   transition: border-color 0.3s ease;
}

.formGroup input:focus, .formGroup select:focus, .formGroup textarea:focus   {
      outline: none;
   border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submitBtn {
   width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding:   0.9rem;
	border: none;
  border-radius    :       6px;
  font-weight     : 600;
   cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
   font-size: 1rem;
}

.submitBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.contactInfo {
  background: #f0f2f5;
  padding: 2rem;
	border-radius: 12px;
	
}

.contactInfo h3 
 {
  margin-bottom: 1.5rem;
   color: #2c3e50; 
	
}

.contactInfo p {
  margin-bottom  : 1.5rem;
   line-height: 1.8;
   color: #555;
}

.footerSection

{
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 3rem 0 1rem;
    margin-top     :4rem;
}

.footerContainer {
  max-width: 1200px;
         margin: 0 auto;
   padding: 0 2rem;
}

.footerContent {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
	 margin-bottom: 2rem;
}



.footerLogo img {
    height: 50px;
   width:    auto;
  filter: brightness(0) invert(1);
	margin-bottom: 1rem;
}

.footerLinks h4, .footerInfo h4	{
    margin-bottom: 1rem;
    font-size: 1.1rem;
}



.footerLinks ul  
  {


       list-style: none;} 

.footerLinks a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
    transition: color 0.3s ease;
	display: block;
  margin-bottom : 0.5rem;
}  

.footerLinks a:hover {

	  color  :#667eea;

}

.footerInfo p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.8rem;
}

.footerCopyright {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
	   padding-top: 2rem;
	   text-align: center;
	  color: rgba(255, 255, 255, 0.6);
	                    font-size: 0.9rem;
}@media (max-width: 768px) {
    .navLinks {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
        flex-direction: column;
        gap: 0;
        list-style: none;
        padding: 1rem 0;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .navLinks.active {
        display: flex;
    }

    .navLinks a {
        padding: 0.8rem 2rem;
        display: block;
    }

    .menuToggle {
        display: flex;
    }

    .heroSection {
        grid-template-columns: 1fr;
        gap: 2rem;
        min-height: auto;
        margin: 1.5rem auto;
    }

    .heroContent h1 {
        font-size: 2rem;
    }

    .heroSubtitle {
        font-size: 1rem;
    }

    .introSection h2, .benefitsSection h2, .servicesPreview h2, .testimonialSection h2 {
        font-size: 1.8rem;
    }

    .contactWrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footerContent {
        grid-template-columns: 1fr;
    }

    .benefitsGrid, .servicesGrid, .testimonialGrid {
        grid-template-columns: 1fr;
    }

    .ctaSectionContent h2 {
        font-size: 1.8rem;
    }
}@media (max-width: 480px) {
    .navContent {
        padding: 0 1rem;
    }

    .heroContent h1 {
        font-size: 1.5rem;
    }

    .sectionContainer {
        padding: 0 1rem;
    }

    .introSection {
        padding: 1.5rem 1rem;
    }

    .benefitCard, .serviceCard, .testimonialCard {
        padding: 1.5rem;
    }

    .ctaBtn {
        width: 100%;
        text-align: center;
    }
}.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 h3    {
  font-size: 1.5rem;
     color: #2c3e50;
  margin: 2rem 0 1rem 0;
  font-weight: 600;
}  

.policyContainer p {
	   color: #7f8c8d;
      margin-bottom: 1.5rem;
      line-height: 1.7;
     font-size: 1.1rem;


}

.policyContainer ul {
                    margin: 1rem 0 1.5rem 1.5rem;
  color   :   #7f8c8d;


}

.policyContainer ul li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.policyContainer em {
    color: #3498db;
    font-style   :        italic;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.3rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policyContainer ul li {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h2 {
        font-size: 1.8rem;
    }
}.servicesHeroSection     {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 3rem 0;
	 margin-bottom   :3rem;
  text-align: center;
}

.servicesHeroSection h1 {
	 font-size: 3rem;
  font-weight: 700;
    margin-bottom   :        1rem;
}

.servicesHeroSection .heroSubtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
   margin: 0 auto;
}

.serviceDetailsSection {
      padding     :     3rem 0;
     }

.serviceDetailsSection h2 {
   font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #2c3e50;
  text-align: center;
}

.serviceDetailCard {
     display: grid;
  grid-template-columns  :     1fr 1fr;
  gap: 3rem;
    align-items: center;
  margin-bottom: 4rem;
    background: white;
    padding:     2rem;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.serviceDetailCard.alternate  {
  grid-template-columns: 1fr 1fr;
	
}

.serviceDetailCard.alternate .serviceDetailImage {
   order     : -1;
}

.serviceDetailContent h3 {
   font-size: 2rem;
    color: #2c3e50;
				 margin-bottom: 1rem;

}

.serviceDetailContent p {
   font-size: 1.05rem;
   color: #555;
   margin-bottom: 1.5rem;
   line-height   :    1.8;
} 

.serviceFeatures {
  background: #f8f9fa;
         padding: 1.5rem;
    border-left: 4px solid #667eea;
   border-radius  : 6px;
  margin: 1.5rem 0;
}

.serviceFeatures h4 {
   font-size: 1.1rem;
   color: #2c3e50;
   margin-bottom: 1rem;
    font-weight: 600;
}

.featuresList {
     list-style: none;
    padding: 0;
}

.featuresList li {

    padding: 0.5rem 0;
   position: relative;
    color: #555;
    padding-left:      1.5rem;
 font-size: 0.95rem;
}

.featuresList li::before{
  content: "✓";
  position: absolute;
    left: 0;
   color: #667eea;
	 font-weight: 700;
   font-size: 1.2rem;
}

.servicePriceInfo {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
   padding: 1.5rem;
    border-radius :   6px;
	 margin-top: 1.5rem;
} 

.servicePriceInfo p

{
  margin-bottom: 0.8rem;
	   font-size: 0.95rem;

}

.serviceTopicsList		{
    background: #f0f4ff;
    padding: 1.5rem;
    border-radius   :    6px;
    margin: 1.5rem 0;
}

.serviceTopicsList h4

{
  font-size   :       1.1rem;
   color: #2c3e50;
   margin-bottom: 1rem;
        font-weight :     600;
}

.serviceTopicsList p {
  color: #555;

  line-height: 1.7; 

}

.conferenceSchedule {
   background: #fff5f0; 
	    padding: 1.5rem; 
	  border-radius: 6px; 
	  -moz-border-radius: 6px; 
	    margin-top: 1.5rem;


}

.conferenceSchedule h4 {
    font-size: 1.1rem;
	 color: #2c3e50;
    margin-bottom     :        1rem;
   font-weight: 600;
}

.conferenceSchedule p		{
   margin-bottom: 0.8rem;
	 color: #555;
    font-size :      0.95rem;
}

.serviceDetailImage {
	 overflow   : hidden;
   border-radius: 8px;
}

.serviceDetailImage img {

    width: 100%;
 height: auto;
     display: block;
  transition: transform 0.3s ease;


}

.serviceDetailCard:hover .serviceDetailImage img {
  transform: scale(1.05);
} 

.consultationSection {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	 padding  :3rem;
    border-radius: 12px;
   text-align: center;
    margin: 3rem 0; 
	
}

.consultationSection h2 {

    color: white;
   margin-bottom   :  1rem;
   font-size   : 2rem;}

.consultationSection p {
  color: rgba(255, 255, 255, 0.95);
    font-size : 1.05rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
    margin-right: auto;
}

.comparisonSection {
   padding: 3rem 0;
  background: white;
    border-radius: 12px;
   padding: 2rem;
   margin     :   3rem 0;


}

.comparisonSection h2 {
 font-size: 2.5rem;
        margin-bottom: 2rem;
    text-align  :      center;
	 color: #2c3e50; 

}

.comparisonTable {
     display: grid;
	 gap:     0;
      border: 2px solid #e0e0e0;
   border-radius: 8px;
    overflow: hidden;
}

.comparisonHeader {


  display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

}

.comparisonRow {
  border-bottom     :  1px solid #e0e0e0;
    display: grid;
   grid-template-columns: 1fr 1fr 1fr 1fr;
}

.comparisonRow:last-child {
   border-bottom: none; 
	
}

.comparisonCell {
   padding  :   1rem;
    border-right: 1px solid #e0e0e0;
   display  : flex;
  align-items: center;
   font-size: 0.95rem;
}

.comparisonCell:last-child {
   border-right: none;
}

.comparisonCell.header


{
   color   :  white;
   font-weight: 700;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
}

.comparisonRow:nth-child(odd) {
    background: #f8f9fa;
}

.comparisonRow:nth-child(even) {
   background :       white;
}



.faqSection {
  padding    :        3rem 0;
}

.faqSection h2 {
    font-size: 2.5rem;
  margin-bottom: 2rem;
               text-align: center;
    color: #2c3e50;
}

.faqContainer 
 {
    display: grid;
    gap   : 1rem;
       max-width: 900px;
  margin: 0 auto;
}

.faqItem {
    background: white;
    border   :  2px solid #e0e0e0;
   border-radius: 8px;
	overflow: hidden;
  transition: all 0.3s ease;
}

.faqItem:hover {
   border-color   : #667eea;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.faqQuestion{
     width     :     100%;
  padding: 1.5rem;
    background: white;
               -o-transition: background 0.3s ease;
    border     :none;
   text-align: left;
   font-size: 1.1rem;
	 font-weight: 600;
 color   :      #2c3e50;
	 cursor: pointer;
  display: flex;
    justify-content: space-between;
    -webkit-transition: background 0.3s ease;
      align-items   :        center;
    transition: background 0.3s ease;
     }

.faqQuestion:hover {
    background  :       #f8f9fa;
}

.faqQuestion::after {
  content: "+";
  font-size: 1.5rem;
    font-weight: 700;
   color: #667eea;
 transition: transform 0.3s ease;
}

.faqItem.active .faqQuestion::after	{
  transform: rotate(45deg);
}

.faqAnswer {
 max-height: 0;
   overflow: hidden;
   transition: max-height 0.3s ease;
   background: #f8f9fa;
}

.faqItem.active .faqAnswer {
  max-height: 500px;
}

.faqAnswer p {

	               font-size: 0.95rem;
  padding: 1.5rem;
    color: #555;
    line-height: 1.8;


}

.thankYouSection {
	 padding: 4rem 0;
	background: white;
}

.thankYouContent {
	text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.successIcon  
  {
  margin-bottom: 2rem;
   height     :        80px;
  display: flex;
	 justify-content: center;
   align-items: center;
}



.successIcon img {
    width    :     80px;
   height: 80px;
  stroke: #2ecc71;
}

.thankYouSection h1 {
   font-size: 2.8rem;
  color: #2c3e50;
                    margin-bottom: 1rem;
}

.thankYouMainText {
   font-size: 1.2rem;
	   color: #555;
	  margin-bottom: 2rem;
	   line-height   :       1.8;
}

.thankYouDetails {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
  padding: 2rem;
                    border-radius: 12px;
   margin: 2rem 0;
}

.thankYouDetails h2 {
                    font-size: 1.8rem;
   color   : #2c3e50;
    margin-bottom: 2rem;

} 

.nextStepsGrid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
}

.stepCard {
    background: white;
          padding     :     1.5rem;
    border-radius :        8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     }

.stepNumber {
  font-size: 2rem;
   font-weight: 700;
    color: #667eea;
   margin-bottom: 1rem;
}

.stepCard h3 {
  font-size   :   1.1rem;
  color: #2c3e50;
  margin-bottom: 0.8rem;
}

.stepCard p {
   font-size: 0.9rem;
  color     :   #666;
   line-height: 1.6;
}

.emailConfirmation {
  background: #e8f8f5;

	      border-left: 4px solid #2ecc71;

	  padding: 1.5rem;

	    border-radius :    6px;

	  margin: 2rem 0;

	       color: #1e5631;
} 

.thankYouActions {
  flex-wrap: wrap;
   display: flex;
	 margin: 2rem 0;
    gap   :        1.5rem;
    justify-content: center;
}

.ctaBtnSecondary {
    text-decoration     :none;
         font-weight: 600;
	border-radius: 8px;
   padding: 1rem 2rem;
    cursor: pointer;
   color: #667eea;
   border  :        2px solid #667eea;
    background :     white;
  display:      inline-block;
    font-size :       1rem;
   transition: all 0.3s ease;
}

.ctaBtnSecondary:hover {
   background: #667eea;
	 color:     white;
}

.additionalInfo {
  background: white;
     padding: 2rem;
     border-radius: 12px;
      margin-top: 2rem;
      border: 1px solid #e0e0e0;
       text-align: left;
}

.additionalInfo h3 
 {
	  font-size :  1.5rem;

	  color: #2c3e50;

	                    margin-bottom: 1.5rem;


}

.additionalInfo p {
   margin-bottom: 1.5rem;
	color: #555;
    line-height: 1.7;
	 font-size: 0.95rem;
}

.additionalInfo strong {
	 display: block;
    color :#2c3e50;
   margin-bottom: 0.5rem;
  font-weight: 700;
}

.relatedServicesSection {
  padding: 3rem 0;
    background: #f8f9fa;
   border-radius     :        12px;
    margin: 2rem 0;
}

.relatedServicesSection h2  
  {
  font-size: 2rem;
    margin-bottom: 2rem;
   text-align:      center;
   color: #2c3e50;

}

.relatedServicesGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.relatedCard {
   background: white;
    border-radius:        8px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.relatedCard:hover {

	  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);


}

.relatedCard img {
        width: 100%;
    height: 200px;
  object-fit    : cover;
	display: block;
}

.relatedCard h3 {
  padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
    color: #2c3e50;


     }

.relatedCard p    {


  padding: 0 1.5rem;
   color: #666;
   font-size: 0.9rem;
  margin-bottom: 1rem;


}

.relatedLink {
  font-weight: 600;
   display: block;
  color: #667eea;
    transition     :        color 0.3s ease;
  padding: 0.75rem 1.5rem 1.5rem;
  text-decoration: none;
}

.relatedLink:hover {
  color: #764ba2; 

}@media (max-width: 768px) {
    .serviceDetailCard {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .serviceDetailCard.alternate .serviceDetailImage {
        order: 0;
    }

    .servicesHeroSection h1 {
        font-size: 2rem;
    }

    .comparisonHeader, .comparisonRow {
        grid-template-columns: 1fr 1fr;
    }

    .comparisonCell {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .thankYouActions {
        flex-direction: column;
        gap: 1rem;
    }

    .thankYouActions a {
        width: 100%;
        text-align: center;
    }

    .nextStepsGrid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .servicesHeroSection h1 {
        font-size: 1.5rem;
    }

    .serviceDetailContent h3 {
        font-size: 1.3rem;
    }

    .comparisonHeader, .comparisonRow {
        grid-template-columns: 1fr;
    }

    .comparisonCell {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .faqQuestion {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .thankYouSection h1 {
        font-size: 1.5rem;
    }
}