* {


   margin: 0;
   padding: 0;
         box-sizing: border-box;
	}

html {
   scroll-behavior: smooth;

}

body	{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
    color: #2c3e50;
    background-color: #f8f9fa;
}

.navigation-bar {
    background-color: #ffffff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
       position: sticky;
   	top: 0;
       z-index: 1000;
}

.nav-container {
       max-width: 1200px;
  margin: 0 auto;
   display: flex;
  justify-content: space-between;
     align-items: center;
     padding     :     0 20px;
   height: 70px;
	}

.nav-logo-section {

    flex-shrink: 0;
}

.nav-logo

{
     width: auto;
	         height: 64px;
	   display: block;
	}

.nav-links {
    display: flex;
          gap :       35px;
    list-style: none;
}

.nav-links a {
   text-decoration: none;

	   color: #2c3e50;

	  font-weight: 500;

	   transition: color 0.3s ease;

	    font-size: 14px;
}

.nav-links a:hover {
   color: #3498db;
}

.burger-toggle {
  display: none;
   flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding:        5px;
}

.burger-line {
  width: 25px;
   height: 3px;
   background-color: #2c3e50;
    margin: 4px 0;
   transition     :  all 0.3s ease;
    border-radius: 2px;
}

.burger-toggle.active .burger-line:nth-child(1) {
     transform: rotate(45deg) translate(8px, 8px);
     }

.burger-toggle.active .burger-line:nth-child(2) 
 {
   opacity: 0;
}

.burger-toggle.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);

}

.hero-section {
   display: grid;
         grid-template-columns: 1fr 1fr;
	gap: 40px;
    align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
	
}

.hero-content h1     {
  margin-bottom: 20px;
   font-weight: 700;
    line-height: 1.2;
               font-size    :  48px;
  color:    #1a252f;
}

.hero-subtitle {
    font-size: 18px;
   color: #546e7a;
   margin-bottom: 30px;
  line-height :    1.8;

}

.cta-button {
   display :    inline-block;
  padding :   14px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  text-decoration: none;
    border-radius   :    8px;
  font-weight: 600;
         transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.hero-image {
    width: 100%;
    height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.services-overview {
  max-width: 1200px;
     margin: 0 auto;
  padding: 80px 20px;
       background-color: #ffffff;
}

.overview-header


{
    text-align: center;
    margin-bottom: 60px;

}



.overview-header h2 {
  margin-bottom :  15px;
       color: #1a252f;
     font-size: 40px;
     font-weight: 700;
}

.overview-header p
{
   font-size: 18px;
   color: #7f8c8d;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}


.service-card {
   padding: 30px;
    background: #f0f2f5;
	border-radius: 10px;
    transition: all 0.3s ease;
   text-align: center;

}

.service-card:hover {
   background: #e8eef7;
  transform: translateY(-5px);
}

.service-icon   {
  display: flex;
   align-items: center;
	height: 60px;
       margin: 0 auto 20px;
    width:    60px;
   justify-content    :      center;
}

.service-icon img {
	width: 50px;
    height    : 50px;
  filter: drop-shadow(2px 2px 4px rgba(102, 126, 234, 0.3));
}

.service-card h3 {
    font-size: 18px;
	font-weight: 600;
    margin-bottom: 12px;
               color: #2c3e50;
}

.service-card p {
    font-size: 14px;
    color: #7f8c8d;
   line-height: 1.6; 
	
}

.transformation-section 
 {
				 max-width: 1200px;
    margin: 0 auto;
  padding: 80px 20px;
}

.transformation-grid {

    display: grid;
  grid-template-columns     :   1fr 1fr;
  gap: 50px;
	 align-items: center;


}

.transformation-image {
   width: 100%;
}

.trans-img {
  width: 100%;
	 height: auto;
     border-radius: 12px;
   object-fit: cover;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.transformation-content h2 {
  font-size: 36px;
   font-weight: 700;
    margin-bottom: 25px;
   color: #1a252f;
}

.transformation-content p {

   line-height: 1.8;
   color: #546e7a;
   font-size: 16px;
    margin-bottom: 30px;
     }

.transformation-list{

    list-style:      none;}

.transformation-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
  color: #2c3e50;
 font-size: 15px;
}

.transformation-list li:before {
  content: "▸";
	  position: absolute;
	  left: 0;
	  color: #667eea;
	   font-size: 20px;
}

.expertise-showcase {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 80px 20px;
    text-align: center;
}

.expertise-showcase h2 {

	    font-size  :      40px;
   font-weight: 700;
  margin-bottom    : 60px;}

.expertise-container {
	 max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.expertise-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 40px;
    border-radius:        12px;
  backdrop-filter: blur(10px);
}

.expertise-number {

		 font-size: 48px;
   font-weight: 700;
    margin-bottom: 15px;}

.expertise-item p     {
  font-size:      16px;
  opacity   :        0.9; 

}


.consultation-cta
{

	    display: grid;
   grid-template-columns: 1fr 1fr;
                    gap : 50px;
   align-items: center;
  max-width: 1200px;
  margin: 0 auto;
    padding: 80px 20px;
  background-color: #f8f9fa;

}

.cta-content h2 {
	font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a252f;

}

.cta-content p {

   font-size: 16px;
   color: #546e7a;
    margin-bottom   : 30px;
  line-height    :       1.8;
}

.cta-button-large {
    display: inline-block;
   padding: 16px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   text-decoration:        none;
   border-radius  : 8px;
    font-weight: 600;
    font-size: 16px;
  transition     :all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);

}

.cta-button-large:hover

{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4); 

}

.cta-image {
   width: 100%;
}

.cta-img {
  width: 100%;
  height   :        auto;
    border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}



.testimonials-section {


  max-width: 1200px;
   margin  : 0 auto;
   padding: 80px 20px;


}

.testimonials-section h2 {
  text-align    :      center;
  font-size    :      40px;
  font-weight: 700;
    margin-bottom: 60px;
  color :    #1a252f;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
	
}  

.testimonial-card {
     background: #ffffff;
  padding: 35px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
    border-left: 4px solid #667eea;
}

.testimonial-card:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);}

.testimonial-text {
    font-size: 15px;

	  color    :        #546e7a;

	    margin-bottom: 20px;

	  line-height: 1.8;

	  font-style: italic;
}

.testimonial-author {
	font-weight: 600;
   color: #2c3e50;
   font-size: 14px;
}

.professional-development {
    display: grid; 
	    grid-template-columns: 1fr 1fr; 
	   gap: 50px; 
	  align-items: center; 
	   max-width   :   1200px; 
	  margin: 0 auto; 
	  padding: 80px 20px;
}

.prof-dev-content h2 {
    font-size: 36px;
    font-weight: 700;
        margin-bottom: 25px;
    color: #1a252f;
} 

.prof-dev-content p {
   	font-size: 16px;
    color: #546e7a;
  margin-bottom: 30px;
	line-height: 1.8;
}

.learn-more-btn {
    display   :     inline-block;
  padding: 12px 28px;
    background: #667eea;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
   transition: all 0.3s ease;
}  

.learn-more-btn:hover {

	  transform: translateY(-2px);
	 background: #764ba2;}  

.prof-dev-image {
  width: 100%;
}

.prof-dev-img {
  width: 100%;
      height: auto;
      border-radius: 12px;
	 object-fit  :     cover;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);

}

.contact-section {
    max-width: 800px;
	 margin: 0 auto;
     padding: 80px 20px;
}

.contact-section h2 {
  text-align: center;
   font-size: 40px;
  font-weight: 700;
	 margin-bottom: 15px;
    color:#1a252f;
}

.contact-description {
    text-align    :      center;
    font-size: 16px;
 color: #546e7a;
         margin-bottom: 50px;


}

.contact-form {
   background: #ffffff;
  padding: 50px;
    border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
      margin-bottom: 25px;
     }

.form-group label {
  display :       block;
   margin-bottom: 8px;
   font-weight: 600;
   color: #2c3e50;
   font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {

		 width: 100%;

   padding: 12px 15px;

     border     :       1px solid #e0e6ed;

	border-radius: 6px;

	font-size: 14px;

   font-family: inherit;

  transition: all 0.3s ease;

	}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);


}

.form-submit {
    width   : 100%;
    padding    :     14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: white;
    border: none;
    border-radius: 6px;
	font-weight: 600;
   cursor     :     pointer;
   font-size: 16px;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.site-footer {
    margin-top: 100px;
   background-color: #2c3e50;
    color: #ecf0f1;
  padding: 60px 20px 30px;
}

.footer-container


{
           max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 50px;
   margin-bottom    :       40px; 

	}

.footer-logo-section {
  display: flex;
   align-items: flex-start;
}

.footer-logo {
  height :  86px;
          width: auto;
  filter: brightness(0) invert(1);
}

.footer-content {
	gap: 40px;

	  grid-template-columns: repeat(3, 1fr);

	    display: grid;


}

.footer-column h4 {
  margin-bottom: 20px;
    font-size: 16px;
  font-weight: 600;
     }

.footer-column ul		{
  list-style: none; 

}

.footer-column ul li	{
    margin-bottom: 12px;
}

.footer-column ul a {
  color: #bdc3c7;
   text-decoration    :       none;
	 transition: color 0.3s ease;
	font-size: 14px;
} 

.footer-column ul a:hover {
    color: #667eea;
}

.footer-address {
   font-size: 14px;
    line-height: 1.8;
  color: #bdc3c7;
}

.footer-phone {


    font-size: 14px;
	color  :        #bdc3c7;
   margin-top: 10px;


}

.footer-bottom{
    max-width   :        1200px;

	    margin: 0 auto;

	  text-align: center;

	  padding-top : 30px;

	  border-top: 1px solid rgba(255, 255, 255, 0.1);

	  font-size: 13px;

	   color: #95a5a6;
}@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-section {
        grid-template-columns: 1fr;
    }

    .transformation-grid {
        grid-template-columns: 1fr;
    }

    .consultation-cta {
        grid-template-columns: 1fr;
    }

    .professional-development {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #ffffff;
        gap: 0;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        padding: 0;
    }

    .nav-links a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid #f0f0f0;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .overview-header h2 {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .transformation-content h2 {
        font-size: 28px;
    }

    .expertise-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-showcase h2 {
        font-size: 30px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .consultation-cta,
    .professional-development {
        padding: 60px 20px;
        gap: 30px;
    }

    .cta-content h2,
    .prof-dev-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
        padding: 0 15px;
    }

    .nav-logo {
        height: 50px;
    }

    .hero-section {
        padding: 50px 15px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .services-overview {
        padding: 50px 15px;
    }

    .overview-header h2 {
        font-size: 24px;
    }

    .overview-header p {
        font-size: 15px;
    }

    .services-grid {
        gap: 15px;
    }

    .service-card {
        padding: 20px;
    }

    .service-card h3 {
        font-size: 16px;
    }

    .service-card p {
        font-size: 13px;
    }

    .transformation-section {
        padding: 50px 15px;
    }

    .transformation-content h2 {
        font-size: 24px;
    }

    .transformation-content p {
        font-size: 14px;
    }

    .transformation-list li {
        padding-left: 25px;
        font-size: 13px;
    }

    .expertise-showcase {
        padding: 50px 15px;
    }

    .expertise-showcase h2 {
        font-size: 24px;
        margin-bottom: 30px;
    }

    .expertise-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .expertise-item {
        padding: 25px;
    }

    .expertise-number {
        font-size: 36px;
    }

    .consultation-cta {
        padding: 50px 15px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .cta-content p {
        font-size: 14px;
    }

    .cta-button-large {
        padding: 12px 24px;
        font-size: 14px;
    }

    .testimonials-section {
        padding: 50px 15px;
    }

    .testimonials-section h2 {
        font-size: 24px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .testimonial-text {
        font-size: 13px;
    }

    .testimonial-author {
        font-size: 12px;
    }

    .professional-development {
        padding: 50px 15px;
    }

    .prof-dev-content h2 {
        font-size: 24px;
    }

    .prof-dev-content p {
        font-size: 14px;
    }

    .contact-section {
        padding: 50px 15px;
    }

    .contact-section h2 {
        font-size: 24px;
    }

    .contact-description {
        font-size: 14px;
    }

    .contact-form {
        padding: 20px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .form-submit {
        padding: 12px;
        font-size: 14px;
    }

    .site-footer {
        padding: 40px 15px 20px;
    }

    .footer-container {
        gap: 30px;
        margin-bottom: 25px;
    }

    .footer-logo {
        height: 70px;
    }

    .footer-column h4 {
        font-size: 14px;
    }

    .footer-column ul a {
        font-size: 12px;
    }

    .footer-address,
    .footer-phone {
        font-size: 12px;
    }

    .footer-bottom {
        font-size: 11px;
        padding-top: 15px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color   :      white;
 padding: 80px 20px;
   text-align: center;
}  

.services-hero h1 {
	font-size: 48px;
  font-weight:700;
  margin-bottom: 15px;
}

.services-hero p {
   font-size: 18px; 
	 opacity: 0.95;
}

.services-main   {
    max-width: 1200px;
	   margin: 0 auto;
	  padding: 80px 20px;
}

.service-detailed-card {
  display  :   grid;
   grid-template-columns: 1fr 1fr;
          gap    :   50px;
  align-items: center;
    margin-bottom: 100px;
}

.service-reversed {
  direction     : rtl;
}

.service-reversed > * {
    direction: ltr;
}

.service-detail-image {

	        width: 100%; 
	

}

.service-detail-img {
   width: 100%;
	height: auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.service-detail-content h2 {
       font-size: 36px;
	   font-weight: 700;
	    margin-bottom: 25px;
	  color: #1a252f;
}

.service-detail-content p {
   font-size: 16px;
	color: #546e7a;
        margin-bottom: 30px;
	line-height    :      1.8;
}

.service-features {
  list-style: none;
    margin-bottom: 35px;
}

.service-features li {
  padding: 12px 0;
   padding-left:       30px;
 position: relative;
    color     : #2c3e50;
    font-size: 15px;
}

.service-features li:before {
  content: "→";
  position: absolute;
  left: 0;
  color: #667eea;
  font-size: 18px;
   font-weight    : bold;
}

.service-pricing {

	    background: #f0f2f5;
  padding: 25px;
  border-radius: 10px;
	 display: flex;
   align-items: baseline;
  gap: 10px;
}

.price-label  
  {
       font-size: 14px;
       color: #7f8c8d;
     font-weight  :       500;
}

.price-value {
  font-size: 32px;
    font-weight    :      700;
    color: #667eea;
}

.price-period {
    font-size: 14px; 
	   color: #7f8c8d;
}

.services-comparison {
	max-width: 1200px;
    margin: 0 auto;
   padding :    80px 20px;
  background-color: #f8f9fa;
}

.services-comparison h2		{

    font-weight: 700;
   text-align  :center;
   margin-bottom: 60px;
    font-size: 40px;
	color :        #1a252f;
	}

.comparison-table {
    background   :      white;
    border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);

}

.comparison-row {
         display: grid;
  grid-template-columns: 200px repeat(4, 1fr);
	 border-bottom: 1px solid #e0e6ed;
}

.comparison-row.header-row {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;}

.comparison-cell  {
          padding: 20px;
    display: flex;
  align-items: center;
   justify-content: center;
    font-size: 14px;
    font-weight: 500;
}

.comparison-row:not(.header-row) .comparison-cell:first-child {
   justify-content: flex-start;
  font-weight: 600;
   color  :      #2c3e50;
}

.comparison-cell.check {
    color: #2ecc71;
   font-size: 20px;
			font-weight:        bold;
}

.comparison-row:nth-child(even):not(.header-row) {

	    background-color: #f8f9fa;
     }



.faq-section {
    max-width: 1000px;
  margin: 0 auto;
  padding: 80px 20px;
}

.faq-section h2 {
    text-align: center;
	font-size: 40px;
   font-weight: 700;
	margin-bottom:     60px;
  color: #1a252f;
}

.faq-container {
          display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

.faq-item {
  background :white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   border-left: 4px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);

}

.faq-question {
   color: #2c3e50;
    margin-bottom: 15px;
  font-weight: 700;
	cursor: pointer;
    font-size: 16px;
}

.faq-answer {
   font-size: 14px;
   color: #546e7a;
  line-height   :      1.8;
}

.services-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: white;
   padding: 80px 20px;
     text-align: center;


}

.services-cta h2  
  {
    font-weight: 700;
    margin-bottom: 20px;
   font-size: 40px;
}

.services-cta p {
   font-size: 18px;
  margin-bottom: 35px;
     opacity: 0.95;
}

.thankyou-container {
          min-height: 60vh;
  margin  :  0 auto;
	padding: 80px 20px;
    max-width: 900px;
}

.thankyou-content {
  text-align: center;
}

.success-icon		{
    width: 120px;
   height: 120px;
   margin    :     0 auto 30px;
   display  :      flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
}

.success-icon img {
 width    :   70px;
    height   :     70px;
  filter: brightness(0) invert(1);
}

.thankyou-container h1 {


       font-size: 48px;
   font-weight: 700;
  color: #1a252f;
   margin-bottom: 10px;

}

.thankyou-subtitle {
   font-size: 20px;
   color: #667eea;
	font-weight :     600;
    margin-bottom  :      40px;
}

.thankyou-message {
		margin-bottom     :   60px;
         text-align: left;
  border-radius: 12px;
    background: #f0f2f5;
   padding: 40px;


}

.thankyou-message p


{
	font-size: 16px;
    color: #546e7a;
    line-height   :1.8;
    margin-bottom: 15px;
}

.thankyou-message p:last-child {
    margin-bottom: 0;
}

.next-steps {
   margin-bottom: 80px;
}

.next-steps h2 {
    font-size: 32px;
  font-weight: 700;
    margin-bottom     : 40px;
   color: #1a252f;
}

.steps-grid {
    gap   :      30px;
  grid-template-columns: repeat(3, 1fr);
   display    :     grid;
}

.step-item {
                    background: white;
    padding: 35px;
		border-radius   :   12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;

}

.step-item:hover  
  {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.step-number {
	width: 60px;
   height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	border-radius: 50%;
    display: flex;
 align-items: center;
  justify-content: center;
   font-size: 24px;
    font-weight: 700;
  margin: 0 auto 20px;

}

.step-item h3 {
    font-size: 18px;
   font-weight: 700;
	color: #2c3e50;
    margin-bottom: 12px;
}

.step-item p {
   font-size: 14px;
       color: #546e7a;
    line-height     :   1.6;
}

.recommendations {
    margin-bottom: 60px;
}

.recommendations h2    {
    font-size :   32px;
   font-weight: 700;
  margin-bottom :     40px;
   color: #1a252f;
}

.recommendations-grid
{
   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.rec-card {

   background  :      white;
   padding: 30px;
   border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   border-top: 4px solid #667eea;
   transition: all 0.3s ease;}

.rec-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.rec-card h3{
    margin-bottom: 15px;

	   color: #2c3e50;

	    font-size  :      18px;

	  font-weight: 700;
}

.rec-card p 
 {
  font-size: 14px;
	 color: #546e7a;
  line-height: 1.6;
         margin-bottom: 20px;


}

.rec-link {
   display: inline-block;
	color :      #667eea;
   text-decoration: none;
    font-weight: 600;
	 font-size: 14px;
    transition: all 0.3s ease;
}


.rec-link:hover {
   color: #764ba2;
}

.thankyou-actions {
    display: flex;
               gap: 20px;
  justify-content  : center;
   margin-bottom: 40px;
}

.action-button {
	display: inline-block;
   padding: 14px 32px;
  border-radius: 8px;
    text-decoration: none;
  font-weight     : 600;
   transition: all 0.3s ease;
   font-size: 15px;
}

.action-button.primary {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
     box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);}

.action-button.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
}

.action-button.secondary {

	   background: #f0f2f5;
    color: #2c3e50;
   border: 2px solid #667eea;
     }

.action-button.secondary:hover {
  background: #e8eef7;
      border-color: #764ba2;
}

.trusted-section {

	   padding: 80px 20px;
       background: #f8f9fa;
    text-align: center;

}

.trusted-section h2 {
    font-size: 36px;
    font-weight: 700;
	margin-bottom: 15px;
  color  :     #1a252f;
}

.trusted-section p {
     font-size: 16px;
         color: #546e7a;
  margin-bottom: 50px;
} 

.trusted-stats {

    max-width: 800px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 40px;
}

.stat {
   display: flex;
  flex-direction: column;

}

.stat-number {

	  font-size: 40px;
    font-weight: 700;
                    color: #667eea;}

.stat-label {

	   font-size: 14px;
   color: #546e7a;
    margin-top :        10px;
      font-weight :       500;
}@media (max-width: 992px) {
    .service-detailed-card {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 70px;
    }

    .comparison-row {
        grid-template-columns: 150px repeat(4, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .recommendations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trusted-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 36px;
    }

    .services-hero p {
        font-size: 16px;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }

    .comparison-row {
        grid-template-columns: 120px repeat(4, 1fr);
    }

    .comparison-cell {
        padding: 15px;
        font-size: 12px;
    }

    .recommendations-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
        text-align: center;
    }

    .thankyou-subtitle {
        font-size: 18px;
    }

    .next-steps h2 {
        font-size: 28px;
    }

    .recommendations h2 {
        font-size: 28px;
    }

    .trusted-section h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 50px 15px;
    }

    .services-hero h1 {
        font-size: 28px;
    }

    .services-hero p {
        font-size: 14px;
    }

    .services-main {
        padding: 50px 15px;
    }

    .service-detail-content h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .service-detail-content p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .service-features li {
        padding-left: 25px;
        font-size: 13px;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .comparison-row {
        grid-template-columns: 100px repeat(4, 1fr);
    }

    .comparison-cell {
        padding: 10px;
        font-size: 10px;
    }

    .faq-section {
        padding: 50px 15px;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-question {
        font-size: 14px;
    }

    .faq-answer {
        font-size: 12px;
    }

    .services-cta {
        padding: 50px 15px;
    }

    .services-cta h2 {
        font-size: 28px;
    }

    .services-cta p {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .thankyou-container {
        padding: 50px 15px;
    }

    .success-icon {
        width: 100px;
        height: 100px;
        margin-bottom: 20px;
    }

    .success-icon img {
        width: 55px;
        height: 55px;
    }

    .thankyou-container h1 {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .thankyou-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .thankyou-message {
        padding: 20px;
        margin-bottom: 40px;
    }

    .thankyou-message p {
        font-size: 14px;
    }

    .next-steps {
        margin-bottom: 50px;
    }

    .next-steps h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .steps-grid {
        gap: 20px;
    }

    .step-item {
        padding: 20px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .step-item h3 {
        font-size: 16px;
    }

    .step-item p {
        font-size: 12px;
    }

    .recommendations {
        margin-bottom: 40px;
    }

    .recommendations h2 {
        font-size: 24px;
        margin-bottom: 25px;
    }

    .recommendations-grid {
        gap: 15px;
    }

    .rec-card {
        padding: 20px;
    }

    .rec-card h3 {
        font-size: 16px;
    }

    .rec-card p {
        font-size: 12px;
    }

    .rec-link {
        font-size: 12px;
    }

    .thankyou-actions {
        gap: 10px;
    }

    .action-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .trusted-section {
        padding: 50px 15px;
    }

    .trusted-section h2 {
        font-size: 24px;
    }

    .trusted-section p {
        font-size: 14px;
        margin-bottom: 30px;
    }

    .trusted-stats {
        gap: 20px;
    }

    .stat-number {
        font-size: 30px;
    }

    .stat-label {
        font-size: 12px;
    }
}.about-hero {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
	text-align: center;}

.about-hero h1
{

  font-size: 48px;
		 font-weight: 700;
    margin-bottom: 15px;}

.about-hero p {
         font-size: 18px;
     opacity: 0.95;
}

.about-main {
  max-width  :      1000px;
     margin: 0 auto;
    padding: 80px 20px;
}


.about-content {

	 display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 80px;


}

.about-text-section h2	{

	       font-size: 36px;
    font-weight: 700;
    margin-bottom  :   25px;
	 color: #1a252f;
     }

.about-text-section p

{
    font-size: 16px;
  color    :    #546e7a;
   line-height: 1.8;
   margin-bottom     :        20px; 

}

.about-text-section p:last-child {
  margin-bottom: 0;
}

.about-image-section {
	width: 100%;
}

.about-image
	{


   width: 100%; 
    height  :   auto; 
  border-radius     : 12px; 
  object-fit: cover; 
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);

}

.about-section {

   background: #f8f9fa;
    padding:      50px;
  border-radius: 12px;
	margin-bottom: 60px;
	}

.about-section h2 {
	font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
       color: #1a252f;
}

.about-section p {
    font-size: 16px;
    color: #546e7a;
   line-height: 1.8;
       margin-bottom: 20px; 

} 

.about-section p:last-child {

	   margin-bottom: 0;
	}

.values-grid {

	  display:  grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 30px;
     }

.value-item {
	background: white;
    padding: 30px;
   border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   border-left: 4px solid #667eea;
}

.value-item h3   {
   font-size: 18px;
		 font-weight: 700;
	  color: #2c3e50;
	   margin-bottom: 12px;
}

.value-item p		{
	font-size     :        14px;
  color     :       #546e7a;
  line-height: 1.6;
	margin: 0;
}

.why-list  
  {
	 display: grid;
  grid-template-columns  :     1fr;
  gap: 25px;
} 

.why-item {
  display    :       grid;
  grid-template-columns    :   60px 1fr;
   gap: 20px;
   align-items: flex-start;
}


.why-number {
     width: 60px;
         height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   border-radius    :   50%;
         display: flex;
    align-items: center;
  justify-content: center;
   font-size: 24px;
  font-weight: 700;
               flex-shrink     :  0;
}

.why-content h4 {
    font-size: 18px;
  font-weight: 700;
  color: #2c3e50;
   margin-bottom: 8px;
}

.why-content p {

  font-size: 14px;
  line-height: 1.6;
  color: #546e7a;
    margin: 0;

}

.about-cta    {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 80px 20px;
    text-align: center;
}

.about-cta h2 {
	   font-size: 40px;
  font-weight: 700;
    margin-bottom     :    20px;
}

.about-cta p {

    font-size :        18px;
  margin-bottom: 40px;
	opacity: 0.95;
     }@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 60px;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .about-section {
        padding: 40px;
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 36px;
    }

    .about-hero p {
        font-size: 16px;
    }

    .about-text-section h2 {
        font-size: 28px;
    }

    .about-section h2 {
        font-size: 28px;
    }

    .about-cta h2 {
        font-size: 30px;
    }

    .about-cta p {
        font-size: 16px;
    }

    .why-item {
        grid-template-columns: 50px 1fr;
        gap: 15px;
    }

    .why-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .why-content h4 {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 50px 15px;
    }

    .about-hero h1 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .about-hero p {
        font-size: 14px;
    }

    .about-main {
        padding: 50px 15px;
    }

    .about-content {
        gap: 25px;
        margin-bottom: 50px;
    }

    .about-text-section h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .about-text-section p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .about-section {
        background: #f8f9fa;
        padding: 25px;
        border-radius: 10px;
        margin-bottom: 40px;
    }

    .about-section h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .about-section p {
        font-size: 14px;
        margin-bottom: 15px;
    }

    .value-item {
        padding: 20px;
    }

    .value-item h3 {
        font-size: 16px;
    }

    .value-item p {
        font-size: 13px;
    }

    .why-item {
        grid-template-columns: 45px 1fr;
        gap: 12px;
    }

    .why-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .why-content h4 {
        font-size: 15px;
        margin-bottom: 5px;
    }

    .why-content p {
        font-size: 12px;
    }

    .about-cta {
        padding: 50px 15px;
    }

    .about-cta h2 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .about-cta p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }
}.policy-section {
  padding: 80px 2rem; 
   background: #f8f9fa;
}

.policy-container {
	max-width   :   800px;
    margin :      0 auto;
         text-align: left;
}

.policy-container h1 {
          font-size:2.8rem; 
	    color     :  #1a252f; 
		 margin-bottom: 2rem; 
	  font-weight: 700;
}

.policy-container h2 {
	font-size: 1.8rem;

	    color: #2c3e50;

	    margin-bottom: 1rem;

	    font-weight: 700;

	  margin-top: 2rem;
}

.policy-container p {
    color: #546e7a;
    margin-bottom: 1.5rem;
   line-height: 1.8;
  font-size: 1rem;
}

.policy-container strong {
   color: #2c3e50;
   font-weight: 600;
}

@media (max-width: 992px) {
    .policy-section {
        padding: 70px 1.5rem;
    }

    .policy-container h1 {
        font-size: 2.4rem;
    }

    .policy-container h2 {
        font-size: 1.6rem;
    }

    .policy-container p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 50px 1rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }
}