* {
    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;
    color: #2c3e50;
  background-color: #ffffff;
    line-height: 1.6;
}

a {
   text-decoration: none;
    color: inherit;
   transition: all 0.3s ease;
}

button {
	 border  :      none;
  background: none;
    cursor: pointer;
   font-family   : inherit;
}

input, textarea, select


{
	font-family: inherit;
	 font-size:inherit;
}

ul, ol {
                    list-style: none;
}  

img {
  max-width    :       100%;
    height: auto;
 display:      block;
}

.nav-container {
    background-color: #f8f9fa;
   padding: 1.2rem 0;
	position: sticky;
   top: 0;
   z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-content {

	    max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
  display: flex;
   justify-content: space-between;
	align-items: center;
     }


.nav-brand {

  display: flex;
  align-items: center;

}

.nav-logo {
	 max-height: 64px;
  width:        auto;
  filter: brightness(0) invert(0);
}

.nav-links {

	    display: flex;
         gap: 2rem;
     align-items: center;}

.nav-links a {
   font-size: 0.95rem;
  color: #2c3e50;
	font-weight: 500;
   position: relative;
}

.nav-links a::after {
  content: '';
   position: absolute;
	 bottom    :   -4px;
    left: 0;
    width: 0;
  height: 2px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
   transition: width 0.3s ease;
}

.nav-links a:hover::after {

   width: 100%;}

.nav-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
  padding     :0.65rem 1.5rem;
       border-radius: 8px;
  font-weight: 600;
}

.nav-cta::after {
   display: none;
}



.nav-cta:hover  
  {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
} 

.burger-menu
	{
       display: none;
  flex-direction  :  column;
    gap: 6px;
   padding: 0.5rem;
}

.burger-line		{
   width: 28px;
   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);
}

.hero {
   max-width: 1200px;
	 margin: 0 auto;
    padding: 4rem 2rem;
	display :    grid;
  grid-template-columns :     1fr 1fr;
  gap: 4rem;
    align-items: center;
}

.hero-content h1 {

	   font-size: 3.2rem; 
	    font-weight: 700; 
	   margin-bottom: 1.5rem; 
	   line-height: 1.2; 
	               color: #1a252f; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	   background-clip   :        text;

}

.hero-content p {
        font-size: 1.1rem;
       color: #555;
     margin-bottom: 2rem;
     line-height: 1.8;
}

.hero-buttons {
  display     :    flex;
   gap: 1.5rem;
 flex-wrap: wrap;
	
}

.btn	{
   padding: 0.95rem 2rem;
 border-radius: 8px;
    font-weight: 600;
  font-size: 0.95rem;
   -o-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
   transition: all 0.3s ease;
	display: inline-block;
  text-align: center;
}

.btn-primary  {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
  background  :     white;
   color : #667eea;
	 border: 2px solid #667eea;
}

.btn-secondary:hover {
     background: #667eea;
      color: white;
}

.btn-primary-large	{
   padding: 1.2rem 3rem; 
    font-size: 1.1rem;
}

.btn-primary-form {
      width: 100%;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    border-radius: 8px;
    font-weight: 600;
  font-size:  1rem;
    margin-top: 1rem;
	}

.btn-primary-form:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.hero-image img {
         border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); 
	
} 

.section-wrapper {
    max-width: 1200px;
  margin: 0 auto;
          padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

section h2 
 {
    font-size: 2.5rem;
   font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color     :   #1a252f;
}

.section-benefits {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}


.benefits-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap  : 2rem;
}

.benefit-card{
  background: white;
   padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
                    border-left: 4px solid transparent;
  background: linear-gradient(white, white) padding-box,
                linear-gradient(135deg, #667eea 0%, #764ba2 100%) border-box;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.benefit-number {
    font-size: 2.8rem;
  font-weight: 700;
         color: #667eea;
   margin-bottom: 1rem;
      opacity: 0.3;
}

.benefit-card h3 {
   font-size: 1.3rem;
    margin-bottom: 1rem;
               color: #2c3e50;
}

.benefit-card p    {
	 color: #666;
					line-height: 1.7;
}

.section-process {
   background: white;
}

.process-steps {
  display: grid;
  grid-template-columns: 1fr;
               gap: 3rem;
}

.step-item {
  display    :   grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
    align-items: center;
}

.step-item:nth-child(even) {

  direction: rtl;
     }

.step-item:nth-child(even) > * {
  direction   :    ltr;
}

.step-image img {
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.step-text h3 {
   font-size: 1.8rem;
    margin-bottom: 1rem;
	color     :      #2c3e50;
}

.step-text p {
	font-size: 0.95rem;
    line-height: 1.8;
	color: #666; 
	
}

.section-services-preview {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.section-services-preview h2 {
	 color: white;
}

.services-cards {

			display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
    padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
  transition: all 0.3s ease;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.15); 
  transform: translateY(-5px);
}

.service-icon-wrapper  
  {

	   margin-bottom: 1.5rem;
   display: flex;
   justify-content: center;
	}

.service-icon {
                    stroke: white;
    fill: none;
  stroke-width: 1.5;
    width: 48px;
    height: 48px;
}

.service-card h3 {
    font-size: 1.2rem;
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.9rem;
  line-height: 1.6;
    opacity :  0.95;
}

.section-stats {
	background: white;
}

.stats-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap :2rem;
}

.stat-box {
   text-align   :   center;
	padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color  :        white;
    border-radius: 12px;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.2);
} 

.stat-number {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.stat-box p {
          font-size   :1rem;
    opacity: 0.95;
}

.section-cta	{
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
        color: white;
 text-align: center;
   padding: 4rem 2rem;
	
}

.cta-content h2 {
  color: white;
}

.cta-content p {
   font-size :   1.2rem;
  margin-bottom    :      2rem;
  max-width: 600px;
  margin-left: auto;
	 margin-right: auto;
  opacity: 0.95;
}

.section-contact {
    background    :       #f8f9fa;
}

.contact-form {
     max-width    :     600px;
      margin: 0 auto;
  background :   white;
   padding: 2.5rem;
        border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);

}

.form-group {


  margin-bottom: 1.5rem;
     }

.form-group label {
   display: block;
       margin-bottom: 0.5rem;
    font-weight    :   600;
  color: #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select   {
  width: 100%;
      padding: 0.95rem;
        border: 2px solid #e0e0e0;
   -moz-border-radius: 8px;
    border-radius: 8px;
  font-size: 0.95rem;
                    transition    : all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select: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;
}

.footer-container {
	    background: #2c3e50;
  color: #ecf0f1;
  padding: 3rem 2rem 1.5rem;


}

.footer-content {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-logo-section {
  display: flex;
               align-items: flex-start;
}


.footer-logo {
    max-height  :  86px;
    width:    auto;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
    font-size: 1.1rem;
  margin-bottom: 1rem;
      color: white;
   font-weight: 600;
}

.footer-section p     {
                    font-size: 0.9rem;
  line-height: 1.8;
   margin-bottom: 0.8rem;
}

.footer-section ul {
   list-style:none;
}

.footer-section ul li {
   margin-bottom: 0.6rem;
}

.footer-section a     {
	color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
	 text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top    :    1.5rem;
  font-size: 0.85rem;
    color: #95a5a6;
}

.footer-bottom p 
 {
    margin:      0.3rem 0;
}@media (max-width: 768px) {
    .nav-content {
        padding: 0 1rem;
    }

    .burger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        background: #f8f9fa;
        flex-direction: column;
        gap: 0;
        padding: 1.5rem;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid #e0e0e0;
        padding: 1rem 0;
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links a {
        display: block;
    }

    .nav-links a::after {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    section {
        padding: 3rem 0;
    }

    section h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .step-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .step-item:nth-child(even) {
        direction: ltr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-logo-section {
        justify-content: center;
    }

    .footer-bottom {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .services-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .section-wrapper {
        padding: 0 1rem;
    }
}.services-hero {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 4rem 2rem;
  text-align: center;}

.services-hero-content h1 {
   font-size: 2.8rem;
  font-weight     :        700;
  margin-bottom: 1rem;
}

.services-hero-content p  
  {
                    font-size: 1.2rem;
  opacity: 0.95;
}

.service-main-coaching,
.service-main-webinar,
.service-main-conference,
.service-main-training,
.service-main-consultation
{


 padding     : 5rem 0;


} 

.service-main-coaching {


   background: white;}

.service-main-webinar {
   background: #f8f9fa;
}

.service-main-conference{
                    background: white;
}

.service-main-training {
   background: #f8f9fa;
}



.service-main-consultation {
   background: white;
}



.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail-grid.reverse {
 direction: rtl;
}

.service-detail-grid.reverse > *
	{
  direction: ltr;
}

.service-detail-image img {
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
          width: 100%;
}


.service-detail-content h2 {

  font-size: 2.2rem;
	margin-bottom    :  1.5rem;
    color: #2c3e50;

}  

.service-detail-content p {
  font-size: 1rem;
  color  :     #555;
    margin-bottom: 1.5rem;
  line-height: 1.8;
}

.service-detail-content h3


{


   font-size: 1.3rem;
	  margin-bottom: 1rem;
	   color: #2c3e50;
	  font-weight: 600;
	}

.service-features {
   list-style   :        none;
    margin-bottom: 2rem;
}

.service-features li {
         padding-left  :    2rem;
  line-height  :      1.6;
  position: relative;
   padding: 0.7rem 0;
   color :  #555;
}

.service-features li:before {
  content: '✓';
	   position: absolute;
	  left: 0;
	     color: #667eea;
	  font-weight: bold;
	    font-size: 1.2rem;
}

.service-details-specs {
				 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
   gap    :  1.5rem;
   padding: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  border-radius: 10px;
}

.detail-spec {
	flex-direction: column;
   display: flex;
}

.spec-label {
   font-size: 0.85rem;
   color: #999;
    font-weight: 600;
	margin-bottom: 0.4rem;
}

.spec-value {
  font-size: 1.1rem;
    color: #2c3e50;
  font-weight: 600;
}

.services-comparison {
    background: white;
    padding: 5rem 0;
}

.services-comparison h2 {
  margin-bottom    :        3rem;
}

.comparison-table-wrapper {
  overflow-x: auto;
}



.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  border-radius: 10px;
   overflow: hidden;
}

.comparison-table thead{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.comparison-table th 
 {
	padding: 1.2rem;
    text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding :1.2rem;
   color: #555;
   border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:hover {
    background: #f8f9fa;
}

.comparison-table .yes {
    color: #2ecc71;
   font-weight: 700;
}

.comparison-table .no {
    font-weight: 600;
    color :    #bdc3c7;
}

.comparison-table .maybe {
    color: #f39c12;
    font-weight: 600;
}

.services-pricing {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
      padding: 5rem 0;
}

.services-pricing h2 {
    margin-bottom: 3rem;
}

.pricing-cards {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.pricing-card {
   background: white;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
	 transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 2px solid #667eea;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-badge {

	   position: absolute;
  top    :     20px;
         right: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size  :       0.85rem;
    font-weight: 600;

}

.pricing-header {
   padding: 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color   :   white;
}

.pricing-header h3 {

	   font-size: 1.5rem;
    margin-bottom :    0.5rem; 


}

.price {
	    font-size: 1.3rem;
         font-weight: 700;
}

.pricing-features {

   list-style: none;
	padding: 2rem;
  flex-grow: 1;}

.pricing-features li {
  padding: 0.8rem 0;
    color  : #555;
   border-bottom: 1px solid #e0e0e0;
   position: relative;
  padding-left: 1.8rem;
}

.pricing-features li:last-child {
   border-bottom: none;
}



.pricing-features li:before {
  content: '✓';
	position: absolute;
    left: 0;
  color:   #667eea;
    font-weight: bold;
}



.btn-pricing {
		margin: 2rem;
  margin-top: auto;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 1rem;
   border-radius:       8px;
  text-align: center;
       font-weight: 600;
   transition: all 0.3s ease;
  display: block;
}

.btn-pricing:hover   {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(102, 126, 234, 0.3);
}

.services-faq {
    background: white;
  padding     : 5rem 0;
}

.services-faq h2 {
 margin-bottom: 3rem;
}

.faq-list {

	   max-width: 800px;
      margin  :  0 auto;


}

.faq-item {


  margin-bottom: 1.5rem;
   border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    transition    :    all 0.3s ease;
     }

.faq-item:hover {
    border-color: #667eea; 
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.1);
}

.faq-question {
  display  :      flex;
	justify-content: space-between;
   align-items :       center;
  padding: 1.5rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
               cursor: pointer;
   font-weight: 600;
   color: #2c3e50;
}

.faq-toggle {
	  font-size: 1.5rem;
    transition: transform 0.3s ease;


}

.faq-item.active .faq-toggle


{
  transform: rotate(45deg);
}

.faq-answer {
  padding: 1.5rem;
  background: white;
    color  : #555;
         line-height: 1.8;
    max-height: 0;
    overflow     :  hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {

  max-height: 500px;}

.services-cta {
	  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
   color: white;
    text-align: center;
    padding: 4rem 2rem;
     }

.cta-services-content h2 {
    color: white;
  font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-services-content p {
  margin-right: auto;
	margin-bottom: 2rem;
    opacity: 0.95;
   max-width: 600px;
    font-size: 1.1rem;
   margin-left: auto;
}


.thankyou-container {
  min-height: 70vh;
  display: flex;
 align-items: center;
    justify-content: center;
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
}

.thankyou-content {

	background: white;
    border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
	max-width: 600px;
    text-align: center;
     }

.thankyou-icon {
    margin-bottom: 2rem;
}

.success-icon {
      fill: none;
    height: 80px;
    margin:  0 auto;
  stroke: #2ecc71;
  width    : 80px;
  stroke-width: 1.5;
}

.thankyou-content h1 {
   font-size: 2.2rem;
   color: #2c3e50;
     margin-bottom: 1rem;
  font-weight: 700;
}

.thankyou-message {
    font-size    :        1.1rem;
   color: #667eea;
   margin-bottom: 2rem;
   font-weight  :   600;
}

.thankyou-details
{

  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   padding: 2rem;
    border-radius: 10px;
    margin-bottom: 2rem;

}

.thankyou-details p {
    color: #555;
    margin-bottom:       0.8rem;
	line-height     :       1.6;
}

.contact-phone {
   font-size: 1.2rem;
    color: #667eea;
}

.thankyou-next-steps {
   margin: 2.5rem 0;
        text-align  :left;
}

.thankyou-next-steps h3
	{
    text-align: center;
   margin-bottom: 1.5rem;
    color   :#2c3e50; 
}

.steps-grid {
 display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem; 

}

.step-box {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.step-number {
	font-size: 2rem;
         font-weight: 700;
  margin-bottom  :   0.5rem;
    opacity    :   0.8;
}

.step-box p {

	    font-size: 0.9rem;
	}

.thankyou-actions {
  display: flex;
	 gap: 1rem;
    flex-wrap: wrap;
}

.thankyou-actions .btn {
	    flex: 1;
  min-width: 150px;

}

.thankyou-info   {
  background: white;
   padding: 5rem 0;
}

.thankyou-info h2    {
	 margin-bottom: 3rem;
}

.info-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;

}

.info-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
   padding  :     2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

.info-card:hover {
  background: linear-gradient(135deg, #e9ecef 0%, #f5f7fa 100%);
  transform: translateY(-3px);
}

.info-icon {
   margin-bottom: 1rem;
  display: flex;
  justify-content   :        center;
}

.info-icon-img {
    width: 50px;
  height: 50px;
    stroke: #667eea;
   fill: none;
   stroke-width   :      1.5; 
	
}



.info-card h3 {
   	font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: #2c3e50;
	}

.info-card p 
 {
                    color: #666; 
	  line-height: 1.6; 
	    font-size: 0.95rem;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-grid.reverse {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.8rem;
    }

    .service-details-specs {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-actions .btn {
        width: 100%;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }
}@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .thankyou-content {
        padding: 2rem 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}.policy-section   {
   padding: 80px 2rem;
   background: #f8f9fa;
    min-height: 70vh;
}

.policy-container     {
      max-width: 800px;
		margin    :      0 auto;
   text-align:      left;


}

.policy-container h1    {
    font-size: 2.8rem;
   color   :     #2c3e50;
  margin-bottom: 2rem;
    font-weight: 700;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   background-clip: text;
}

.policy-container h2 {
   font-size: 1.8rem;
			color: #2c3e50;
  margin-top: 2rem;
  margin-bottom: 1.2rem;
        font-weight: 700;
               border-left: 4px solid #667eea;
    padding-left: 1rem;
}

.policy-container p {
  color: #555;

    margin-bottom: 1.5rem;

   line-height: 1.8;

  font-size: 1rem;

  text-align: justify;
}

.policy-container p:first-of-type {
  font-size: 1.05rem;

	  color: #666;

	  font-weight: 500;
}@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.5rem;
        margin-top: 1.5rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 50px 1rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
    }

    .policy-container h2 {
        font-size: 1.3rem;
        padding-left: 0.8rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
}