* {


  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: #f8f9fa;
}

.navbar {
  position: sticky;
  top: 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar-container     {
	padding: 1rem 2rem;
  display: flex;
   max-width  :  1200px;
  justify-content: space-between;
  margin: 0 auto;
   align-items     :      center;
}

.navbar-logo {
  display :flex;
     align-items: center;


}

.logo-img  {
  height: 74px;
    width: auto;
}

.burger-menu

{
	 border: none; 
    padding: 0.5rem; 
	 flex-direction :  column; 
  background: none; 
                    cursor: pointer; 
  display: none; 
  gap    :      5px;
}

.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(7px, -7px);
}



.nav-menu {
    gap: 2rem;
    list-style: none;
    display     :  flex;
}

.nav-link{
  text-decoration: none;
	 color: #2c3e50;
	 font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
   color: #3498db;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }
}.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
  padding: 6rem 2rem;
  display: grid;
	grid-template-columns: 1fr 1fr;
 gap: 4rem;
   align-items: center;
    max-width   :   1200px;
   margin: 0 auto;
}

.hero-content h1 {
	    font-size: 3rem;
  margin-bottom   :  1.5rem;
	 line-height: 1.2;


}

.hero-content p {
    font-size: 1.2rem;
   margin-bottom: 2rem;
   opacity: 0.95;
} 

.cta-btn  {
   display: inline-block;
    background-color: #ff6b6b;
    color: white;
  padding  :  0.75rem 2.5rem;
  border-radius: 50px;
	text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #ff6b6b;
}

.cta-btn:hover {
      background-color: transparent;
  transform: translateY(-2px);
} 

.hero-image img {
         width: 100%;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 4rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.section-header {
   text-align: center;
    margin-bottom:        3rem;
} 

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
	}

.section-header p	{

		font-size: 1.1rem;
    color: #7f8c8d;}

.services-overview {
   max-width: 1200px;
   margin :     4rem auto;
   padding: 0 2rem;}

.services-grid {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;}

.service-card {
  background: white;
               padding: 2rem;
   border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition:        all 0.3s ease;
   text-align: center;
}

.service-card:hover {
	  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
	

}

.service-icon-box     {
         margin-bottom: 1.5rem; 
	    height: 80px; 
	   display: flex; 
	  align-items: center; 
		justify-content: center;
}

.service-icon {

	  width: 60px;
       height :        60px;
     filter: brightness(0) invert(0.2);
     }

.service-card h3 {

        font-size: 1.3rem;
   margin-bottom: 1rem;
               color: #2c3e50;

}

.service-card p {

  color: #7f8c8d;
   line-height: 1.8;
}

.recruitment-process {
   background-color: #ecf0f1;
    padding: 4rem 2rem;
   margin: 4rem 0;
}



.process-content
	{
  max-width: 1200px;
   margin: 0 auto;
        display: grid;
 grid-template-columns:      1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.process-text h2  {
	     font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color   : #2c3e50;}

.process-list {
	margin-top: 2rem;
   list-style: none;
}  

.process-list li {
          padding: 0.8rem 0;
  padding-left: 2rem;
   position: relative;
   color: #2c3e50;
	 font-weight: 500;
}

.process-list li::before {
  content: "✓";
    position: absolute;
    left    : 0;
	 color: #27ae60;
    font-size: 1.3rem;
}

.process-image img		{
    width: 100%;
   border-radius :        10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);


}@media (max-width: 768px) {
    .process-content {
        grid-template-columns: 1fr;
    }
}.consultation-section {
  max-width   :    1200px;
    margin: 4rem auto;
   padding: 0 2rem;
}

.consultation-wrapper {
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
	align-items  :      center;
}

.consultation-image img {

	   width: 100%;
	border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
     }

.consultation-text h2 {
  font-size: 2.2rem;
   margin-bottom: 1.5rem;
   color: #2c3e50;
}

.consultation-text p {
    color: #7f8c8d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.benefits-list {
    display: flex;
    flex-direction: column;
      gap: 1.5rem;
	
}

.benefit-item {
   display    :       flex; 
	gap  :     1.5rem; 
  align-items: flex-start;
}

.benefit-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 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;
}

.benefit-item p {
       color: #2c3e50;

	    font-weight: 500;

	    padding-top: 0.5rem;
     }@media (max-width: 768px) {
    .consultation-wrapper {
        grid-template-columns: 1fr;
    }
}.staffing-solutions {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    padding: 4rem 2rem;
  margin: 4rem 0;
  color: white;
}

.staffing-content  {
    max-width: 1200px;
    margin: 0 auto;
}

.staffing-content h2
	{
    font-size   :      2.5rem;
   text-align: center;
  margin-bottom: 1rem;
}

.staffing-intro {
		 text-align: center;
          font-size  :   1.1rem;
  margin-bottom: 3rem;
   opacity :0.95;
}

.solutions-rows {

	  display    :grid;
    gap:    3rem;
	}

.solution-row {
   display :  grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
}

.solution-image img {

   width: 100%;
	  border-radius    :    10px;
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);


} 

.solution-text h3 {
    font-size: 1.8rem;
   margin-bottom: 1rem;
}

.solution-text p {
   opacity: 0.95;
  line-height: 1.8;
}@media (max-width: 768px) {
    .solution-row {
        grid-template-columns: 1fr;
    }

    .staffing-content h2 {
        font-size: 1.8rem;
    }
}.talent-acquisition{
  max-width  :      1200px;
  margin: 4rem auto;
  padding: 0 2rem;
}

.talent-wrapper	{
    gap: 4rem; 
               display: grid; 
    align-items: center; 
  grid-template-columns: 1fr 1fr;
     }

.talent-features {
	 display     :        grid;
    gap: 2rem;
   margin-top     :      2rem;
}

.feature {
  background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
               border-left: 4px solid #3498db;
}

.feature h4 {
  font-size: 1.1rem;
       margin-bottom: 0.5rem;
  color: #2c3e50;
}

.feature p {
   color  :        #7f8c8d;
	font-size: 0.95rem;
}

.talent-image img {
   width: 100%;
   border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}@media (max-width: 768px) {
    .talent-wrapper {
        grid-template-columns: 1fr;
    }
}.why-choose-us {
  background-color: #ecf0f1;
  padding     :  4rem 2rem;
   margin     :  4rem 0;
}

.why-content {
	   max-width: 1200px;
   margin: 0 auto;
     }

.why-content h2 {
    font-size: 2.5rem;
   text-align    :  center;
  margin-bottom: 3rem;
}

.why-grid {

    display  :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
 gap: 2rem;
}

.why-card {
      background: white;
  padding   :  2rem;
   border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.why-header {
    font-size: 1.3rem;
   font-weight: bold;
   color: #667eea;
    margin-bottom   :      1rem;
}

.why-card p {
   color: #7f8c8d;
    line-height     :     1.8;
}

.cta-section {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  padding    :      4rem 2rem;
	 text-align: center;
	 color   :   white;
}

.cta-wrapper {


    max-width   :    800px;
  margin  :      0 auto;
     }

.cta-wrapper h2 {
   font-size: 2.5rem;
	margin-bottom : 1rem; 

}



.cta-wrapper p {
   font-size: 1.1rem;
    margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-btn-large {
	display: inline-block;
   background-color: #fff;
   color: #11998e;
   padding: 1rem 3rem;
          border-radius  :     50px;
          text-decoration: none;
    font-weight: 600;
    font-size     :    1.1rem;
  transition: all 0.3s ease;
}

.cta-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact-section {
   padding   : 0 2rem;
       max-width: 1200px;
   margin: 4rem auto;
}

#contact  
  {

				 scroll-margin-top: 80px;


} 

.contact-section h2  
  {
   font-size: 2.5rem;
     text-align  :center;
  margin-bottom: 1rem;
}

.contact-section > p {

	  text-align: center;
  color: #7f8c8d;
  margin-bottom: 3rem;
    font-size: 1.1rem;

}

.contact-container {
   max-width: 700px;
     margin: 0 auto;
}

.contact-form {
    background: white;
   padding   :    2.5rem;
 border-radius:      10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}



.form-group {
  margin-bottom: 1.5rem;

} 

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
   padding   :     0.875rem;
   border :        1px solid #ddd;
   border-radius: 6px;
	 font-family     :     inherit;
  font-size: 1rem;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
    border-color :     #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form textarea

{
    resize: vertical;

	    min-height: 150px;
	}

.submit-btn {
     width: 100%;
	padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
       border: none;
 border-radius: 6px;
  font-size: 1rem;
   font-weight: 600;
  cursor :       pointer;
   transition: all 0.3s ease;
}

.submit-btn:hover {
     transform: translateY(-2px); 
	  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
     }


.footer {
   background-color: #2c3e50;
  color: white;
			padding: 3rem 2rem 1rem;
}

.footer-container {
  max-width: 1200px;
    margin: 0 auto;
  display    :  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap    : 2rem;
	 margin-bottom: 2rem;
}

.footer-brand
{


    display: flex;
    align-items: flex-start;
}

.footer-logo {
   height: 96px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   display: flex;
	flex-direction  :     column;
  gap     : 1.5rem;
}

.info-block h4 {
	font-size: 1rem; 
  margin-bottom   :  0.5rem; 
   color: #3498db;


}

.info-block p {
	color:        #bdc3c7;
          line-height: 1.8; 

}

.footer-links {
  display: grid;
	   grid-template-columns: 1fr 1fr;
		 gap: 2rem;
}

.footer-column h4 {
    font-size: 1rem; 
	   margin-bottom: 1rem; 
	   color:#3498db;
}

.footer-column ul {
				 list-style: none;
}

.footer-column li {
   margin-bottom: 0.5rem;
}


.footer-column a {
      color: #bdc3c7;
	text-decoration: none;
       transition   :   color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-bottom {
   border-top: 1px solid #34495e;
	 padding-top: 2rem;
   text-align: center;
	color: #95a5a6;
}@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}.cookies-alert {
  position: fixed;
  bottom: 20px;
  left: 20px;
	right: 20px;
   background: white;
  padding: 1.5rem;
   border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  z-index: 999;
  max-width     :      500px;
     display  :     none;
}

.cookies-alert.show {
   display: block;

      animation: slideUp 0.3s ease;
}@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.cookies-content h3 {
  margin-bottom   :      0.5rem;
    color  :      #2c3e50;
}

.cookies-content p {


    color: #7f8c8d;

   margin-bottom: 1rem;

  font-size: 0.95rem;

  line-height   :      1.6;
}

.cookies-buttons {
  display: flex;
    gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-btn {
    padding    :        0.6rem 1.2rem;
  border: none;
  border-radius: 6px;
    cursor: pointer;
  font-size: 0.9rem;
   font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background-color: #27ae60;
	    color: white;
}

.cookie-btn.accept:hover 
 {

	    background-color: #229954;


}

.cookie-btn.reject {
   background-color: #ecf0f1;
  color: #2c3e50;
}

.cookie-btn.reject:hover {
	 background-color: #bdc3c7;
}

.cookie-btn.settings {
	         background-color: #3498db;
   color: white;
}

.cookie-btn.settings:hover {

	   background-color:  #2980b9;
     }

.cookies-settings-modal {
   position: fixed;
  top :        0;
   left   :    0;
  right: 0;
   bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
          justify-content: center;
   z-index: 1001;
}

.cookies-settings-modal.show {
  display: flex;
}

.modal-content {
    background: white;
  -moz-border-radius: 8px;
  border-radius: 8px;
  -webkit-border-radius: 8px;
   max-width     :   500px;
    width: 90%;
}

.modal-header {
       padding: 1.5rem;
	border-bottom: 1px solid #ecf0f1;
  display  :  flex;
  justify-content: space-between;
          align-items: center;}

.modal-header h3 {
    margin: 0;
   color: #2c3e50;
}

.close-modal {
	background: none;
      border: none;
     font-size: 1.5rem;
     cursor: pointer;
   				 color: #7f8c8d;
}

.modal-body {
   padding: 1.5rem;
}

.cookie-option		{
	 margin-bottom: 1.5rem; 

}

.cookie-option label   {
	  display: flex;
  align-items:  center;
  cursor: pointer;
  font-weight: 500;
  color: #2c3e50;


}

.cookie-option input   {
   margin-right: 0.75rem;
  cursor: pointer;
}

.cookie-option p {
    margin :        0.5rem 0 0 1.75rem;
         color: #7f8c8d;
	 font-size: 0.9rem;
}

.modal-footer {
  padding: 1.5rem;
   border-top: 1px solid #ecf0f1;
}@media (max-width: 768px) {
    .cookies-alert {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }

    .cookies-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
    }
}.services-hero {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color    :  white;
    padding: 5rem 2rem;
  text-align: center;
}

.services-hero-content h1 {
    font-size: 2.8rem;
  margin-bottom    :        1rem;
  line-height: 1.2;
}

.services-hero-content p {
  font-size: 1.1rem;
   opacity: 0.95;
               max-width: 800px;
  margin:    0 auto;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }
}.services-container   {
    max-width: 1200px;
		 margin: 0 auto;
    padding: 0 2rem;
}

.services-detailed {
   padding: 4rem 0;
}



.service-detail-card     {
  margin-bottom: 4rem;
   background: white;
   border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.service-detail-header {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
   padding: 2rem;
    display: flex;
  justify-content: space-between;
    align-items: center;
}  

.service-detail-header h2     {
	font-size: 2rem;
    color: #2c3e50;
    margin: 0;


}

.service-tag     {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 0.5rem 1.2rem;
	border-radius: 20px;
   font-size: 0.85rem;
   font-weight: 600;
}

.service-detail-body {
  padding: 2.5rem;
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
               align-items: flex-start;
}

.service-detail-image img {
   width     : 100%;
       border-radius     :     8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
     }  

.service-detail-text h3 {
		font-size: 1.3rem;
    color :     #2c3e50;
   margin: 1.5rem 0 1rem;

}

.service-detail-text p {
      color: #7f8c8d;
      line-height: 1.8;
   margin-bottom: 1.5rem;


}

.service-points 
 {
	 background  : #f8f9fa;
         padding: 1.5rem;
    border-radius: 8px;
  margin: 1.5rem 0;
}

.service-points h3 {
  margin-top: 0;
}

.points-list	{
   list-style: none;
  margin     :    0;
	padding: 0;
}

.points-list li
{
    padding: 0.6rem 0;
   padding-left: 1.5rem;
    position: relative;
  color: #2c3e50;
}

.points-list li::before  {
  content: "▸";
    position: absolute;
                    left   :0;
   color    :        #3498db;
   font-size     :   1.2rem;

}

.service-pricing {
   background: #ecf0f1;
                  padding: 1.5rem;
     border-radius: 8px;
       margin-top: 1.5rem;
}

.service-pricing h3 {
       margin-top: 0;
    color: #2c3e50;}

.price-box {
	 border-left: 4px solid #3498db;
  background: white;
    border-radius: 6px;
  margin: 1rem 0;
	padding: 1.2rem;
   text-align: center;


}

.price-box.secondary {

	   border-left-color: #95a5a6;

}

.price-amount {
    display: block;
    font-size: 1.8rem;
        font-weight     : bold;
  color  :        #2c3e50;
  margin-bottom: 0.5rem;
}

.price-note {
         display: block;
    font-size: 0.9rem;
   color: #7f8c8d;
}  

.pricing-options {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 1rem;
      margin-top: 1rem;
}

.price-option {
               background: white;
      padding: 1.2rem;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
	border:        2px solid #ecf0f1;
  transition   :all 0.3s ease;
   display: flex;
 flex-direction: column;
  gap: 0.5rem;
}

.price-option:hover

{
    border-color: #3498db;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.15);
}

.option-label {
    font-weight: 600;
    color: #2c3e50;
}

.option-price {
  font-size: 1.5rem;
  font-weight: bold;
    color: #667eea;
}

.option-note {
      font-size:      0.85rem;
    color: #7f8c8d;
}@media (max-width: 968px) {
    .service-detail-body {
        grid-template-columns: 1fr;
    }

    .service-detail-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .service-detail-header h2 {
        font-size: 1.6rem;
    }
}.comparison-section {
   background: #f8f9fa;
   padding     :      4rem 2rem;
  margin: 4rem 0;
}

.comparison-container {
    max-width: 1200px;
  margin: 0 auto;
}

.comparison-section h2 {
   font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
   color     :#2c3e50;
}

.comparison-table-wrapper {
	 overflow-x    : auto;
	}

.comparison-table {
	width: 100%;
    border-collapse: collapse;
	 background: white;
   border-radius: 8px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.comparison-table thead{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.comparison-table th {


     padding :    1.5rem;
   text-align: left;
  font-weight: 600;
	}

.comparison-table td {
    padding: 1.2rem 1.5rem;
            border-bottom: 1px solid #ecf0f1;
   	color: #2c3e50;
}

.comparison-table tbody tr:hover {
   background: #f8f9fa;
}

.faq-section {
  max-width: 1200px;
      margin: 4rem auto;
    padding: 0 2rem;
	
}

.faq-section h2 {
 font-size: 2.2rem;
   text-align: center;
       margin-bottom: 3rem;
	color: #2c3e50;
}

.faq-grid {
    display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

	  gap: 2rem;
}

.faq-item {
  background: white;
  padding: 2rem;
    border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}


.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.faq-item h3 {
   font-size: 1.1rem;
   color: #667eea;
  margin-bottom: 1rem;
}

.faq-item p {
     line-height  :      1.8;
    margin: 0;
   color: #7f8c8d;
}

.cta-services {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   padding: 4rem 2rem;
	text-align: center;
  color: white;
}

.cta-services-content {
   max-width: 800px;

		margin: 0 auto;
}

.cta-services-content h2 {
	    font-size   :    2.5rem;
  margin-bottom    :   1rem;
	}

.cta-services-content p {
  font-size: 1.1rem;
   margin-bottom:       2rem;
   opacity: 0.95;
}

.cta-btn-service


{

	    display  :    inline-block; 
	    background-color: white; 
	      color: #f5576c; 
		padding: 1rem 3rem; 
	    border-radius: 50px; 
	    text-decoration: none; 
	    font-weight: 600; 
	      font-size: 1.1rem; 
	     transition: all 0.3s ease;
     }

.cta-btn-service:hover {
  transform: translateY(-3px);
     box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
	min-height: 70vh;
  display:        flex;
   align-items: center;
  justify-content    :      center;
  padding:        4rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
}

.thankyou-container {
  max-width: 700px;
    width: 100%;
   background: white;
  padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align     :  center;
}

.thankyou-icon {
	margin-bottom: 2rem;
}

.success-icon {
    width: 80px;
		height: 80px;
  filter: brightness(0) invert(0.2);
}

.thankyou-title {


   font-size: 2.5rem;
   color: #27ae60;
   margin-bottom  :     1.5rem;
     }

.thankyou-message {
   margin-bottom: 2.5rem;
}


.message-main {
       font-size: 1.2rem;
      color: #2c3e50;
   margin-bottom :     1rem;
	 font-weight: 600;
}

.message-secondary {
        color    :      #7f8c8d;
               line-height: 1.8;
    margin: 0;
}

.thankyou-details {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin   :      2.5rem 0;
    text-align:     left;

}

.thankyou-details h2 {
       text-align: center;
    color :       #2c3e50;
   margin-bottom: 1.5rem;
   font-size: 1.5rem;
	}

.details-grid {
       display  :      grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.5rem;
	}

.detail-step {
	text-align    :       center;
}

.step-number {
   width  :   45px;
		height    :  45px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color: white;
    border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content   :      center;
    font-size: 1.5rem;
  font-weight: bold;
  margin: 0 auto 0.75rem;
}

.detail-step h3 {
    margin-bottom: 0.5rem;
     font-size: 1rem;
       color     :     #2c3e50;
}

.detail-step p {
					font-size: 0.85rem;
 color: #7f8c8d;
	line-height    :        1.6;
   margin: 0;
}

.thankyou-cta {
    margin: 2.5rem 0; 
	
}

.cta-box {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
		 padding: 2rem;
		border-radius: 8px;
	  border-left   :4px solid #667eea;
}



.cta-box h3 {

   color: #2c3e50;

	    margin-bottom: 0.5rem; 

	}

.cta-box p {
  color     :    #7f8c8d;
   margin-bottom :    1.5rem;
}

.cta-buttons  
  {
   display: flex; 
	  gap    :  1rem; 
	    justify-content: center; 
	    flex-wrap: wrap;
	
}

.btn-primary  
  {
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 0.75rem 1.5rem;
    border-radius: 6px;
   text-decoration: none;
   font-weight: 600;
   transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(102, 126, 234, 0.3);
}

.btn-secondary 
 {
    display: inline-block;
	background: white;
  color: #667eea;
    padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
   font-weight: 600;
        border: 2px solid #667eea;
 transition: all 0.3s ease;
}

.btn-secondary:hover {
 background: #667eea;
    color: white;
  transform: translateY(-2px);
}

.thankyou-contact {

        margin:     2.5rem 0;


}

.thankyou-contact h3{
	color:      #2c3e50;
   font-size: 1.2rem;
  margin-bottom: 1rem;
}

.contact-info-box
	{
   border-radius: 8px;
   padding     : 1.5rem;
  background: #f8f9fa;
}

.contact-line {
    margin: 0.75rem 0;
   color: #2c3e50;
}

.contact-line strong {
  color: #667eea;
}

.contact-note  
  {
	font-size:     0.85rem;
  color: #7f8c8d;
   margin-top: 1rem;
}

.thankyou-trust {
  border-top: 1px solid #ecf0f1;
   padding-top: 1.5rem;
}

.trust-text {
  color: #7f8c8d;
     font-size: 0.9rem;
	 margin: 0;
    line-height: 1.6;
}

.next-steps-section
{
    background: #f8f9fa;
                    padding: 4rem 2rem;
}

.next-steps-container {
          max-width     :      1200px;
		margin: 0 auto;
}

.next-steps-section h2 {
  font-size    :     2.2rem;

	  text-align     :    center;

	   margin-bottom: 3rem;

	    color: #2c3e50;
}

.benefits-showcase {
	 display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

   gap: 2rem;
}


.benefit-card {
    background    :  white;
  padding     :        2rem;
    border-radius: 8px;
    text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

}

.benefit-icon-wrapper {
  margin-bottom: 1.5rem;

   height: 70px;

    display :     flex;

    align-items: center;

  justify-content: center;
}

.benefit-icon {
    width: 50px;
    height: 50px;
  filter: brightness(0) invert(0.25);
}

.benefit-card h3   {

	         font-size:       1.2rem;
  color: #2c3e50;
    margin-bottom: 0.75rem;}

.benefit-card p {
   color: #7f8c8d;
  line-height: 1.6;
    margin   :   0;
}  @media (max-width: 768px) {
    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .details-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .pricing-options {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.75rem;
    }
}.policySection {
   padding: 80px 2rem;
    background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policyContainer {
	  max-width: 800px;
	   margin: 0 auto;
	  text-align: left;


}

.policyContainer h1 {
    font-size:   2.8rem;
 color: #2c3e50;
   margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.policyContainer h2


{
    font-size: 2rem;
   color: #2c3e50;
  margin-top: 2.5rem;
   margin-bottom: 1.5rem;
  font-weight: 700;
    border-bottom: 3px solid #667eea;
                    padding-bottom: 0.75rem;
}

.policyContainer h3 {
  font-size: 1.3rem;
  color: #34495e;
 margin-top: 1.8rem;
   margin-bottom: 1rem;
    font-weight: 600;
}

.policyContainer p {
    color: #7f8c8d;
      margin-bottom: 1.5rem;
     line-height: 1.8;
       font-size: 1.05rem;
    text-align     :   justify; 

}

.policyContainer strong {
	color: #2c3e50;
        font-weight   :        600;

}



.policyContainer ul {
    list-style: none;
  padding  :     0;
   margin: 1.5rem 0;
}

.policyContainer li {
   padding: 0.75rem 0 0.75rem 1.75rem;
	 position: relative;
    color: #7f8c8d;
  line-height: 1.7;
}

.policyContainer li::before


{
  content: "▪";
  position: absolute;
   left: 0;
  color:   #667eea;
      font-size: 1.2rem;
}

.policyContainer em {
	color: #34495e;
  font-style: italic;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .policyContainer li {
        padding: 0.6rem 0 0.6rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        min-height: auto;
    }

    .policyContainer h1 {
        font-size: 1.7rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
    }

    .policyContainer h3 {
        font-size: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}