* {
                    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;


}

/* Hack for old browsers */

.header-container {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
   top: 0;
   z-index   :       1000;
}

.navbar {
    margin: 0 auto;
  max-width: 1200px;
   padding: 0 20px;
}

.nav-wrapper    {
                    display: flex;
   justify-content: space-between;
   align-items: center;
		padding   :   15px 0;
          min-height: 70px;
}

.logo-section {
  flex: 0 0 auto;
}

.logo-img  
  {
   height     :    40px;
   width: auto;
	display: block;
  filter: brightness(0) invert(1);
}

.burger-menu {

	  display: none;
   background: none;
  border: none;
    cursor: pointer;
     padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.burger-line {
  width: 25px;
    height: 3px;
   background-color: #2c3e50;
  border-radius: 2px;
   transition: all 0.3s ease;


}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .burger-line:nth-child(2) {
   opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}  

.nav-menu {
  gap: 40px;
    list-style: none;
   display    :    flex;
}

.nav-link {
  text-decoration: none;
   color: #2c3e50;
    font-weight: 500;
   font-size: 15px;
    transition: color 0.3s ease;
   position: relative; 
	
}

.nav-link::after {
  content: '';
   position: absolute;
   bottom: -5px;
  left  :      0;
   width : 0;
   height: 2px;
  background: linear-gradient(90deg, #667eea, #764ba2);
   transition: width 0.3s ease;
}

.nav-link:hover::after {
   width: 100%;
}

.hero-section {

	  display : grid;
	 grid-template-columns: 1fr 1fr;
  gap    : 50px;
    align-items: center;
   max-width: 1200px;
        margin :   80px auto 60px;
	 padding: 0 20px;


}

.hero-content {
     display  :flex;
  flex-direction: column;
   gap  :   24px;
}

/* Custom modifications */


	/* State modifiers */

.hero-title{
       font-size: 48px;
               font-weight: 700;
        line-height: 1.2;
   color: #1a252f;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  background-clip  :    text;

     }

.hero-subtitle {

	 font-size: 18px;
    color: #5a6c7d;
    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;
	font-size: 15px;
			transition: all 0.3s ease;
 width: fit-content;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.hero-image {
   position: relative; 
  border-radius :12px; 
  overflow: hidden; 
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero-image img {
                    width: 100%;
    height: auto;
   display: block;
}

.services-preview {
    max-width: 1200px;
    margin: 100px auto 80px;
				 padding: 0 20px;
}

/* Minified version */


	/* Custom modifications */

.section-title {
  font-size: 42px;

    font-weight: 700;

    text-align    :  center;

   margin-bottom: 50px;

   color: #1a252f; 
	
}

/* Third-party styles */

.services-grid {
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
         gap :30px;
	}

.service-card {


   background: white;
    padding: 32px 24px;
       border-radius: 12px;
   text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   border: 2px solid transparent;

	}  

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.service-icon {
          height: 60px;
  width: 60px;
   margin: 0 auto 20px;
  display: flex;
    align-items: center;
   justify-content: center;
  background: linear-gradient(135deg, #667eea15, #764ba215);
	border-radius: 50%;
}

.service-icon img {
    width: 32px;
    height   :     32px;
   stroke: #667eea;
         fill  :       none;
}

.service-card h3 {
	 font-size: 20px;
   font-weight: 600;
   margin-bottom :    12px;
      color  :  #2c3e50;
}  

.service-card p {

     font-size: 14px;
    color: #6b7c8f;
    line-height    :      1.7;


}

/* Debug styles */


.transformation-section {
  max-width   :  1200px;

                    margin: 100px auto 80px;

	padding: 0 20px;
}

.transformation-content {
  display: grid;
   grid-template-columns   :     1fr 1fr;
  gap: 50px;
    align-items :       center;
}

.transform-image
	{
   border-radius  :      12px;
   overflow   :     hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);

}

.transform-image img  {
    width: 100%;
	height: auto;
 display: block;
}

.transform-text h3 {
   font-size: 32px;
   font-weight: 700;
       margin-bottom: 20px;
    color: #1a252f;
}

.transform-text p {
    color: #5a6c7d;
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.benefits-list{
          list-style:   none;
	    display: flex;
		flex-direction: column;
	   gap    :    16px;
} 

.benefits-list li {
   position: relative;
  font-size: 15px;
  color :        #2c3e50;
    padding-left: 28px;
}

.benefits-list li::before {
  content: '✓';
	position: absolute;
  left: 0;
  color: #667eea;
    font-weight: bold;
   font-size: 18px;
}

.expertise-showcase

{
  max-width: 1200px;

	  margin    :       100px auto 80px;

	  padding: 0 20px;
}

.expertise-grid {
	display    :        grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.expertise-item {
	background: white;
   border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.expertise-item:hover {

  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
     }

.expertise-item img {
   width     :    100%;
	height: 240px;
    object-fit: cover;
  display: block;
}

.expertise-item h3		{
  font-size: 20px;
 font-weight: 600;
         padding   :       20px 20px 12px;
      color: #2c3e50;
}

.expertise-item p {

		 font-size: 14px;
  color: #6b7c8f;
  padding: 0 20px 20px;
  line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   margin: 100px 0 80px;
    padding: 60px 20px;
    text-align: center;
}

.cta-content {
   max-width: 600px;
   margin: 0 auto;
}

.cta-content h2 {
   font-size: 36px;
    font-weight     : 700;
   color: white;
  margin-bottom: 16px;
}

.cta-content p  
  {
    font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
   line-height: 1.8; 
	
}

/* Performance critical */

.cta-button-primary {
	  display: inline-block;
    padding: 14px 32px;
  background: white;
    color: #667eea;
   text-decoration   :        none;
   border-radius: 8px;
  font-weight: 600;
    font-size   :    15px;
	transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	}

.cta-button-primary:hover {


  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);

}

.contact-section  {
    max-width: 700px;
      margin: 80px auto;
    padding     : 0 20px;
}

.contact-wrapper {
  background: white;
  padding: 40px;
    border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.contact-form {
   gap    :24px;
    display: flex;
  flex-direction     :      column;
}

.form-group {
    display: flex;
    flex-direction:   column;
   gap: 8px;
}

.form-group label {
	font-weight    : 600;
   color: #2c3e50;
    font-size: 14px;
}


.form-group input,
.form-group select,
.form-group textarea {
	padding: 12px 14px;
    border: 1px solid #e0e6ed;
    border-radius: 8px;
	font-family: inherit;
		 font-size: 14px;
   transition: all 0.3s ease;
    color: #2c3e50;
	
}

.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-group textarea {


   resize: vertical;
    min-height: 120px;
}

.submit-button {
    padding: 12px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 color: white;
   border: none;
   border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
	cursor: pointer;
  transition    :        all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.submit-button:hover {
  transform: translateY(-2px);

	  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4); 

}

.footer-section {
   background :      #1a252f;
   color     :   white;
    padding: 60px 20px 30px;
  margin-top: 100px;
}

.footer-content {
  max-width: 1200px;
        margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
               margin-bottom  :        40px;
}

.footer-block h3 {

	 font-size   : 16px;
    font-weight: 600;
    margin-bottom: 16px;
   color :    white;
     }
/* Framework override */


/* Third-party styles */

/* Colors and backgrounds */

.footer-logo {
  height: 40px;
				 width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer-links {
  list-style: none;
    display: flex;
   flex-direction: column;
   gap: 12px;

}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
	 font-size: 14px;
          transition:      color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}
/* Hack for old browsers */


/* Production ready */


.footer-address {
	   font-size :    14px;
  color: rgba(255, 255, 255, 0.7);
  line-height:    1.8;
  margin-bottom: 12px;
     }

.footer-phone		{
   font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
  max-width :    1200px;
	margin: 0 auto;
    padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
	text-align: center;
   font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-item {
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-link {
        display: block;
        padding: 16px 20px;
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 30px;
        margin: 40px auto;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .transformation-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .services-grid {
        gap: 20px;
    }

    .contact-wrapper {
        padding: 24px;
    }

    .cta-content h2 {
        font-size: 24px;
    }

    .footer-content {
        gap: 30px;
    }
}@media (max-width: 480px) {
    .hero-title {
        font-size: 24px;
    }

    .section-title {
        font-size: 22px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .cta-button, .cta-button-primary {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}.services-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 80px 20px;
  text-align: center;
   color   :        white;
}

.services-header-content h1  
  {
  font-weight: 700;

	    font-size: 48px;

	   margin-bottom: 16px;
}

.services-header-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto;
}

.service-detail-section {
               max-width: 1200px;
    margin: 80px auto;
   padding: 0 20px;
}

.service-detail-container {
    display: flex;
  flex-direction: column;
   gap: 80px;
}

.service-detail-item {
   display: grid;
  grid-template-columns   :     1fr 1fr;
  gap: 50px;
    align-items :        center;
}

.service-detail-item.reversed {
       grid-template-columns:     1fr 1fr;
    direction: rtl;
     }

.service-detail-item.reversed > * {
  direction: ltr;
}



.detail-image {
    border-radius: 12px;
       overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.detail-image img {
    height     :auto;
    width: 100%;
   display: block;
}

.detail-content h2     {
         font-size   :       32px;
   font-weight: 700;
  margin-bottom: 20px;
   color: #1a252f;
}


.detail-content p {
    font-size: 16px;
    color: #5a6c7d;
	 line-height: 1.8;
   margin-bottom :      24px;
}

.detail-content h3 {
  font-size    :   18px;
   font-weight: 600;
       color: #2c3e50;
          margin-bottom: 16px;
}

.service-features {
       list-style    :        none;
  display: flex;
  flex-direction   : column;
    gap: 12px;
  margin-bottom: 24px;
     }

.service-features li {
  font-size: 15px;
   color  :  #2c3e50;
   padding-left: 28px;
  position: relative;
} 

.service-features li::before {
     content: '→';
   position: absolute;
  left  :   0;
   color: #667eea;
      font-weight :  bold;
}

.service-highlight {
     background: linear-gradient(135deg, #667eea15, #764ba215);
    padding: 16px 20px;
  border-left: 4px solid #667eea;
    border-radius: 6px;
    font-weight: 500;
  color: #2c3e50 !important;
     }

.pricing-section {
      max-width: 1200px;
  margin: 100px auto 80px;
   padding: 0 20px; 

}

.pricing-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
          gap: 30px;
         margin-top: 50px;
}

.pricing-card {

   background: white;
   border   :     2px solid #e0e6ed;
    border-radius  :12px;
  padding: 40px 30px;
	text-align: center;
   transition: all 0.3s ease;
   position: relative;
	}

.pricing-card:hover {
  border-color: #667eea;
     box-shadow: 0 8px 32px rgba(102, 126, 234, 0.15);
     transform: translateY(-8px);
}

.pricing-card.featured {
	  border-color: #667eea;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.2);
  transform: scale(1.05); 


}

.pricing-card h3 {
  font-size: 24px;
    font-weight: 700;
   color: #1a252f;
    margin-bottom: 16px;
}

.price {
   font-size: 42px;
  font-weight  :    700;
  color: #667eea;
        margin-bottom  :      4px;
}

.price-period {
    font-size: 14px;
	color    :        #6b7c8f;
   margin-bottom: 24px;
}



.pricing-features	{
    list-style   : none;
    display: flex;
  flex-direction: column;
    gap: 14px;
    margin-bottom: 30px;
   text-align: left;
}

.pricing-features li {
   font-size    :      14px;
   color: #5a6c7d;
   padding-left: 24px;
    position     :       relative;
}

.pricing-features li::before   {
  content: '✓';
     position: absolute;
   left: 0;
    color:        #667eea;
    font-weight   :    bold; 

}

.pricing-button {
  display: inline-block; 
   -moz-transition: all 0.3s ease; 
    padding: 12px 28px; 
   background: #f0f2f7; 
   color: #667eea; 
  -o-transition: all 0.3s ease; 
          -moz-border-radius: 8px; 
    text-decoration: none; 
   -webkit-border-radius: 8px; 
   border-radius: 8px; 
  -webkit-transition: all 0.3s ease; 
    font-weight: 600; 
   font-size: 14px; 
    transition: all 0.3s ease; 
  border: 2px solid transparent;
}

.pricing-button:hover {
    background:    #667eea;
   color: white;
}

.pricing-button.featured-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
   color: white; 
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);

}

.pricing-button.featured-button:hover {
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.faq-section		{

		max-width: 900px;
    margin: 100px auto 80px;
  padding: 0 20px;

}

.faq-container {
    display: flex;
     flex-direction    :   column;
    gap: 16px;
   margin-top: 50px;
}

.faq-item {
    overflow: hidden;
  background: white;
      border: 1px solid #e0e6ed;
   border-radius :  8px;
}

.faq-question
{
    width: 100%;
  padding: 20px;
    background: white;
       border: none;
   text-align: left;
    font-size: 16px;
    font-weight     :  600;
    color: #2c3e50;
  cursor: pointer;
       transition: all 0.3s ease;
  display: flex;
  justify-content :space-between;
    align-items  :   center;
}

.faq-question::after {
  content: '+';
	font-size  :       24px;
  color: #667eea;
  transition: transform 0.3s ease;
}

.faq-question:hover


{
    background  :  #f8f9fa;
 color  :     #667eea;
}

.faq-item.active .faq-question {
  background: linear-gradient(135deg, #667eea15, #764ba215);
    color: #667eea;
}

.faq-item.active .faq-question::after {
	  transform: rotate(45deg);

}

.faq-answer


{
	  max-height: 0;
  overflow :      hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
   max-height: 500px;

}

.faq-answer p {
    padding: 20px;
    color: #5a6c7d;
  line-height  : 1.8;
	font-size: 15px;
  border-top: 1px solid #e0e6ed;
}

.testimonials-section {
        max-width: 1200px;
    margin     :100px auto 80px;
  padding: 0 20px;
}


.testimonials-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	 gap: 30px;
    margin-top: 50px;
}

.testimonial-card 
 {
   background: white;
  padding: 32px 28px;
   border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
	 transition: all 0.3s ease;
   border-left: 4px solid #667eea;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
	  font-size: 16px;
      color: #2c3e50;
  line-height: 1.8;
   margin-bottom: 16px;
    font-style: italic;
	}

.testimonial-author {
      color: #667eea;
	font-size: 14px;
  font-weight: 600;
}



.thankyou-section 
 {
          min-height: 100vh;
  display: flex;
  align-items     :center;
   justify-content: center;
       padding: 40px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f7 100%);
}

.thankyou-container
	{
    max-width: 700px;
  width: 100%;
    background: white;
    border-radius: 16px;
   padding: 60px 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
   text-align: center;
}

.success-icon {
  height: 80px; 
    width: 80px; 
       margin: 0 auto 32px; 
    display: flex; 
	align-items: center; 
  justify-content: center; 
  background: linear-gradient(135deg, #667eea15, #764ba215); 
  border-radius: 50%;
}

.success-icon img {
     width: 48px;
    height: 48px;
    stroke: #667eea;
   fill: #667eea;
}

.thankyou-title {
       font-size   :  42px;
	 font-weight: 700;
  color: #1a252f;
    margin-bottom: 16px;}

.thankyou-subtitle {
   font-size    :   18px;
		 color: #5a6c7d;
	  line-height: 1.8;
	  margin-bottom: 40px;


}

.thankyou-info {

	  background: #f8f9fa;
    border-radius:12px;
    padding: 32px;
                    margin-bottom: 40px;
   text-align: left;

}

.thankyou-info h2 {
  font-size: 20px;
    font-weight: 600;
  color: #2c3e50;
   margin-bottom: 24px;
  text-align: center;
}

.info-steps {
    display: flex;
	flex-direction: column;
   gap: 20px;
}

.step		{
		 display: flex;

  gap: 16px; 
	
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height     :   40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    font-weight: 700;
  border-radius: 50%;
   flex-shrink     :   0;
}

.step-content h3 {
  font-size: 15px;
   font-weight: 600;
    color: #2c3e50;
    margin-bottom: 6px;
}

.step-content p {
	 font-size: 14px;
    line-height: 1.6;
	color:     #5a6c7d;
}

.thankyou-content h2 {
    font-size: 20px;
	 font-weight    :    600;
   color: #2c3e50;
  margin-bottom: 12px;

}

.thankyou-content p {
	 font-size: 15px;
   color: #5a6c7d;
  margin-bottom: 24px;
   line-height: 1.8; 
	
}

.waiting-links {
    flex-direction: column;
   gap     :        12px;
	display: flex;
}

.waiting-link     {
   display :  inline-block;
	  padding: 12px 24px;
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		color: white;
		text-decoration: none;
	  border-radius: 8px;
	  font-weight: 600;
			 font-size: 14px;
	   transition: all 0.3s ease;
	  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}


.waiting-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(102, 126, 234, 0.4);
}

.waiting-link.secondary {
   background: #f0f2f7;
    color: #667eea;
	box-shadow: none;


}

.waiting-link.secondary:hover {
                    background: #e0e6ed;
}

.contact-reminder {
  background: linear-gradient(135deg, #667eea15, #764ba215);
       border: 2px solid #667eea;
    border-radius: 12px;
  padding  :  24px;
   margin-bottom: 0;
}

.contact-reminder h3 {
   font-size: 16px;
  font-weight: 600;
    color: #2c3e50;
  margin-bottom   :        12px;

} 

.contact-reminder p	{
   font-size: 14px;
  color: #5a6c7d;
   margin-bottom: 8px;
	 line-height:       1.6;
}

.contact-reminder strong {
    color:    #667eea;
 font-weight: 600;
}

.quick-links-section {
                    max-width: 1200px;
  margin: 60px auto 80px;
   padding: 0 20px;
}

.quick-links-grid     {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
    margin-top: 40px;}

.quick-link-card {
    background: white;
   padding: 28px;
    border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.quick-link-card:hover{
  transform: translateY(-4px);
   border-color: #667eea;
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.15); 

}

.quick-link-card h3 {
  font-size: 18px;
	  font-weight: 600;
	    color: #2c3e50;
	  margin-bottom: 12px;
}

.quick-link-card p {
   font-size: 14px;
   	color:  #5a6c7d;
     line-height  :    1.6;
     margin-bottom  :   16px;
}

.link-button   {
    display: inline-block;
    padding     :      8px 16px;
    color: #667eea;
	 text-decoration: none;
  font-weight: 600;
  font-size: 13px;
   transition: all 0.3s ease;
	position: relative;
}

.link-button::after {
  content: '';
   position: absolute;
    bottom: -2px;
  left: 0;
    width: 0;
    height: 2px;
   background:        #667eea;
	transition: width 0.3s ease;
}

.link-button:hover::after    {

  width : 100%;
	}@media (max-width: 768px) {
    .services-header-content h1 {
        font-size: 32px;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-item.reversed {
        direction: ltr;
    }

    .detail-content h2 {
        font-size: 24px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .thankyou-container {
        padding: 40px 24px;
    }

    .thankyou-title {
        font-size: 32px;
    }

    .info-steps {
        gap: 16px;
    }

    .waiting-links {
        flex-direction: column;
    }

    .waiting-link {
        width: 100%;
        text-align: center;
    }
}@media (max-width: 480px) {
    .services-header-content h1 {
        font-size: 24px;
    }

    .detail-content h2 {
        font-size: 20px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 14px;
        padding: 16px;
    }

    .thankyou-container {
        padding: 32px 20px;
    }

    .thankyou-info {
        padding: 20px;
    }

    .quick-links-grid {
        grid-template-columns: 1fr;
    }
}.policy-section {
    padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f2f7 100%);
  min-height: calc(100vh - 300px);
}

.policy-container {
  max-width: 900px;
		 margin: 0 auto;
   background: white;
   padding: 60px 50px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
  font-size   :   2.8rem;
  color :#1a252f;
  margin-bottom: 32px;
    font-weight: 700;
	line-height: 1.2;
}

.policy-container h2 {
   font-size    :        1.8rem;
	font-weight: 600;
  margin-bottom  : 16px;
	margin-top: 32px;
	color: #2c3e50;
   line-height: 1.3;
}

.policy-container p {
  color     :   #5a6c7d;
	margin-bottom: 18px;
    line-height: 1.9;
    font-size :      16px;
  text-align: justify;
}

.policy-container p:last-child {
   margin-bottom     :     0;
}

.policy-container strong {
   color: #2c3e50;
		 font-weight: 600;
}

.policy-container h1:first-of-type {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     background-clip: text;}

.policy-container h2:first-of-type {

    margin-top: 0;
}

.policy-container ul {
    margin-bottom: 18px;
	padding-left: 24px;
}

.policy-container li    {
	 color     :  #5a6c7d;
  margin-bottom: 12px;
   line-height: 1.8;
	font-size: 16px; 


}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policy-container {
        padding: 40px 24px;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 24px;
        margin-bottom: 14px;
    }

    .policy-container p {
        font-size: 15px;
        margin-bottom: 16px;
        line-height: 1.8;
    }
}@media (max-width: 480px) {
    .policy-section {
        padding: 40px 0.75rem;
    }

    .policy-container {
        padding: 28px 16px;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .policy-container p {
        font-size: 14px;
        margin-bottom: 14px;
        text-align: left;
    }

    .policy-container ul {
        padding-left: 20px;
    }

    .policy-container li {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

@media print {
    .policy-section {
        padding: 40px 0;
        background: white;
    }

    .policy-container {
        box-shadow: none;
        padding: 0;
    }

    .policy-container h1,
    .policy-container h2 {
        page-break-after: avoid;
    }

    .policy-container p {
        page-break-inside: avoid;
    }
}