* {
  margin: 0; 
	  padding: 0; 
	   box-sizing    : border-box;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
      color: #2c3e50;
  background-color: #ffffff;
}

.navigation {
    background-color: #f8f9fa;
   padding  :    1rem 0;
   position: sticky;
   top: 0;
   z-index :     1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.nav-container {
  max-width: 1200px;
    margin: 0 auto;
  padding: 0 1.5rem;
        display: flex;
  justify-content: space-between;
  align-items     :     center;
}



.nav-logo img {
               height  :       64px;
          width: auto;
	display  :  block;
}

.nav-menu {

	 display: flex;

  list-style: none;

   gap: 2rem;


}

.nav-menu a {
    text-decoration: none;
	 color:  #2c3e50;
   font-weight: 500;
  transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-menu a:hover {
	 color: #3498db;
}

.burger-menu {
    display: none;
    flex-direction: column;
	background: none;
  border: none;
          cursor: pointer;
  gap: 0.4rem;
   padding: 0.5rem;
}

.burger-menu span {

		 width: 25px;
    height: 3px;
  background-color: #2c3e50;
	 border-radius: 2px;
  transition: all 0.3s ease;}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
	
	}

.burger-menu.active span:nth-child(2) {
  opacity: 0; 
	
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);


}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #f8f9fa;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
        padding: 1.5rem 0;
        box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        padding: 1rem 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-menu a {
        font-size: 1.1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }
}.hero

{
		max-width: 1200px;
  margin: 0 auto;
    padding: 4rem 1.5rem;
   display: grid;
	 grid-template-columns: 1fr 1fr;
	gap: 3rem;
    align-items: center;


}

.hero-content h1		{
	font-size :  3rem;
      line-height: 1.2;
   margin-bottom    :      1.5rem;
	color: #1a252f;
}


.hero-content p {


  line-height: 1.8;
   color: #555;
   margin-bottom: 2rem;
	font-size: 1.1rem;
}

.cta-button {
	display: inline-block; 
   padding: 0.75rem 2rem; 
    background-color: #3498db; 
   color: white; 
    text-decoration: none; 
    border-radius:   4px; 
    font-weight: 600; 
               transition: all 0.3s ease; 
   border: 2px solid #3498db;
}

.cta-button:hover


{
		background-color: #2980b9;
  border-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.hero-img {
  width  :       100%;
    height: auto;
    border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2.5rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.section-container {
   max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.benefits-section {
   background-color: #f0f4f8;
   padding: 4rem 1.5rem;
}

.benefits-section h2,
.expertise-section h2,
.workshops-section h2,
.testimonials-section h2,
.cta-section h2,
.contact-section h2 {
    font-size: 2.5rem;
       margin-bottom: 3rem;
  text-align: center;
    color: #1a252f;
}

.benefits-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
	background-color: white;

   padding: 2rem;

   border-radius: 8px;

  box-shadow: 0 2px 8px rgba(0,0,0,0.08);

   transition: all 0.3s ease;

  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.benefit-icon     {
   background-color: #e3f2fd; 
   width: 60px; 
  display: flex; 
    justify-content    :    center; 
   height: 60px; 
   align-items     :    center; 
   margin  :       0 auto 1.5rem; 
    border-radius: 8px;
}

.benefit-icon img {
	width: 32px;
   height: 32px;
  filter: drop-shadow(0 0 4px rgba(52, 152, 219, 0.3));
}

.benefit-card h3 {
  font-size: 1.3rem;
   margin-bottom: 1rem;
  color: #2c3e50;
}

.benefit-card p {
    color: #666;
    line-height: 1.7;
  font-size:0.95rem;
}

.expertise-section {

   padding: 4rem 1.5rem;
     }

.expertise-wrapper {

		display: grid;
          grid-template-columns: 1fr 1fr;
  gap  :    3rem;
   align-items :     center;
	}

.expertise-item {

  margin-bottom: 2rem;
	    display: flex;
	  gap     :     1.5rem;}

.expertise-number {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	 color: white;
  width: 50px;
	height: 50px;
   border-radius: 50%;
   display:   flex;
   align-items    :    center;
   justify-content: center;
    font-size: 1.5rem;
	 font-weight: bold;
    flex-shrink:0;
}

.expertise-item h3 {
    font-size: 1.2rem; 
    margin-bottom: 0.5rem; 
    color: #1a252f; 
	
}

.expertise-item p {
   color: #666;
	line-height  :   1.6;
  font-size: 0.95rem;
}  

.expertise-img {
    width: 100%;
   height: auto;
    border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}@media (max-width: 768px) {
    .expertise-wrapper {
        grid-template-columns: 1fr;
    }
}.workshops-section

{
  background-color: #f8f9fa;
    padding   :4rem 1.5rem;
}

.workshops-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap   :  2rem;
}

.workshop-card {
               background-color  :        white;
					border-radius: 8px;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
   transition: all 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

.workshop-img {
    width: 100%; 
	height: 220px; 
  object-fit: cover; 
    display: block;
} 

.workshop-content   {
    padding: 1.5rem;


}

.workshop-content h3 {
		 font-size     : 1.2rem;
    color     :      #1a252f;
  margin-bottom: 0.8rem;
}

.workshop-content p {


 color: #666;
  font-size: 0.95rem;
    margin-bottom     : 1.2rem;
   line-height: 1.6;
	}

.workshop-duration {
    display: inline-block;
  background-color: #e3f2fd;
    color: #3498db;
   padding: 0.4rem 0.8rem;
  border-radius: 4px;
    font-size: 0.85rem;
        font-weight: 600;
}

.testimonials-section {
    padding: 4rem 1.5rem;
}

.testimonials-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
   background-color: #f0f4f8;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #3498db;
}

.testimonial-stars {
    font-size: 1.2rem;
	color: #f39c12;
    margin-bottom    :      1rem;
}

.testimonial-card p     {
    color: #555;
	font-style: italic;
    margin-bottom: 1.5rem;
   line-height: 1.8;
}

.testimonial-author   {
	color :     #2c3e50;
    font-weight: 600;
   font-size: 0.95rem;
}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);

  color: white;

    padding    : 4rem 1.5rem;

    text-align: center;
}

.cta-content h2{
   color: white;
	margin-bottom: 1rem;
}

.cta-content p {
   font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-large {
	 display: inline-block;
  padding :        1rem 2.5rem;
   background-color: white;
  color: #3498db;
        text-decoration    :       none;
    border-radius: 4px;
   font-weight: 700;
   transition: all 0.3s ease;
 border: 2px solid white;
   font-size: 1.05rem;
}

.cta-button-large:hover {
	    color: white;
    background-color: transparent;
  transform: translateY(-2px);
}

.contact-section {
		padding: 4rem 1.5rem;
  background-color: #f8f9fa;
}

.contact-wrapper {
    display: grid;
   grid-template-columns  :       1fr 1fr;
   gap: 3rem;
  margin-top: 2rem;
}

.contact-form {
   background-color: white;
        padding: 2rem;
  border-radius  :8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.form-group {
	margin-bottom  :    1.5rem;
}

.form-group label {
  display    : block;
		margin-bottom: 0.5rem;
	    color: #2c3e50;
	   font-weight: 600;
	   font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
  padding: 0.75rem;
   border  :   1px solid #ddd;
  border-radius: 4px;
    font-family: inherit;
	font-size: 0.95rem;
  transition: all 0.3s ease;
	background-color  :    #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline     :none;
  border-color: #3498db;
   background-color: white;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-btn {
    width: 100%;
   padding: 0.85rem;
   background-color :       #3498db;
   color: white;
   border: none;
    border-radius     :    4px;
   font-weight :       600;
    font-size: 1rem;
      cursor: pointer;
   transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color :  #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.contact-info {

	    display: flex;
	flex-direction: column;
    gap: 2rem;
}

.info-block {


    background-color: white;

  padding: 1.5rem;

   border-radius: 8px;

  box-shadow: 0 2px 8px rgba(0,0,0,0.08); 

	}

.info-block h3 {
  color: #2c3e50;
		margin-bottom: 0.8rem;
		 font-size: 1.1rem;
}

.info-block p {
    color: #666;
   line-height: 1.8;
}@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .benefits-section h2,
    .expertise-section h2,
    .workshops-section h2,
    .testimonials-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }
}.footer {
   background-color: #2c3e50;
    color    :        white;
  padding: 3rem 1.5rem 1.5rem;
}

.footer-container		{
   max-width: 1200px;
	 margin: 0 auto;
  display: grid;
               grid-template-columns :      auto 1fr;
  gap: 3rem;
   margin-bottom: 2rem;
   align-items: start;
}

.footer-logo-img {
		height     :  86px;
    width: auto;
   display: block;
  filter: brightness(0) invert(1);
	}

.footer-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.footer-section h4 {


  margin-bottom : 1rem;
  font-size: 1.1rem;
}

.footer-section ul {
    list-style    :       none;
}

.footer-section ul li {


    margin-bottom :    0.7rem;
	}

.footer-section a {
 color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover    {
  color     :      #3498db;
}

.footer-section p {
	color: #ecf0f1;
    line-height: 1.8;
  font-size: 0.95rem;
}

.footer-bottom {
   border-top: 1px solid #34495e;
    padding-top: 1.5rem;
   text-align:      center;
    color: #bdc3c7;
   font-size: 0.9rem;
}  @media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer {
        padding: 2rem 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .benefits-section h2,
    .expertise-section h2,
    .workshops-section h2,
    .testimonials-section h2,
    .cta-section h2,
    .contact-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .nav-menu {
        top: 60px;
    }

    .cta-button,
    .cta-button-large {
        font-size: 0.95rem;
        padding: 0.6rem 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
	 padding: 5rem 1.5rem;
    text-align: center;
}

.services-hero-content h1 {
                    font-size :     3rem;
    margin-bottom: 1rem;
   line-height    :       1.2;
}

.services-hero-content p {
   font-size: 1.2rem;
    opacity     :        0.95;
} 

.services-overview {
  padding   :  3rem 1.5rem;
     background-color: #f8f9fa;

}

.services-overview h2 {

	        font-size: 2.2rem;
  text-align     :    center;
 margin-bottom     :       1.5rem;
    color: #1a252f;



}

.overview-intro {
		font-size    :        1.05rem;
     color: #666;
      line-height:       1.8;
       text-align     :     center;
      max-width: 800px;
      margin: 0 auto;


}

.service-detailed-1,
.service-detailed-2,
.service-detailed-3,
.service-detailed-4,
.service-detailed-5 {
    padding: 4rem 1.5rem;
}

.service-detailed-1,
.service-detailed-3,
.service-detailed-5{
   background-color: #ffffff;
}

.service-detailed-2,
.service-detailed-4  
  {
    background-color: #f8f9fa;
} 

.service-row {
  align-items: center;
   gap: 3rem;
 display: grid;
    grid-template-columns: 1fr 1fr;
}

.service-row.reverse {

        grid-template-columns: 1fr 1fr;
     }

.service-row.reverse .service-image {

  order: 2;
     }

.service-row.reverse .service-details {
   order: 1;
}

.service-image {
       width  :    100%;
}

.service-img {
    width: 100%;

	   height: auto;

	  border-radius :   8px;

	  box-shadow: 0 8px 24px rgba(0,0,0,0.12);

	    display: block;


}

.service-details h2 
 {
	   font-size: 2rem;
      margin-bottom: 1rem;
    color: #1a252f;
}

.service-details p {
   color: #666;
    line-height: 1.8;
  margin-bottom  : 1.5rem;
   font-size:  0.95rem; 

}

.service-features {
      display: grid;
         grid-template-columns: 1fr 1fr 1fr;
    gap: 1rem;
  margin-bottom: 1.5rem;
}

.feature-item {
    background-color: #f0f4f8;
    padding: 1rem;
  border-radius: 6px;
	border-left   :3px solid #3498db;
}

.feature-title  {
               display: block;
    color: #2c3e50;
    font-weight: 600;
  font-size: 0.85rem;
    margin-bottom: 0.4rem;
}


.feature-item span:last-child {

		display: block;
    color: #3498db;
   font-weight: 500;

}



.service-cta {

    display    :     inline-block;
    padding   :        0.75rem 1.8rem;
   background-color    :      #3498db;
  color: white;
	text-decoration: none;
	 border-radius: 4px;
  font-weight: 600;
    transition  :    all 0.3s ease;
        border: 2px solid #3498db;
}

.service-cta:hover {
   background-color: #2980b9;
    border-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3); 
	
}@media (max-width: 768px) {
    .service-row,
    .service-row.reverse {
        grid-template-columns: 1fr;
    }

    .service-row.reverse .service-image,
    .service-row.reverse .service-details {
        order: initial;
    }

    .service-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-details h2 {
        font-size: 1.5rem;
    }
}.service-comparison

{


  padding: 4rem 1.5rem;
}

.service-comparison h2 {
  color: #1a252f;
   font-size: 2.2rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.comparison-table

{
	overflow-x: auto;
}

table {
  width: 100%;
   border-collapse: collapse;
   background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    border-radius: 8px;
                    overflow: hidden;
}


thead {
    background-color: #3498db;
	color   :    white;
}

th {


  padding  :  1.2rem;
   text-align     :      left;
  font-weight: 600;
   font-size: 0.95rem;}

td

{


    padding: 1.2rem;
   border-bottom: 1px solid #e0e0e0;
  color   :#666;
   font-size: 0.9rem; 
}

tbody tr:last-child td {
  border-bottom: none; 
	
}

tbody tr:hover {
   background-color :       #f8f9fa;
}@media (max-width: 768px) {
    th,
    td {
        padding: 0.8rem 0.6rem;
        font-size: 0.85rem;
    }

    .service-comparison h2 {
        font-size: 1.8rem;
    }
}.service-process
	{

	    padding: 4rem 1.5rem;
    background-color: #f8f9fa;}

.service-process h2 {
  font-size: 2.2rem;
	text-align: center;
   margin-bottom: 3rem;
        color: #1a252f;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  background-color: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
   text-align: center;
    transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-4px); 
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.step-number {
	 width   :      60px;
   height:    60px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
    border-radius:50%;
	display: flex;
    align-items: center;
	justify-content: center;
    font-size: 1.8rem;
  font-weight: bold;
    margin     :        0 auto 1.5rem;
}

.process-step h3 {
                    font-size  :        1.2rem;
	margin-bottom: 0.8rem;
    color: #2c3e50;
     }

.process-step p		{
   color: #666;
      line-height     : 1.6;
       font-size: 0.95rem; 

}

.faq-services {
    padding: 4rem 1.5rem;
}

.faq-services h2 {
   font-size: 2.2rem; 
	  text-align: center; 
	          margin-bottom: 3rem; 
	  color: #1a252f;
}

.faq-items {
	 max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color   :        #f8f9fa;
  margin-bottom: 1.2rem;
    border-radius: 8px;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-question{
   display: flex;
    justify-content: space-between;
	 align-items: center;
    padding: 1.5rem;
	 background-color: white;
  cursor: pointer;
  transition: all 0.3s ease;
   font-weight:  600;
   color: #2c3e50;
}

.faq-question:hover
	{
      background-color: #f0f4f8;
}

.faq-toggle {
       font-size: 1.5rem;
    color: #3498db;
      transition: transform 0.3s ease;}

.faq-answer {
   display: none;
    padding :  1.5rem;
   background-color: #f8f9fa;
   color: #666;
  line-height: 1.8;
   font-size: 0.95rem;
}

.faq-answer.active {

	  display: block; 
	
}

.faq-question.active .faq-toggle {
  transform: rotate(45deg);
}

.services-cta {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
 padding: 4rem 1.5rem;
   text-align: center;
}

.services-cta-content h2 {
  color: white;
   font-size :    2.5rem;
  margin-bottom: 1rem;
}

.services-cta-content p {

	  font-size: 1.1rem;
  margin-bottom: 2rem;
    opacity: 0.95;

}

.thankyou-hero   {
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
  color: white;
        padding: 5rem 1.5rem;
  text-align: center;
    min-height: 500px;
   display: flex;
    align-items: center;
  justify-content: center;
}

.thankyou-content {
    max-width: 600px;
}

.success-icon {
  width: 100px;
    height: 100px;
   margin: 0 auto 2rem;
  background-color: rgba(255,255,255,0.2);
  border-radius: 50%;
	 display: flex;
  align-items :center;
   justify-content  :   center;
}

.success-icon img 
 {
	width: 60px;
    height:       60px;
  filter: brightness(0) invert(1);
}

.thankyou-hero h1 {
    font-size: 3rem;
   margin-bottom: 1rem;
}

.thankyou-hero p  {
   font-size: 1.2rem;
    opacity: 0.95;
	
}

.thankyou-message {

	    padding: 4rem 1.5rem;
	background-color: #f8f9fa;
	}

.message-card {
  max-width  :        1000px;
   margin: 0 auto;
  background-color: white;
  padding: 3rem;
    border-radius   :   8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.message-card h2 {
  font-size: 2rem;
    margin-bottom: 2rem;
   text-align: center;
    color: #1a252f;
	}  

.message-content {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.message-step {
   display  :flex;
       flex-direction: column;
		 align-items: center;
  text-align: center;
}

.step-icon
{
	width: 80px;
	 height: 80px;
  background-color: #e3f2fd;
      border-radius: 50%;
   display  : flex;
  align-items: center;
   justify-content: center;
  margin-bottom: 1rem;
}

.step-icon img {
  width: 40px;
   height:   40px;
  filter: drop-shadow(0 0 4px rgba(52, 152, 219, 0.3));
}

.message-step h3 {
   font-size: 1.1rem;
  margin-bottom: 0.5rem;
       color: #2c3e50;
   font-weight: 600;
}

.message-step p {
    color     : #666;
	 font-size: 0.9rem;
	line-height: 1.6;
}

.thankyou-info {
    padding: 3rem 1.5rem;
}

.info-columns {
    max-width: 900px;
   margin: 0 auto;
  display     :      grid;
	grid-template-columns: 1fr 1fr;
     gap: 2rem;
}

.info-card {
    background-color: #f8f9fa;
  padding: 2rem;
   border-radius: 8px;
    border-left: 4px solid #3498db;
}

.info-card h3 {
   font-size: 1.2rem;
  margin-bottom: 1.2rem;
   color: #2c3e50;
}

.info-card p {
  margin-bottom: 1rem;
	font-size:      0.95rem;
   color: #666;
         line-height: 1.8;
}

.quick-links {

 list-style: none;
	}

.quick-links li {
   margin-bottom: 0.8rem;
}

.quick-links a {
   color: #3498db;
  text-decoration: none;
  transition: color 0.3s ease;
  font-weight: 500;
}

.quick-links a:hover {
  color: #2980b9;
}

.thankyou-cta {
	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color    :    white;
    padding   :  4rem 1.5rem;
  text-align :      center;

}

.thankyou-cta-content h2 {
          color: white;
   font-size: 2rem;
   margin-bottom: 1rem;
}

.thankyou-cta-content p 
 {
  font-size: 1.1rem;
   opacity: 0.95;
    margin-bottom: 2rem;
}@media (max-width: 768px) {
    .info-columns {
        grid-template-columns: 1fr;
    }

    .message-content {
        grid-template-columns: 1fr;
    }

    .thankyou-hero h1 {
        font-size: 2rem;
    }

    .message-card {
        padding: 1.5rem;
    }

    .message-card h2 {
        font-size: 1.5rem;
    }

    .services-cta-content h2,
    .thankyou-cta-content h2 {
        font-size: 1.8rem;
    }

    .thankyou-hero p,
    .services-cta-content p,
    .thankyou-cta-content p {
        font-size: 1rem;
    }
}@media (max-width: 480px) {
    .message-content {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .feature-item {
        grid-column: auto;
    }

    .service-features {
        grid-template-columns: 1fr;
    }
}.policySection {
     padding     :  80px 2rem;
   background-color  :  #f8f9fa;
  min-height: calc(100vh - 300px);
} 

.policyContainer {
      max-width: 800px;
  margin: 0 auto;
  text-align:   left;
   background-color: white;
      padding: 3rem;
  border-radius    :   8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.policyContainer h1 {
	font-size    : 2.8rem;
  color: #1a252f;
   margin-bottom: 2rem;
   font-weight: 700;
  line-height:        1.2;
  border-bottom: 3px solid #3498db;
    padding-bottom  :1rem;
}

.policyContainer h2     {
    font-size: 1.6rem;
   color: #2c3e50;
   margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.3;

}

.policyContainer h2:first-of-type {
   margin-top: 0;
}

.policyContainer p {
   color: #555;
  margin-bottom: 1.2rem;
      line-height: 1.8;
  font-size: 0.95rem;
}

.policyContainer p strong {

    color:        #2c3e50;
  font-weight: 600;


}

.policyContainer ul {
   margin-left: 1.5rem;
   margin-bottom: 1.5rem;
}

.policyContainer li  
  {
  color: #555;
   font-size: 0.95rem;
   margin-bottom: 0.8rem;
   line-height: 1.7;
}

.policyContainer a {
   color: #3498db;
   text-decoration:      none;
  transition :   color 0.3s ease;
	
}

.policyContainer a:hover {
       color: #2980b9;
  text-decoration   : underline;


}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 6px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .policyContainer li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.75rem;
    }

    .policyContainer {
        padding: 1.2rem;
        border-radius: 4px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        padding-bottom: 0.8rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.85rem;
    }

    .policyContainer ul {
        margin-left: 1rem;
    }

    .policyContainer li {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }
}.policyContainer section {
    margin-bottom: 1.5rem;
}

.policyContainer hr {
   border: none;
	 border-top:        1px solid #e0e0e0;
  margin: 2rem 0;
}

body	{
    display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
	    flex: 1;
     }