* {
         margin   :    0;
         padding: 0;
    box-sizing: border-box;


}

:root {
    --primary-color: #1a3a52;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --light-bg: #f8f9fa;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #ecf0f1;
}

/* Minified version */

html{
  scroll-behavior: smooth;
}

body {


  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
   line-height: 1.6;
  background-color: #ffffff;


}

.navbar {
  background: var(--primary-color);
	color: white;
    padding: 1rem 0;
   position: sticky;
   top: 0;
   z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-container {
   max-width: 1200px;
  margin: 0 auto;
  display     :        flex;
   justify-content    :      space-between;
    align-items: center;
   padding: 0 2rem;
}

.navbar-logo {
  display: flex;
   align-items :  center;
}

.logo-img {
	height: 45px;
          width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
	   gap: 2rem;
}

/* Responsive design */


.nav-link {
        color :white;
	 text-decoration   :        none;
   font-weight: 500;
  transition: color 0.3s ease;
               position: relative;
}

/* Component styles */


	/* Minified version */

.nav-link:hover {
  color: var(--secondary-color);
}

.burger-menu {
   display:     none;
        flex-direction: column;
					cursor: pointer;
}

/* Temporary fix */



/* Framework override */
/* TODO: optimize for mobile */
.burger-menu span {
       width: 25px;
	height   :3px;
    background   :   white;
    margin :        5px 0;
  transition    :  all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active span:nth-child(2) {
   opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display   : none;
  background: var(--primary-color);
       padding: 1rem 0;
    position: absolute;
   width: 100%;
   top: 70px;
    left  :       0;
   flex-direction: column;
  gap: 0;
}

.mobile-menu.active {
               display: flex;
     }

.mobile-nav-link {
		 color: white;
   padding: 1rem 2rem;
               text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.1);
   transition     :    background 0.3s ease;
}

.mobile-nav-link:hover {
  background: rgba(231, 76, 60, 0.2);
}

.hero {


    max-width: 1200px;
    margin: 0 auto;
   padding: 5rem 2rem;
               display  :grid;
   grid-template-columns: 1fr 1fr;
    gap :    3rem;
   align-items: center;


}

.hero-content h1 {
	font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
  color: var(--text-light);
         margin-bottom: 2rem;
}

.cta-button {
                    display: inline-block;
  background: var(--secondary-color);
  color: white;
   padding: 0.8rem 2rem;
 border-radius: 50px;
	 text-decoration:     none;
   font-weight: 600;
    transition     :       all 0.3s ease;
  border: 2px solid var(--secondary-color);
}



.cta-button:hover {
      background: transparent;
  color: var(--secondary-color);


}

.hero-visual {
    position: relative;
     height   :        400px;
}

.visual-accent {
  position    :    absolute;
   width: 300px;
   height     :       300px;
  background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
  border-radius  :      50%;
    top: 50px;
    right:  0;
  opacity: 0.8;
	 animation     :   float 6s ease-in-out infinite;
}  
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}.section-header {
         text-align: center;
   margin-bottom: 3rem;

}

.section-header h2
{


  font-size: 2.5rem;
	  color: var(--primary-color);
	   margin-bottom: 0.5rem;

}

.section-header p    {
    font-size: 1.1rem;
  color: var(--text-light);
     }

.services-preview {

						max-width: 1200px;
    margin: 0 auto;
     padding :      4rem 2rem;
  background: var(--light-bg);


}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.service-card {
  background:  white;
   border-radius: 10px;
    overflow:  hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-card:hover
	{
     transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
	}

.service-card img {
  width: 100%;
	height: 200px;
	 object-fit :        cover;
}

.service-card h3 {
   font-size: 1.3rem;
  color: var(--primary-color);
   padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
  color: var(--text-light);
    padding: 0.5rem 1.5rem 1.5rem;
               font-size: 0.95rem;
}



.features   {
	 max-width: 1200px;
   margin: 0 auto;
 padding: 4rem 2rem;
}

.features h2 {
        font-size: 2.5rem;
  color: var(--primary-color);
    text-align: center;
   margin-bottom: 3rem;
}

.features-container {
	 display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap     :     2rem; 

}

.feature-item {

  text-align:   center;
   padding: 2rem 1rem;
  border-radius  :        10px;
   transition: all 0.3s ease;
     }

.feature-item:hover {
     background: var(--light-bg);
	}

.feature-icon {
    display: flex;
        justify-content: center;
   margin-bottom: 1rem;
}

.feature-icon img


{

         width: 50px;
     height: 50px;
  stroke: var(--accent-color);
}

.feature-item h3 {


  font-size: 1.1rem;
  color: var(--primary-color);
	 margin-bottom: 0.5rem;}

.feature-item p  
  {
  color: var(--text-light);
       font-size    :    0.9rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color)); 
   color: white; 
    padding: 4rem 2rem; 
  text-align: center; 
			margin: 4rem 0;
}

.cta-content h2 {
    font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-content p {
   font-size: 1.1rem;
 margin-bottom: 2rem;
   opacity: 0.95;
}

.cta-button-large {
   display    :      inline-block;
  background: var(--secondary-color);
    color: white;
   padding: 1rem 2.5rem;
    border-radius: 50px;
  text-decoration: none;
   font-weight: 600;
        transition: all 0.3s ease;
  border: 2px solid var(--secondary-color);
    font-size: 1.1rem;
}

.cta-button-large:hover {
  background   :  white;
  color: var(--secondary-color);}

.seminar-preview {

          max-width: 1200px;
  margin: 0 auto;
    padding: 4rem 2rem;
     }

.seminar-preview h2 {
       font-size:     2.5rem;
  color: var(--primary-color);
  text-align: center;
   margin-bottom    :        3rem;
}

.seminar-grid {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
         gap: 2rem;
}

.seminar-card {
   background: white;
    border-radius  :    10px;
               overflow    :      hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   transition: all 0.3s ease;

}

.seminar-card:hover

{
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
	


}

.seminar-card img		{


      width: 100%;
  height: 200px;
    object-fit: cover;
	}

.seminar-card h3 {


   font-size: 1.2rem;
  color: var(--primary-color);
    padding: 1.5rem 1.5rem 0.5rem;

}

.seminar-card p {
  color: var(--text-light);
     padding: 0.5rem 1.5rem;
       font-size :  0.9rem;
}

.seminar-badge {
    display : inline-block;
  background: var(--accent-color);
  color: white;
    padding: 0.4rem 1rem;
  border-radius  :   20px;
 font-size: 0.8rem;
    margin: 1rem 1.5rem 1.5rem;
    font-weight: 600;
}

.contact {
    max-width: 600px;
    margin: 4rem auto;
   padding: 3rem 2rem;
  background: var(--light-bg);
   border-radius: 10px; 
	
}

.contact h2 {
   font-size: 2rem;
  color: var(--primary-color);
   text-align: center;
	margin-bottom: 2rem;
}

.contact-form   {
  display: flex;
   flex-direction :   column;
  gap    :       1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
	width: 100%;
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
        transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

		outline     :       none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1); 

     }

.submit-button {
  background: var(--secondary-color);
  color: white;
	 padding: 1rem;
    border: none;
  border-radius: 5px;
        font-size: 1rem;
  font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
}

.submit-button:hover {

  background: var(--primary-color);

  transform: translateY(-2px);

  box-shadow: 0 4px 12px rgba(0,0,0,0.2);


}

.footer	{
  background: var(--primary-color);
  color  :      white;
 padding: 3rem 2rem 1rem;
   margin-top     : 4rem;
}

.footer-content {
       max-width: 1200px;
   margin: 0 auto;
	display   :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 2rem;
   margin-bottom: 2rem;
}

.footer-section h3   {
  font-size: 1.1rem;
				 margin-bottom: 1rem;
  color: var(--secondary-color);
}

.footer-section p {
    font-size: 0.9rem;
     color: rgba(255,255,255,0.8);
             line-height: 1.8;
}

.footer-logo {
    height: 50px;
	width: auto;
  filter: brightness(0) invert(1);
}

.footer-link {
   display: block;
  color: rgba(255,255,255,0.8);
    text-decoration: none;
  font-size: 0.9rem;
   margin-bottom: 0.5rem;
 transition  :      color 0.3s ease;
}

.footer-link:hover {
  color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top : 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.7);
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-visual {
        height: 250px;
    }

    .visual-accent {
        width: 200px;
        height: 200px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .seminar-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .cta-button,
    .cta-button-large {
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .features-container {
        grid-template-columns: 1fr;
    }

    .contact {
        padding: 2rem 1rem;
    }
}.services-hero {

	  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
	 padding: 4rem 2rem;
    text-align : center;
     margin-top: 70px;
}

.services-hero-content h1 {
    font-size: 2.8rem;
   margin-bottom: 1rem;
  line-height: 1.2;
}

.services-hero-content p {
   font-size: 1.2rem;
    opacity: 0.95;

}

.max-width-container {
	max-width: 1200px;
  margin: 0 auto;
          padding: 0 2rem;
}

.services-detailed   {
   padding: 4rem 0;
}

.service-detail-item {
  display: grid;

	    grid-template-columns: 1fr 1fr;

	   gap: 3rem;

	   align-items: center;

		margin-bottom: 4rem;

		max-width: 1200px;

	    margin-left: auto;

		 margin-right: auto;

	    padding: 0 2rem; 
	


}

.service-detail-item.reverse {
   grid-template-columns: 1fr 1fr;
	direction: rtl;
}

.service-detail-item.reverse > * {

			direction    : ltr;}

.service-detail-image img {
	 width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-detail-content h2    {
		 font-size: 2rem;
  color: var(--primary-color);
 margin-bottom: 1rem;
}

.service-detail-content p {
  color: var(--text-light);
    font-size   :       1rem;
    margin-bottom: 2rem;
   line-height: 1.8; 
	
}

.service-features {
   display    :    grid;
  grid-template-columns: repeat(3, 1fr);
  gap:    1.5rem;
   margin-bottom: 2rem; 

}

.feature-point {

  padding     :        1.5rem;
  background: var(--light-bg);
  border-radius: 8px;
  transition: all 0.3s ease;


}

.feature-point:hover    {
  background: var(--accent-color);
    color: white;
  transform: translateY(-3px);
}

.feature-point:hover h3,
.feature-point:hover p {
    color: inherit;
}

.feature-number  
  {
      display: block;
  font-size: 1.5rem;
  font-weight :700;
  color: var(--secondary-color);
  margin-bottom: 0.5rem;
}

.feature-point:hover .feature-number {
  color: white;
}

.feature-point h3 {
       font-size  :    1rem;
  color: var(--primary-color);
               margin-bottom: 0.5rem;
}

.feature-point p {
   	 font-size: 0.85rem;
  color: var(--text-light);
}

.service-info {
   display: flex;

	  gap:     1rem;

	    flex-wrap: wrap;
}

.info-badge     {
  background: var(--primary-color);
  color: white;
	 padding    :       0.5rem 1rem;
   border-radius: 20px;
   font-size: 0.85rem;
  font-weight: 600;
}

.pricing-section    {
   max-width: 1200px;
    margin: 4rem auto;
   padding: 3rem 2rem;

}

.pricing-section h2 {
	    font-size: 2.5rem;
  color: var(--primary-color);
          text-align: center;
	 margin-bottom: 3rem;

}

.pricing-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 2rem;
}

.pricing-card {
	  background: white;
  border: 2px solid var(--border-color);
   border-radius: 10px;
   padding: 2rem;
   text-align: center;
    transition :      all 0.3s ease;
   position: relative;
     }

.pricing-card:hover
	{
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}

.pricing-card.featured {
  border-color: var(--secondary-color);
  background: linear-gradient(135deg, rgba(231, 76, 60, 0.05), rgba(52, 152, 219, 0.05));
}

.featured-badge {
  position: absolute;
   top  :       -12px;
   left: 50%;
  transform: translateX(-50%);
  background: var(--secondary-color);
    color: white;
    padding   :  0.4rem 1rem;
  border-radius: 20px;
   font-size    :0.8rem;
      font-weight: 600;
}

.pricing-card h3 {
  font-size: 1.3rem;

  color: var(--primary-color);

    margin-bottom: 1rem;
}

.price-tag {
                    font-size  :     1.5rem;
  color: var(--secondary-color);
  font-weight: 700;
    margin-bottom: 1.5rem;


}

.pricing-features {
	    list-style    :      none;
	margin-bottom: 2rem;
    text-align: left;
	
}

.pricing-features li {


   padding: 0.7rem 0;

  border-bottom: 1px solid var(--border-color);

  color: var(--text-light);

  font-size: 0.9rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-cta {

	                    display: inline-block;
    background: white;
  color: var(--primary-color);
	 padding: 0.8rem 1.5rem;
  border: 2px solid var(--primary-color);
    border-radius  : 5px;
	text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
     width: 100%;
}

.pricing-cta:hover {
  background: var(--primary-color);
    color: white;
}

.pricing-card.featured .pricing-cta.featured-cta {
  background: var(--secondary-color);
   color :   white;
  border-color: var(--secondary-color);
}

.pricing-card.featured .pricing-cta.featured-cta:hover     {

  background: var(--primary-color);
  border-color: var(--primary-color);
}

.methodology-section

{
   max-width: 1200px;
    padding: 3rem 2rem;
	margin: 4rem auto; 
	
}

.methodology-section h2  
  {
   font-size: 2.5rem;
  color: var(--primary-color);
   text-align: center;
    margin-bottom :   3rem;
}

.methodology-steps {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
	}

.step {
  text-align: center;
   padding: 2rem;
  background: var(--light-bg);
			border-radius: 10px;
	 transition: all 0.3s ease;


}

.step:hover {
  background: var(--accent-color);
         color: white;
  transform: translateY(-3px);
}

.step-number {
   display :       inline-flex;
    align-items :      center;
    justify-content: center;
  width: 50px;
   height: 50px;
	 border-radius :  50%;
  background: var(--secondary-color);
   color: white;
  font-size  :  1.5rem;
  font-weight: 700;
  margin-bottom :    1rem;
}

.step:hover .step-number {
	 background     : white;
  color: var(--accent-color);
}

.step h3  {

	    font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 0.5rem;

}

.step:hover h3 {
          color: white;
}

.step p {
     color: var(--text-light);
	 font-size: 0.9rem;
	}

.step:hover p {
    color: white;
   opacity: 0.9;
	
}

.faq-section  
  {
    max-width: 900px;
	  margin: 4rem auto;
	         padding: 3rem 2rem;
}

.faq-section h2 {


    font-size: 2.5rem;
     color: var(--primary-color);
      text-align: center;
    margin-bottom: 3rem;
}

.faq-container {
    display: flex;
   flex-direction:column;
   gap: 1rem;
}

.faq-item {
  border: 1px solid var(--border-color);
	    border-radius  :   8px;
	               overflow: hidden;
	    background: white;


}

.faq-question {
    width: 100%;
    padding   :    1.5rem;
  background: var(--light-bg);
   border: none;
        text-align: left;
  font-size: 1rem;
	font-weight: 600;
  color: var(--primary-color);
    cursor: pointer;
  transition: all 0.3s ease;
   display :flex;
   justify-content: space-between;
   align-items: center;
}

.faq-question:hover {

	  background: var(--accent-color);
    color: white;
}

.faq-question::after {
  content: '▼';
  font-size: 0.75rem;
    transition: transform 0.3s ease;
	 -moz-transition: transform 0.3s ease;
}

.faq-item.active .faq-question     {

  background: var(--accent-color);
  color     :       white;


}

.faq-item.active .faq-question::after 
 {

	  transform: rotate(180deg);

}

.faq-answer {
     max-height: 0; 
   overflow: hidden; 
  transition: max-height 0.3s ease; 
   padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}



.faq-answer p {
  color: var(--text-light);
   line-height: 1.8;
    margin-bottom: 1rem;
}

.faq-answer p:last-child   {
	 margin-bottom: 0;
}

.cta-final   {
  background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
	color: white;
  padding:     3rem 2rem;
    text-align: center;
   margin: 4rem 0;
}

.cta-final h2		{
 font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-final p {
	    font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;


}

.thankyou-container {
  min-height: 60vh;
  padding: 3rem 2rem;
   text-align: center;
         display: flex;
   align-items: center;
    max-width: 700px;
   margin: 4rem auto;
	justify-content: center;
}

.thankyou-content {
    width :        100%;
}

.success-icon {
    width: 120px;
    height: 120px;
	margin: 0 auto 2rem;
	
}

.success-icon svg {
  width: 100%;
  height: 100%;
   animation :   scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {
	  font-size: 2.5rem; 
  color: var(--primary-color); 
   margin-bottom: 0.5rem;

}

.thankyou-subtitle {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.thankyou-message {
	  background: var(--light-bg);

	    padding: 2rem;

	  border-radius: 10px;

	    margin-bottom: 2rem;

	   text-align: left;
     }

.thankyou-message p {
  color: var(--text-dark);
   margin-bottom: 1rem;
   line-height: 1.8;
}

.thankyou-message p:last-child {
  margin-bottom: 0;
}

.next-steps {

	   background: white;
    padding :     2rem;
   border-radius: 10px;
  border: 2px solid var(--border-color);
    margin-bottom: 2rem;
    text-align: left;


}

.next-steps h2 {
    font-size: 1.5rem;
  color: var(--primary-color);
   margin-bottom: 1.5rem;
  text-align: center;
}

.steps-list {
   display: flex;
    flex-direction  :column;
    gap     : 1rem;
}

.step-item {
  display: flex;
   gap: 1rem;
	 align-items  :flex-start;
}

.step-check {


    display: inline-flex;
    align-items: center;
  justify-content  :       center;
   width: 40px;
    height: 40px;
    border-radius: 50%;
  background: var(--accent-color);
    color  :      white;
  font-weight: 700;
  flex-shrink: 0;

}

.step-item h3 {
  font-size: 1rem;
  color: var(--primary-color);
         margin-bottom: 0.3rem;
}

.step-item p {
  color: var(--text-light);
  font-size: 0.9rem;
	}

.action-buttons {
  flex-wrap: wrap;
  justify-content:  center;
	display: flex;
   gap: 1rem;
}

.button-primary,
.button-secondary {
    padding: 0.8rem 2rem;
   border-radius: 5px;
  text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
   display: inline-block;
}

.button-primary  
  {
  background: var(--secondary-color);
      color: white;
  border: 2px solid var(--secondary-color);
}

.button-primary:hover {


  background: var(--primary-color);
  border-color: var(--primary-color);}

.button-secondary {
   background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.button-secondary:hover {
	  background: var(--primary-color);
    color: white;
}

.additional-info {

    max-width: 1200px;
  margin: 3rem auto;
    padding: 3rem 2rem;}

.additional-info h2	{

    font-size: 2rem;
  color: var(--primary-color);
 text-align: center;
    margin-bottom: 2rem;

}  

.info-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap:  2rem; 

}

.info-card {
    background   :     white;
          border-radius: 10px;
       overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
   transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.info-card img {
    width: 100%;
	height: 180px;
   object-fit: cover;
}

.info-card h3 {
   font-size: 1.1rem;
	  color: var(--primary-color);
	    padding: 1.5rem 1.5rem 0.5rem;
}

.info-card p {
  color: var(--text-light);
  padding: 0.5rem 1.5rem;
					font-size: 0.9rem;
}

.info-card a {
    display: inline-block;
  color: var(--accent-color);
   padding: 0.5rem 1.5rem 1.5rem;
  text-decoration: none;
    font-weight: 600;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: var(--secondary-color);
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        direction: ltr;
    }

    .service-detail-item.reverse > * {
        direction: ltr;
    }

    .service-features {
        grid-template-columns: 1fr;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .methodology-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-section {
        padding: 2rem 1rem;
    }

    .thankyou-container {
        margin: 2rem auto;
        padding: 2rem 1rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }
}@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detail-item,
    .service-detail-item.reverse {
        padding: 0 1rem;
    }

    .feature-point {
        padding: 1rem;
    }

    .pricing-section {
        padding: 2rem 1rem;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .faq-question {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .thankyou-container {
        min-height: auto;
    }

    .next-steps {
        padding: 1.5rem;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }
}.policySection {
  padding: 100px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  margin-top:   70px;
    min-height: 70vh;
}



.policyContainer {
    max-width: 900px;
   margin: 0 auto;
   text-align: left;
} 

.policyContainer h1
	{
		 font-size: 3rem;
	line-height: 1.2;
    font-weight: 700;
    color: #1a3a52;
    margin-bottom: 2rem;
}

.policyContainer h2 {
   font-size     :   1.8rem;
   color: #1a3a52;
  margin-top: 2.5rem;
   margin-bottom: 1rem;
  font-weight: 600;
  border-left: 4px solid #e74c3c;
   padding-left: 1rem;
}

.policyContainer h2:first-of-type {
    margin-top: 0;
}

.policyContainer p {
    color: #7f8c8d;
	margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1rem;
}

.policyContainer p strong {
	color: #2c3e50;
    font-weight: 600;
}

.policyContainer ul {
     margin: 1.5rem 0 1.5rem 2rem;
   color: #7f8c8d;

}

.policyContainer ul li {
  margin-bottom: 0.8rem;
    line-height: 1.6;
   font-size: 0.95rem;
}

.policyContainer a {
   transition: color 0.3s ease; 
		color: #3498db; 
	    text-decoration     :     none;
}

.policyContainer a:hover {
    color: #e74c3c;
  text-decoration: underline;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
        margin-top: 70px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.8rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer ul {
        margin: 1rem 0 1rem 1.5rem;
    }

    .policyContainer ul li {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.7rem;
        padding-left: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .policyContainer ul {
        margin: 0.8rem 0 0.8rem 1.2rem;
    }

    .policyContainer ul li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
}