* {


    margin: 0;
  padding: 0;
	box-sizing: border-box;

}

html {
   scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
	line-height  : 1.6;
  color: #2c3e50;
    background-color: #f8f9fa;
}

.container {
  max-width: 1200px;
      margin: 0 auto;
    padding:        0 20px;
}

.navigation-main {
	  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

  padding  :    1rem 0;

	 position: sticky;

       top: 0;

   z-index: 1000;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);


}

.nav-container {
  max-width: 1200px;
  padding: 0 20px;
      justify-content: space-between;
    margin: 0 auto;
  align-items     :     center;
 display: flex;
}

.nav-logo-section {

	    display: flex;
    align-items: center;
	}  

.nav-logo     {
   height :   50px;
  object-fit  :   contain;
}

.nav-links-wrapper		{


  display: flex;
    gap: 2.5rem;}

.nav-link{
       transition: color 0.3s ease;
	    font-weight :       500;
		font-size  :       1rem;
	   color: #ecf0f1;
	  position: relative;
	    text-decoration: none;
}

.nav-link:hover


{
	 color: #3498db;
}


.nav-link::after  {
  content: '';
    position    :    absolute;
   bottom: -5px;
   left: 0;
   width: 0;
    height   :        2px;
   background: #3498db;
	-o-transition: width 0.3s ease;
	 transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.burger-button {

	   display     :     none;
   background: transparent;
       border: none;
    cursor:   pointer;
  padding : 0.5rem;
}

.burger-button img {
	width: 28px;
   height: 28px;
    stroke: #ecf0f1;
  filter: invert(1);
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 20px;
  text-align: center;
    position: relative;
   overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
   top: -50%;
    right: -10%;
  width: 600px;
	 height: 600px;
  background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
   pointer-events: none;
}

.hero-content {
  max-width: 800px;
    margin: 0 auto;
  position: relative;
                    z-index: 1;
}

.hero-section h1 {
    font-size: 3.5rem;
   margin-bottom: 1rem;
	font-weight: 700;
        line-height: 1.2;
}



.hero-subtitle {
        font-size : 1.25rem;
   margin-bottom: 2.5rem;
  font-weight :  300;
   opacity     :    0.95;
}

.cta-button


{
   display: inline-block;
       background    : white;
   color: #667eea;
  padding: 15px 40px;
    border-radius: 50px;
    text-decoration:       none;
                    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button:hover{
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
   background: #ecf0f1; 

}

.problems-section {
    padding: 80px 20px; 
	   background :       #ffffff;
}

.problems-section h2 {
    font-size: 2.5rem;
	margin-bottom: 3rem;
    text-align: center;
  color: #1a1a2e;
}

.problems-grid {
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

	  gap: 2rem;
}

.problem-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 2.5rem;
	 border-radius: 12px;
  position    :        relative;
    overflow: hidden;
               transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.problem-card:hover {

	  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);



}

.problem-card::before     {
  content: '';
	position: absolute;
   top :    0;
   left: 0;
  right: 0;
   height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
}

.problem-number {
    font-size: 3.5rem;
   font-weight  :700;
   color: #667eea;
  opacity: 0.2;
   position:absolute;
   top: 10px;
    right   :    20px;
}

.problem-card h3 {
	    font-size  :  1.3rem;
  margin-bottom: 1rem;
  color: #1a1a2e;
  position    :        relative;
    z-index: 1;
	}

.problem-card p {

  color: #34495e;
  position: relative;
	 z-index: 1;
   font-size: 0.95rem;
  line-height: 1.7;
	}

.approach-section {
   padding: 80px 20px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  color: white; 

}

.approach-section h2 {
	font-size: 2.5rem;
   margin-bottom: 3rem;
    text-align: center;
	color: white;
}

.approach-grid {
  display     :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap:        2.5rem;
}

.approach-item	{
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
   padding: 2rem;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.approach-item:hover


{

  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
	}

.approach-image {
	 width  :      100%;
    height:    250px;
  object-fit     :       cover;
  border-radius: 8px;
	margin-bottom: 1.5rem;
}

.approach-item h3 {
  font-size: 1.5rem;
         margin-bottom: 1rem;
  font-weight  :600;
}

.approach-item p {
  font-size: 0.95rem;
  line-height: 1.7;
  opacity: 0.95;
}

.services-preview-section {
    padding  :  80px 20px; 
   background: #ffffff;
}

.services-preview-section h2  
  {
   font-size     :    2.5rem;
               margin-bottom    :      3rem;
   text-align: center;
      color: #1a1a2e;
}

.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
}

.service-card {
  background: white;
    border   : 2px solid #e8e8e8;
    padding: 2rem;
    border-radius: 12px;
   text-align: center;
       transition: all 0.3s ease;
   -webkit-transition: all 0.3s ease;
               position: relative;
}

.service-card:hover {
	    border-color: #667eea;
  box-shadow: 0 10px 35px rgba(102, 126, 234, 0.15);
  transform: translateY(-8px);
     }

.service-icon {
	    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
   align-items: center;
    justify-content: center;
     }


.service-icon img{
   width: 100%;
  height: 100%;
   object-fit: contain;
        stroke: #667eea;
    fill: none;
   stroke-width: 2;
}

.service-card h3 {
    font-size: 1.3rem;

   margin-bottom: 1rem;

   color: #1a1a2e;
}

.service-card p {
	   color: #34495e;
	font-size: 0.95rem;
  margin-bottom     :    1.5rem;
  line-height: 1.6;
     } 

.service-price {
   display: block;
    font-weight: 600;
   color: #667eea;
   font-size: 1.1rem;
}


.cta-section {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color    :white;
   padding: 60px 20px;
    text-align: center;
}

.cta-content h2 {
  font-size     :     2.2rem;
	margin-bottom: 1rem;
}

.cta-content p {
  font-size    :      1.1rem;
   margin-bottom: 2rem;
  opacity: 0.95;
	max-width: 600px;
   margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
  display: inline-block;
  background: white;
         color: #11998e;
    padding     :       16px 45px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
  font-size: 1.05rem;
   transition  :        all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
   background: #ecf0f1;
    color: #38ef7d;
}

.contact-section {
  padding: 80px 20px;
     background: #f8f9fa;
}

.contact-section h2 {

	    font-size  : 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
   color: #1a1a2e;


}

.contact-wrapper
{

  display: grid;
	 grid-template-columns: 1fr 1fr;
  gap: 3rem;
    max-width: 1000px;
  margin: 0 auto;


}

.contact-form {
   background: white;
  padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
       margin-bottom: 1.5rem;}

.form-group label {
  margin-bottom: 0.5rem;
   color   :     #1a1a2e;
    display: block;
   font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
       width  :  100%;
  padding: 12px 15px;
   border: 2px solid #e8e8e8;
   border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
    transition     :border-color 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 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color   :        white;
   border   :    none;
    border-radius: 8px;
         font-weight     :   600;
  font-size: 1rem;
   cursor: pointer;
    transition: all 0.3s ease;


}

.form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.contact-info {
       background: white;
    padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);}

.contact-info h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
    color: #1a1a2e;
}

.info-block     {
  margin-bottom: 2rem;
}

.info-block h4 {
	color :      #667eea;
   margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-block p {
    color: #34495e;
   line-height: 1.7;
}

.footer-main {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: #ecf0f1;
    padding     :        3rem 20px 1.5rem;
	
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-logo-section {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
        height: 45px;
  object-fit :     contain;
}

.footer-links-group {

    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 2.5rem;
   margin-bottom: 2rem;
     }

.footer-column h4 {
	 color: white;
   margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
  -webkit-transition    :  color 0.3s ease;
    color: #bdc3c7;
    text-decoration: none;
  margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #3498db;
}

.footer-column p {
	color: #bdc3c7;
   font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0.5rem; 
	
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding-top: 1.5rem;
    text-align     :     center;
   color: #95a5a6;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .nav-links-wrapper {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }

    .nav-links-wrapper.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link::after {
        display: none;
    }

    .burger-button {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .problems-section h2,
    .approach-section h2,
    .services-preview-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .problems-grid,
    .approach-grid,
    .services-preview-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 40px 20px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .footer-links-group {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 60px 20px;
    }

    .hero-section h1 {
        font-size: 1.6rem;
    }

    .problems-section,
    .approach-section,
    .services-preview-section,
    .contact-section {
        padding: 50px 20px;
    }

    .service-card,
    .problem-card,
    .approach-item {
        padding: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
   color:      white;
  padding: 80px 20px;
   text-align: center;
    position: relative;
    overflow: hidden;


}

.services-hero::before {


  content: '';
	 position: absolute;
               top   :    -50%;
   right: -10%;
   width: 500px;
   height: 500px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
   pointer-events: none; 



}


.services-hero-content {
   max-width: 800px;
	   margin: 0 auto;
	  position: relative;
		z-index :  1;
}

.services-hero h1	{
   font-size: 3rem; 
	  margin-bottom    :     1rem; 
		font-weight: 700;
}

.services-hero-subtitle {
      font-size: 1.2rem;
	opacity: 0.95;
  font-weight: 300;
     }  

.services-main {
    padding: 80px 20px;
	background: #ffffff; 
	
}

.services-main h2 {

  font-size: 2.5rem;
	 margin-bottom: 2.5rem;
   text-align: center;
    color   : #1a1a2e;




}



.services-tabs {
  display: flex;
      justify-content: center;
	 gap: 1rem;
   margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-button {
    padding: 10px 25px;
    border :        2px solid #e8e8e8;
  background: white;
   color    :       #34495e;
	 border-radius    :     25px;
  cursor   :       pointer;
   font-weight    :     500;
					font-size: 0.95rem;
    transition: all 0.3s ease;
}

.tab-button:hover {
    border-color: #1abc9c;
    color: #1abc9c;
}

.tab-button.active {
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
   color: white;
  border-color:     #1abc9c;
}

.services-grid  
  {
  display: grid;
	  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
	  gap: 2.5rem;
}  

.service-item {
    background: white;
  border   :1px solid #e8e8e8;
   border-radius  :12px;
		overflow     :        hidden;
      transition: all 0.3s ease;
               display: flex;
    flex-direction: column;
}

.service-item:hover {
   border-color: #1abc9c;
  box-shadow: 0 15px 40px rgba(26, 188, 156, 0.15);
  transform: translateY(-8px);
}

.service-item.hidden {
    display: none;
}

.service-header {
	  display: flex;
    justify-content: space-between;
   padding: 1.5rem 1.5rem 0 1.5rem;
  align-items: flex-start;

}

.service-header h3 
 {
  font-size: 1.4rem;
	 color:        #1a1a2e;
	margin: 0;
                    flex: 1;
}

.service-category-badge {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color:     white;
          padding    :  4px 12px;
   border-radius: 20px;
   font-size    :       0.75rem;
    font-weight: 600;
    white-space  :    nowrap;
   margin-left: 1rem;
	}

.service-body {
   padding: 1.5rem;
	 flex-grow: 1;
    display: flex;
  flex-direction: column;
}

.service-image {


  width: 100%;
	 height: 220px;
	 object-fit: cover;
    border-radius: 8px;
     margin-bottom: 1.5rem; 

	}

.service-description {
    color: #34495e;
    font-size  :        0.95rem;
 line-height: 1.6;
   margin-bottom: 1.5rem;
}

.service-features {
  display: flex;
        flex-direction: column;
  gap: 0.8rem;
	margin-bottom: 1.5rem;
   flex-grow    :    1;
}

.feature {
	   display :    flex;
        gap: 0.8rem;
  color: #34495e;
   font-size: 0.9rem;
                    line-height: 1.5;


}

.feature-icon {


	 color   : #1abc9c;
	 font-weight: bold;
  flex-shrink   :0;}

.service-footer {
  border-top: 1px solid #e8e8e8;
    padding-top: 1rem;
   display  :     flex;
  align-items: baseline;
  gap: 0.5rem;
}

.service-price {
   	font-size: 1.8rem;
          font-weight: 700;
  color   :  #1abc9c;
	}

.service-unit {
     color: #95a5a6;
    font-size : 0.9rem;


}

.services-comparison {
   padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.services-comparison h2	{
  font-size: 2.5rem;
    margin-bottom: 3rem;
         text-align :      center;
	color: #1a1a2e;
}

.comparison-table-wrapper {
  overflow-x   :auto;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.comparison-table {
   width: 100%;

	   border-collapse: collapse;

	   background    :       white;
}

.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;
    font-size: 0.95rem;
}

.comparison-table td {
               padding: 1.2rem 1.5rem;
  border-bottom: 1px solid #e8e8e8;
    color: #34495e;


}

.comparison-table tbody tr:hover {
      background: #f8f9fa;
	
}

.comparison-table tbody tr:last-child td {


  border-bottom: none;


}

.services-methodology {
       padding: 80px 20px; 
     background: white;
}

.services-methodology h2 {
    color: #1a1a2e;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;


}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap   :      2.5rem;
}

.methodology-step {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 2.5rem;
               border-radius     :  12px;
	position: relative;
   text-align: center;
       transition: all 0.3s ease;
}

.methodology-step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(240, 147, 251, 0.3);
}

.step-number {
  font-size    :        3.5rem;
    font-weight: 700;
   opacity: 0.2;
  position: absolute;
   top: 10px;
    right: 20px;
}

.methodology-step h3 {
	position: relative;
  font-size   :   1.4rem;
   z-index: 1;
	 margin-bottom: 1rem;
}

.methodology-step p {
  font-size    :  0.95rem;
          line-height: 1.6;
  opacity: 0.95;
  position: relative;
  z-index: 1;
}

.services-cta    {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 20px;
	text-align: center;
}

.cta-services-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-services-content p  
  {
     font-size: 1.1rem;
	margin-bottom: 2rem;
   opacity: 0.95;
}

.cta-button-back {
    display: inline-block;
    background: white;
  color: #667eea;
	padding: 14px 40px;
	 border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-button-back:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
    background: #ecf0f1;
}



.thankyou-section
	{
    min-height: 100vh;
   display: flex;
    align-items: center;
   justify-content: center;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    padding  :     40px 20px;
	}

.thankyou-container {
    background: white;
  border-radius: 16px;
    padding: 3rem;
  max-width: 600px;
   width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.thankyou-icon {
  width: 80px;
    height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
   border-radius: 50%;
	display: flex;
   align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(17, 153, 142, 0.3);


}

.thankyou-icon img {
    width: 45px;
    height: 45px;
  filter: brightness(0) invert(1);
}

.thankyou-section h1		{
	 font-size: 2.5rem;
    color: #1a1a2e;
   margin-bottom: 1rem;
}

.thankyou-message {
   color: #34495e;
   font-size: 1.1rem;
   line-height: 1.7;
  margin-bottom: 2.5rem;
}

.thankyou-details {
  display: grid;
        grid-template-columns: 1fr 1fr;
    gap: 2rem;
  margin-bottom: 2.5rem;
    text-align: left;
}

.detail-block {
 border-radius: 12px;
	 padding: 1.5rem;
  border: 1px solid #e8e8e8;
  background: #f8f9fa;
}

.detail-block h3 {

	    color: #1a1a2e;
   margin-bottom: 1rem;
         font-size: 1.1rem;
     }

.detail-list {

  list-style: none;
        color: #34495e;
  font-size: 0.95rem;

}

.detail-list li {
   padding    : 0.5rem 0;
  line-height    :        1.6;
}

.detail-list li::before {
  content: '✓ ';
    color  :#11998e;
  font-weight: bold;
 margin-right: 0.5rem;
}

.info-block {
   background: #f0f9f7;
        border-color: #11998e;
}

.info-block p {

	   color: #34495e;
    margin-bottom: 1rem;
    font-size     :    0.95rem;
	}

.contact-details {
    flex-direction: column;
  display :    flex;
   gap: 0.8rem;
}

.contact-item {
	display    :    flex;
  flex-direction: column;
	 gap: 0.3rem;
}

.contact-item strong {

  color: #1a1a2e;
   font-size: 0.9rem;
}

.contact-item span {
   color: #34495e;
   font-size: 0.9rem;
}

.thankyou-cta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom     :       2rem;
}

.thankyou-button {
   display     :   block;
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color :  white;
    padding:      14px 30px;
         border-radius: 8px;
  text-decoration: none;
 font-weight   :       600;
    transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(17, 153, 142, 0.25);
}

.thankyou-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(17, 153, 142, 0.35);
}

.thankyou-button-secondary {


   display: block;
		 background: #e8e8e8;
  color: #1a1a2e;
  padding: 14px 30px;
    border-radius: 8px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
    text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
   -moz-transition: all 0.3s ease;
     }

.thankyou-button-secondary:hover {
	background: #d0d0d0;
  transform: translateY(-2px);
}

.thankyou-note {
    padding-top: 1.5rem; 
   border-top: 1px solid #e8e8e8; 
   color: #95a5a6; 
  font-size: 0.9rem; 
   font-style: italic;

}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }

    .services-main h2,
    .services-comparison h2,
    .services-methodology h2 {
        font-size: 1.8rem;
    }

    .services-tabs {
        gap: 0.5rem;
    }

    .tab-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-details {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-section h1 {
        font-size: 1.8rem;
    }

    .thankyou-cta {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 50px 20px;
    }

    .services-main,
    .services-comparison,
    .services-methodology,
    .services-cta {
        padding: 40px 20px;
    }

    .service-item {
        padding: 0;
    }

    .comparison-table {
        font-size: 0.8rem;
    }

    .thankyou-icon {
        width: 60px;
        height: 60px;
    }

    .thankyou-icon img {
        width: 35px;
        height: 35px;
    }
}.policy-section
{
  padding  :      80px 2rem;

	 background: #f8f9fa;

  min-height: calc(100vh - 200px);
}

.policy-container {
       max-width: 900px;
	margin: 0 auto;
	text-align: left;
   background: white;
   padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.policy-container h1 {


    font-size: 2.8rem;
        color: #1a1a2e;
   margin-bottom: 2rem;
  font-weight: 700;
  border-bottom: 3px solid linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding-bottom: 1rem;

}



.policy-container h2 {
           font-size: 1.8rem;
		color: #2c3e50;
   margin-top: 2.5rem;
    margin-bottom: 1rem;
  font-weight: 600;
	padding-bottom     :  0.5rem;
   border-left: 4px solid #667eea;
    padding-left     :     1rem;
}

.policy-container p {
	         color    :    #34495e;
    margin-bottom :    1.5rem;
     line-height: 1.8;
    font-size: 1rem;
   text-align: justify;
}

.policy-container p:first-letter 
 {

	    margin-left: 2rem;


}

.policy-container h2 + p {

	  margin-top: 1rem;
     }@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container {
        padding: 2rem;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
        padding-left: 0.8rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.8rem;
    }

    .policy-container {
        padding: 1.5rem;
        margin: 0 auto;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
        border-left-width: 3px;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .policy-container p:first-letter {
        margin-left: 1rem;
    }
}

@media print {
    .policy-section {
        background: white;
        padding: 0;
    }

    .policy-container {
        box-shadow: none;
        padding: 0;
        border-radius: 0;
    }

    .policy-container h1,
    .policy-container h2 {
        page-break-after: avoid;
    }

    .policy-container p {
        text-align: left;
        orphans: 3;
        widows: 3;
    }
}