* {
     margin: 0;
   padding: 0;
   box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
    color  :    #2c3e50;
  background-color: #ffffff;
}

.navbar {

     background-color: #1a1a1a;
    padding: 1rem 0;
  position: sticky;
  top: 0;
    z-index :       1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);


}

.navbar-container {
	    max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
    display :flex;
    justify-content: space-between;
	align-items: center;
}

.navbar-brand {
          display: flex;
  align-items: center;

}

.logo 
 {
  height: 64px;
    width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
   display: flex;
   list-style: none;
   gap: 2rem;
}

.nav-link {

		 color: #ffffff;
  text-decoration: none;
    font-weight: 500;
  transition: color 0.3s ease;
    position: relative;
	}

.nav-link:hover {
    color:     #00d4ff;
}

.nav-link::after {
  content: '';
  position    :       absolute;
  bottom: -5px;
   left: 0;
    width: 0;
	 height: 2px;
    background-color: #00d4ff;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
   width: 100%;
}

.burger-menu {
  display: none;
	flex-direction: column;
	background: none;
    border: none;
  cursor: pointer;
  gap :      5px;
}

.burger-line {
   width: 25px;
  height: 3px;
  background-color   : #ffffff;
   border-radius: 3px;
    transition :       all 0.3s ease;
}

.hero {


    max-width    :   1200px;
  margin: 0 auto;
   padding: 4rem 2rem;
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;


}

.hero-content h1 {
 font-size     :    3rem;
  font-weight: 700;
                    line-height: 1.2;
    margin-bottom: 1.5rem;
      color: #1a1a1a;
}

.hero-content p {
   font-size: 1.1rem;
   color: #555555;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.cta-button {
   display  :        inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
  padding   :    1rem 2.5rem;
   border-radius :    50px;
 text-decoration: none;
    font-weight: 600;
  transition  :   all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}


.cta-button:hover		{
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
}

.hero-image {
    width: 100%;
    height: 400px;
	object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.intro-block {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 4rem 2rem;
   margin: 2rem 0;
}

.intro-container {
    max-width: 1200px; 
    margin: 0 auto;
}

.intro-block h2 {

	    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color  :    #1a1a1a;
     }



.intro-block p {
 font-size: 1.1rem;
      color: #333333;
     margin-bottom: 2.5rem;
  line-height: 1.8;
     max-width: 700px;
}

.intro-highlights {
  display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
	   gap: 2rem;

}

.highlight-item {
  background: white;
                    padding: 2rem;
   border-radius: 10px;
    text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.highlight-number {
  display: block;
  font-size: 2.5rem;
  font-weight  :     700;
   color: #667eea;
    margin-bottom: 0.5rem;
}

.highlight-text {
   display: block;
   font-size: 1rem;
  color   :    #555555;
}

.services-preview {
               max-width: 1200px;

	 margin: 4rem auto;

	  padding: 0 2rem;
}

.services-preview h2


{
       font-size: 2.5rem;
   margin-bottom: 3rem;
    text-align: center;
   color: #1a1a1a;
}


.services-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;


}

.service-card
	{
        background: white;
    border-radius: 15px;
	overflow  :hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition   :        all 0.3s ease;
  border: 1px solid #e0e0e0;


}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
} 

.service-image {
  width: 100%;
  height  :     250px;
   object-fit: cover;
}

.service-card h3 {
   padding   :    1.5rem 1.5rem 0.5rem;
     color: #1a1a1a;
    font-size     :     1.5rem;
} 

.service-card p {
    padding: 0 1.5rem 1.5rem;
   color: #666666;
   font-size  : 0.95rem;
		line-height: 1.6;
}

.webinar-section    {
    max-width: 1200px;
  margin   :  4rem auto;
  padding: 3rem 2rem;
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
 align-items   :     center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius  :  20px;
   color: white;
}

.webinar-content h2 {
  margin-bottom: 1rem;
   color     :     white;
 font-size: 2.2rem;
}

.webinar-content p {
        font-size: 1rem;
    margin-bottom    :    1.5rem;
  line-height: 1.8;
   opacity: 0.95;
}

.webinar-features {
    list-style: none;
  margin-bottom: 2rem;
}

.webinar-features li {
  padding: 0.7rem 0;

	    font-size: 0.95rem;

	    position:        relative;

	    padding-left: 1.5rem;
}

.webinar-features li::before		{
  content: '✓';
    position: absolute;
		left     :    0;
   color: #00ff88;
	 font-weight   :  bold;
}

.webinar-button {
     display:inline-block;
  background: white;
    color: #667eea;
   padding: 1rem 2.5rem;
  border-radius: 50px;
   text-decoration: none;
    font-weight: 600;
   transition: all 0.3s ease;
    cursor: pointer;
   border:  none;

}

.webinar-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.webinar-image {
   width   :   100%;
     height: 350px;
   object-fit: cover;
  border-radius: 15px;

}

.conference-block {
  max-width: 1200px;
  padding: 0 2rem;
   margin: 4rem auto;
}

.conference-block h2 {

	  font-size: 2.5rem;

  margin-bottom: 1rem;

    text-align: center;

  color: #1a1a1a;
}



.conference-block > p {


  color: #555555;
   font-size: 1.1rem;
    margin-right: auto;
	text-align: center;
  max-width: 600px;
    margin-bottom: 3rem;
   margin-left: auto; 
	

}

.conference-list


{
  display: grid;
   gap    :   2rem;
}

.conf-item {

    display  :    grid;
    grid-template-columns: 80px 1fr;
  gap :   2rem;
      padding: 2rem;
    background: #f8f9fa;
   border-radius: 15px;
         border-left: 4px solid #667eea;
  transition: all 0.3s ease;


}



.conf-item:hover    {
               background: #eff0f7;
  transform: translateX(5px);
	
}

.conf-number {
    font-size: 2.5rem;
  font-weight: 700;
    color   :   #667eea;
    display   :       flex;
         align-items: center;
}

.conf-details h4 {
          font-size: 1.3rem;
    margin-bottom: 0.5rem;
   color: #1a1a1a;


}

.conf-details p {
  line-height: 1.6;
   font-size: 0.95rem;
                    color     :        #666666;
}

.transformation-stories 
 {
	  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef2 100%);
                    padding: 4rem 2rem;
	margin    :     2rem 0;
	
     }

.transformation-stories h2 {

    font-size: 2.5rem; 
    text-align: center; 
    margin-bottom: 3rem; 
   color: #1a1a1a;

}

.stories-container {
	max-width:  1200px;
  margin     :     0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap  : 2rem;
}

.story-card {
	  background: white;
    padding: 2rem;
    border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   border-top  :   4px solid #667eea;

}

.story-text {
  font-size: 0.95rem;
    color: #555555;
   margin-bottom: 1.5rem;
   line-height: 1.7;
  font-style :   italic;
}

.story-author {
    font-weight: 600;
   color: #1a1a1a;
					font-size  : 0.9rem; 
	
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	 padding: 4rem 2rem;
    text-align: center;
  margin: 2rem 0; 
	
}

.cta-section h2 {


    font-size: 2.5rem;
   margin-bottom: 1rem;

}

.cta-section p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
	margin-left: auto;
    margin-right: auto;
}

.cta-button-large {
	display: inline-block;
   background: white;
   color: #667eea;
    padding: 1.2rem 3rem;
   border-radius: 50px;
   text-decoration: none;
   font-weight: 700;
	font-size   :      1.1rem;
    transition: all 0.3s ease;
	
}

.cta-button-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.contact {
          max-width: 800px;
    margin: 4rem auto;
   padding     :      0 2rem;
	
}

.contact-container
{
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef2 100%);
    padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact h2 {
   font-size    :  2.2rem;
    margin-bottom:       0.5rem;
   color:   #1a1a1a;
       text-align: center;
}

.contact-subtitle {
  text-align:        center; 
   color: #666666; 
   margin-bottom: 2rem; 
   font-size:   1rem;
}

.contact-form {

	  display: grid; 
	    gap: 1.5rem;

}

.form-group {
    display: flex;
   flex-direction: column;
}

.form-group label {
   font-weight: 600;
    color: #1a1a1a;
   margin-bottom: 0.5rem;
  font-size: 0.95rem; 

}

.form-group input,
.form-group select,
.form-group textarea {
   padding  :     0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
   font-size: 0.95rem;
  font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
             outline: none;
    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1); 
	
}

.submit-button {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 1rem;
  border: none;
   border-radius: 8px;
   font-weight :      600;
    font-size: 1rem;
	cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.submit-button:hover {
  transform: translateY(-2px);
     box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.footer

{
	 margin-top:4rem;
    background-color: #1a1a1a;
        padding:        3rem 2rem 1rem;
   color: white;
}

.footer-content {
   max-width: 1200px;

	    margin    :       0 auto;

	     display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

		gap: 2rem;

	   margin-bottom: 2rem;
}


.footer-section h4{
			color: #00d4ff;
  font-size: 1.2rem;
    margin-bottom :  1rem;
}

.footer-logo-section {
  display: flex;
               align-items  :       flex-start;
	
}

.footer-logo {
    height: 86px;
    width: auto;
  filter: brightness(0) invert(1); 

}

.footer-contact p {
   margin-bottom: 0.8rem;
    font-size    :    0.95rem;
   line-height: 1.6;
}

.phone-info a {
    color: #00d4ff;
    -o-transition: color 0.3s ease;
    text-decoration: none;
   transition     :      color 0.3s ease;
}

.phone-info a:hover {
   color: #ffffff;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
       margin-bottom     :        0.7rem;
}

.footer-links a {
  color  :#cccccc;
    text-decoration: none;
   font-size    :       0.95rem;
	transition: color 0.3s ease;
}

.footer-links a:hover {
		 color: #00d4ff;

}

.footer-about p {
   font-size :  0.9rem;
    line-height: 1.6;
    color: #cccccc;
}

.footer-bottom {
   border-top: 1px solid #333333;
  text-align:     center;
  font-size: 0.85rem;
  color: #999999;
  padding-top :1.5rem;
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: #1a1a1a;
        gap: 0;
        padding: 1rem 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 2rem;
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-image {
        height: 250px;
    }

    .intro-block h2,
    .services-preview h2,
    .conference-block h2,
    .transformation-stories h2,
    .cta-section h2 {
        font-size: 1.8rem;
    }

    .webinar-section {
        grid-template-columns: 1fr;
        padding: 2rem;
    }

    .webinar-image {
        height: 250px;
    }

    .intro-highlights {
        grid-template-columns: 1fr;
    }

    .conf-item {
        grid-template-columns: 60px 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .conf-number {
        font-size: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-container {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-image {
        height: 200px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .stories-container {
        grid-template-columns: 1fr;
    }

    .conf-item {
        grid-template-columns: 50px 1fr;
    }

    .conf-number {
        font-size: 1.5rem;
    }

    .footer-content {
        gap: 1rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding   :       4rem 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.services-hero-content h1 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
   font-weight  :        700;
}

.services-hero-content p {
  font-size   :1.2rem;
        opacity: 0.95;
}

.services-overview {
  max-width: 1200px;
  margin: 0 auto;
  padding     :   0 2rem;
}

.services-overview-container {
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	  gap: 2rem;
	   margin-bottom :        4rem;
}

.service-overview-card {

	  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef2 100%);

   padding: 2.5rem;

  border-radius: 15px;

    border-left: 4px solid #667eea;

  transition:    all 0.3s ease;

   position: relative;
     }

.service-overview-card:hover {
     transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);}

.service-icon-number {
   display: inline-block;
   font-size     :2rem;
  font-weight: 700;
	 color: #667eea;
  margin-bottom: 1rem;
	
}

.service-overview-card h3 {
    font-size: 1.5rem;
   color: #1a1a1a;
   margin-bottom: 1rem;
}

.service-overview-card p {
    color: #555555;
   line-height: 1.6;
    margin-bottom: 1.5rem;
   font-size: 0.95rem;
}

.service-price {
   display: block;
  font-weight: 700;
    color: #667eea;
   font-size   :      1.1rem;
}

.service-detail   {
   margin: 4rem 0;
                    max-width    :  1200px;
   margin-left   :      auto;
    margin-right: auto;
  padding  :   0 2rem;
}

.service-detail-container

{
       gap: 3rem;
   grid-template-columns: 1fr 1fr;
  align-items: center;
   display: grid;
}

.service-detail-alt .service-detail-container {

  grid-template-columns: 1fr 1fr;

}

.service-detail-text h2 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-text p {
  color: #555555;
   line-height: 1.8;
   margin-bottom    :   1.5rem;
   font-size: 1rem;
}

.service-detail-text h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
					margin-bottom: 1rem;
}

.service-detail-list 
 {
   list-style: none;
   margin-bottom: 1.5rem;
}

.service-detail-list li {
	  padding: 0.6rem 0; 
   padding-left: 1.8rem; 
  position: relative; 
 color: #555555; 
   line-height: 1.6;
     }

.service-detail-list li::before 
 {
  content: '▸';
    position: absolute;
   left:  0;
  color: #667eea;
	 font-weight: bold;
    font-size: 1.2rem;
}

.service-detail-highlight {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding: 1.5rem;
	 border-left: 4px solid #667eea;
  border-radius: 8px;
  font-weight: 500;
    color: #1a1a1a;
  margin-top: 1.5rem;
}

.service-detail-image {
    width :     100%;

  height: 350px;

	object-fit: cover;

  border-radius: 15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-comparison   {
       max-width: 1200px;

	  margin: 4rem auto;

	   padding: 0 2rem;}

.service-comparison h2 {
  font-size: 2.2rem;
	margin-bottom: 2rem;
    text-align: center;
  color: #1a1a1a;
}

.comparison-table {
    background: white;
    border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);


}

.comparison-row {
	display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #e0e0e0;
}

.comparison-row:last-child {

	  border-bottom: none;

}

.comparison-cell {
  padding: 1.5rem;
   color: #555555;
}

.comparison-cell.header
	{
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    font-weight: 700; 

}

.comparison-row:nth-child(even) .comparison-cell

{
	 background-color: #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: #1a1a1a;
}

.faq-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
 gap :       2rem;
}  

.faq-item {
   background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #667eea;
  transition: all 0.3s ease;

}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.faq-item h4 {
      font-size: 1.1rem;
  color: #1a1a1a;
    margin-bottom: 0.8rem;
}

.faq-item p {
  color  :        #666666;
  line-height: 1.6;
		 font-size: 0.95rem;
}

.pricing-section {


  max-width: 1200px;
    margin: 4rem auto;
         padding: 0 2rem;
	}

.pricing-section h2 {
                    font-size    :       2.2rem;
   text-align: center;
      margin-bottom: 3rem;
    color: #1a1a1a;
}

.pricing-cards {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
               gap: 2rem;

}

.pricing-card {
  background    :  white;
  border: 2px solid #e0e0e0;
  border-radius: 15px;
    padding: 2.5rem 2rem;
   text-align: center;
  transition: all 0.3s ease;
    position: relative;
}


.pricing-card:hover {
   border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  transform: translateY(-5px);


}

.pricing-card-featured {

		border-color: #667eea;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  transform: scale(1.05);}

.pricing-badge


{
    position   :  absolute;
  top: -12px;
   left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: white;
  padding    :       0.5rem 1rem;
    border-radius: 20px;
  font-size: 0.8rem;
 font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
   color: #1a1a1a;
	 margin-bottom: 1rem; 

}

.pricing-price  
  {
  font-size: 2.5rem;
               font-weight: 700;
   color: #667eea;
    margin-bottom: 0.3rem;

}  

.pricing-period {
   color: #999999;
  font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
	margin-bottom: 2rem;
   text-align: left;
}

.pricing-features li {
  padding: 0.6rem 0;
   padding-left :        1.5rem;
  position: relative;
          color: #555555;
			font-size :0.9rem;
}



.pricing-features li::before


{
  content: '✓';
    position: absolute;
   left: 0;
  color: #2ecc71;
  font-weight:       bold;
}

.cta-section-services

{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 4rem 2rem;
	text-align   : center;
    margin: 4rem 0 2rem;
}

.cta-section-services h2 {

	   font-size     : 2.2rem;
  margin-bottom: 1rem;
}

.cta-section-services p {
   font-size: 1.1rem;
               margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button-services {
	display  :inline-block;
    background: white;
   color   :        #667eea;
   padding: 1.1rem 2.8rem;
    border-radius     :     50px;
	text-decoration: none;
   font-weight: 700;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-button-services:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.thankyou-hero {
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef2 100%);
  padding: 4rem 2rem;
    text-align: center;
   min-height: 60vh;
    display: flex;
	 align-items: center;
  justify-content: center;
}

.thankyou-container {
    max-width: 800px;
	 margin: 0 auto;
}

.success-icon		{
   width: 100px; 
  height: 100px; 
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%); 
   border-radius: 50%; 
  display: flex; 
  align-items: center; 
   justify-content: center; 
   font-size: 3.5rem; 
	color: white; 
  margin: 0 auto 2rem; 
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
}

.thankyou-hero h1 {
    font-size: 2.8rem;
   color: #1a1a1a;
         margin-bottom: 0.5rem;
}

.thankyou-subtitle {
	 font-size: 1.3rem;
   color: #667eea;
	 margin-bottom: 2rem;
}

.thankyou-message {
	background: white;
    padding: 2.5rem;
	border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
    text-align   :    left;
}

.thankyou-message p {
   color: #555555;
                    line-height: 1.8;
     margin-bottom: 1.5rem;
 font-size: 1rem;
}

.thankyou-details h3 {
               font-size: 1.3rem;
   color: #1a1a1a;
	 margin-bottom: 1.5rem;
}


.thankyou-steps {
   list-style: none;
  margin-bottom: 2rem;
}

.thankyou-steps li {
  display     : flex;
   gap: 1.5rem;
  margin-bottom:        1.2rem;
   align-items: flex-start;
}

.step-number
{
   display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
    height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color    : white;
   border-radius: 50%;
  font-weight: 700;
   font-size    :   1.1rem;
    flex-shrink :      0;
}

.step-text {
    color: #555555;
	    line-height: 1.6;
}

.thankyou-info-box   {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    padding: 1.5rem;
	border-left: 4px solid #667eea;
  border-radius: 8px;
   margin-top: 1.5rem;
}

.thankyou-info-box p {
    margin-bottom: 0.8rem;
   color: #1a1a1a;
}

.thankyou-info-box a {
	 color: #667eea;
   text-decoration: none;
    font-weight: 600;
       transition: color 0.3s ease;
}

.thankyou-info-box a:hover {
   color    :#764ba2;
}

.thankyou-actions {
    display: grid;
  grid-template-columns   :1fr 1fr;
    gap: 1rem;
  margin-bottom: 2rem;
}

.thankyou-button-primary,
.thankyou-button-secondary {
	   padding     : 1.1rem 2rem;
  border-radius: 50px;
   text-decoration: none;
               font-weight: 600;
  transition :   all 0.3s ease;
	display: inline-block;
    font-size: 0.95rem;
     }

.thankyou-button-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.thankyou-button-primary:hover {

  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);}

.thankyou-button-secondary {
  background: white;
  color: #667eea;
  border: 2px solid #667eea;
}

.thankyou-button-secondary:hover {
  background: #667eea;
  color: white;
  transform: translateY(-2px);
}

.thankyou-bonus {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
               color    : white;
   padding: 2rem;
         border-radius: 15px;
    text-align: center;
}

.thankyou-bonus h3 {
    font-size: 1.3rem;
   margin-bottom: 0.8rem;
  color: white;
}

.thankyou-bonus p
{
	 opacity: 0.95;
}

.faq-quick {
	       max-width: 1200px;
   margin: 3rem auto;
  padding: 3rem 2rem;}

.faq-quick-container {
  text-align: center;
} 

.faq-quick-container h2 {


   font-size: 2rem;
          margin-bottom: 2rem;
	color    : #1a1a1a;
	}

.faq-quick-grid {
	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.faq-quick-item {
   background: white;
    padding: 1.5rem;
       border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #667eea;
}

.faq-quick-item h4 {
  font-size: 1rem;
    color: #1a1a1a;
   margin-bottom: 0.7rem;
}

.faq-quick-item p {
   color: #666666;
   font-size: 0.9rem;
  line-height: 1.5;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-container {
        grid-template-columns: 1fr;
    }

    .service-detail-image {
        height: 250px;
    }

    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell {
        padding: 1rem;
        text-align: center;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .thankyou-steps li {
        flex-direction: row;
    }

    .pricing-card-featured {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .service-overview-card {
        padding: 1.5rem;
    }

    .service-detail-text h2 {
        font-size: 1.6rem;
    }

    .comparison-cell {
        padding: 0.8rem;
        font-size: 0.85rem;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 3rem;
    }

    .thankyou-hero h1 {
        font-size: 1.8rem;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
    }
}.policySection {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e8eef2 100%);
  min-height: calc(100vh - 400px);
}

.policyContainer {
   max-width : 900px;
	margin: 0 auto;
	text-align: left;
    background: white;
   padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
} 

.policyContainer h1 {

    padding-bottom: 1.5rem;
  text-align: center;
   border-bottom :   3px solid #667eea;
    font-size: 2.8rem;
   font-weight: 700;
  margin-bottom  : 2rem;
    color: #1a1a1a; 

     }

.policyContainer h2 {


               font-size: 1.8rem;
 color   :   #1a1a1a;
    margin-top: 2.5rem;
   margin-bottom: 1rem;
  font-weight: 700;
   padding-top: 1.5rem;

}

.policyContainer h3 {
	   font-size   :   1.3rem;
    color    :     #333333;
    margin-top :1.5rem;
	margin-bottom: 0.8rem;
   font-weight: 600;
}

.policyContainer p 
 {
                    color     :     #555555;
  margin-bottom: 1.2rem;
    line-height: 1.8;
  font-size: 1rem;
	}

.policyContainer ul {
	margin-left  :1.5rem;
    margin-bottom: 1.5rem;
}

.policyContainer li {
  color: #555555;
	 margin-bottom    :  0.8rem;
  line-height: 1.7;
}

.policyContainer li::before {
  content: '▸';
   margin-right: 0.8rem;
          color: #667eea;
          font-weight: bold;
}@media (max-width: 1024px) {
    .policyContainer {
        padding: 2.5rem;
    }

    .policyContainer h1 {
        font-size: 2.4rem;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem;
        border-radius: 12px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .policyContainer ul {
        margin-left: 1rem;
    }

    .policyContainer li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 0.5rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 10px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
    }

    .policyContainer h3 {
        font-size: 1rem;
    }

    .policyContainer p {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .policyContainer ul {
        margin-left: 0.8rem;
    }

    .policyContainer li {
        font-size: 0.85rem;
    }
}