* {
  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     :    #fafafa;
   letter-spacing: 0.3px;
	
}

.container {
  max-width: 1140px;
  margin: 0 auto;
          padding: 0 20px;
}

a {
 text-decoration: none;
   color: inherit;


}

button {
	font-family: inherit;
   border: none;
   cursor: pointer;
}

img {
    max-width: 100%;
  height: auto;
    display: block;
	
}

hdr-main {
   display: block;
}

.nav-primary {

  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);

    position: sticky;

	top: 0;

   z-index: 1000;

  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.nav-container {
    display:     flex;
   justify-content   : space-between;
    align-items: center;
    padding: 12px 20px;
 max-width: 1140px;
	margin     :   0 auto;
}

.logo-section {
   flex-shrink: 0;
}

.logo-img {
   height: 45px;
    width: auto;
}

.burger-btn {
  display: none; 
   flex-direction: column; 
   background: none; 
  padding: 8px; 
    gap: 6px; 
  margin: 0;
}



.burger-line {
	 width: 28px;
  height: 3px;
   background: #ffffff;
    border-radius   :       2px;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.nav-menu   {
  display: flex;

						list-style: none;

	   gap: 32px; 
	
}

.nav-link {
	color:#e8e8e8;
    font-weight: 500;
   font-size :  16px;
    transition  :     color 0.3s ease;
         position: relative;
}

.nav-link::after {


  content: '';
   position: absolute;
   bottom: -5px;
    left: 0;
  width: 0;
    height: 2px;
   background: #00d4ff;
  transition: width 0.3s ease;


}

.nav-link:hover {
   color: #00d4ff;
}

.nav-link:hover::after {
  width    :  100%;
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 100px 20px;
  text-align: center;
  color: white;
    min-height     :        520px;
    display: flex;
  align-items: center;
  justify-content:   center;
}

.hero-wrapper
{


    max-width: 900px;
   animation: fadeInUp 0.8s ease-out;
}  @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.hero-title		{
    font-size: 52px;
                    font-weight: 700;
   margin-bottom: 20px;
  letter-spacing     :       -1px;
}

.hero-subtitle {
  font-size: 20px;
	 margin-bottom: 35px;
	 opacity: 0.95;
  line-height: 1.8;

}

.cta-button	{


  display   : inline-block;
	  background: #00d4ff;
	   color   :   #1a1a2e;
		padding   :   14px 38px;
	  border-radius: 50px;
	    font-weight: 600;
	   font-size: 16px;
	  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
	  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);


}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.5);
    background     :  #00b8d4;
}

.section-title {
   font-size     : 38px;
        font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
   color: #1a1a2e;
	
}

.services-overview {
   padding: 80px 20px;
   background    :     white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
 gap: 28px;
}



.service-card {
    background    : #f8f9fb;
   border-radius    : 12px;
	overflow    :   hidden;
    transition: all 0.5s ease;
  border: 1px solid #e8eef7;
}

.service-card:hover{
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.service-image {
   width: 100%;
    height: 220px;
   object-fit: cover;
}

.service-heading    {
   font-size   :     20px;

	   font-weight: 600;

	   padding: 20px 20px 8px 20px;

		 color: #2c3e50;
}

.service-text {
   padding: 0 20px 20px 20px;
   color: #5a6c7d;
   font-size: 15px;
  line-height: 1.7; 

}

.features-section {
    padding: 80px 20px;
  background: linear-gradient(180deg, #f5f7fa 0%, #e8ecf1 100%);

}

.features-layout {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
               gap: 35px;
}

.feature-item {
   text-align: center;
}

.feature-icon-wrapper 
 {
  margin-bottom: 20px;
   height: 60px;
   display: flex;
     align-items:      center;
  justify-content: center;
}

.feature-icon {
   width: 50px;
  height: 50px;
      stroke: #667eea;
  fill: none;
    stroke-width: 2;
    stroke-linecap: round;
   stroke-linejoin: round;
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2));
      transition: all 0.4s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.15) rotate(8deg);
  filter: drop-shadow(0 6px 12px rgba(102, 126, 234, 0.4));
}

.feature-item h3 {


	font-size:       18px;
 font-weight: 600;
  color: #1a1a2e;
   margin-bottom: 12px;
	

}

.feature-item p {
    color: #5a6c7d;
   font-size: 15px;
	 line-height: 1.7;
}

.conference-section {
	 padding: 80px 20px;
  background: white;
}

.conf-wrapper {
    text-align: center;
}

.conf-title {
    margin-bottom: 25px;
}

.conf-description {
	 font-size: 18px;

  color     : #5a6c7d;

     max-width: 700px;

  margin: 0 auto 50px;

  line-height: 1.8;
	
}

.conf-items {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap   :   25px; 

}

.conf-item {
	  background: #f8f9fb;
  padding: 30px 25px;
    border-radius: 10px;
   border-left: 4px solid #667eea;
    transition: all 0.4s ease;
     }

.conf-item:hover
	{
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
  transform: translateX(5px);
}

.conf-item h4 {
      font-size: 18px;
  color: #1a1a2e;
  margin-bottom: 12px;
  font-weight :    600;
     }

.conf-item p {
       color   :        #5a6c7d;
  font-size: 15px;
   line-height: 1.6;
     }

.cta-section {
		padding: 70px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   text-align: center;
   color: white;
}

.cta-heading {
   font-size    :    42px;
	font-weight: 700;
                    margin-bottom: 20px;
}

.cta-text {
                    font-size: 18px;

	  margin-bottom:      35px;

	   opacity    : 0.95;

	  max-width: 600px;

	                    margin-left: auto;

	    margin-right:auto;
}

.cta-button-large {
   font-size: 17px; 
  padding: 16px 45px;
}

.contact-section {
    padding: 80px 20px; 
    background: #f8f9fb;
}

.contact-wrapper {


    display: grid;
   	grid-template-columns: 1fr 1fr;
      gap: 50px;
     max-width: 1000px;
       margin: 0 auto;
     }

.contact-info h3 {
  font-size: 22px;

	font-weight: 600;

    color  :     #1a1a2e;

   margin-bottom: 30px;
}

.info-block {
	      margin-bottom: 25px;
     }

.info-label {
   font-weight    :       600;
  color: #667eea;
  font-size: 14px;
  margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
}

.info-value {
		color: #2c3e50;
					font-size: 16px;
    line-height: 1.6;
	
}

.contact-form {


      background:  white;
   padding    :35px;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);}

.form-group {

	  margin-bottom: 22px;}

.form-group label {
   display    :   block;
   font-weight: 600;
                    color: #1a1a2e;
	margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
          width: 100%;
   -webkit-border-radius: 8px;
    padding: 12px 14px;
    border: 2px solid #e8eef7;
   border-radius: 8px;
   font-size: 15px;
  font-family: inherit;
  -moz-transition:   all 0.3s ease;
    color: #2c3e50;
  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);
}

.form-group input::placeholder {
  color: #a0a8b3;
}

.form-group textarea {
   resize: vertical;
   min-height: 120px;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 14px;
          border-radius: 8px;
               font-weight: 600;
	 font-size: 16px;
   transition: all 0.4s ease;
    cursor    :        pointer;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.footer-main {
      background: #1a1a2e;

		padding: 50px 20px 25px;

	   color    :  #c8cdd3;
}

.footer-container {
    display   :       grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 35px;
   max-width: 1140px;
   margin: 0 auto;
   margin-bottom: 30px;
}

.footer-section   {
   padding: 10px 0;
}

.footer-logo-img {
   height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-heading   {
	color: white;
   font-size     :16px;
   font-weight: 600;
   margin-bottom: 15px;
  text-transform: uppercase;
   letter-spacing    :     0.5px;
}


.footer-links {
    list-style: none;
}

.footer-links li  
  {
  margin-bottom: 10px;
}

.footer-links a {
	 color: #c8cdd3;
    transition: color 0.3s ease;
  font-size: 14px;
}

.footer-links a:hover {
   color: #00d4ff;
}

.footer-text {
  font-size: 14px; 
  line-height: 1.7; 
	margin-bottom: 10px;


}

.footer-bottom  
  {
   border-top: 1px solid #2c3e50;
   padding-top: 20px;
  text-align: center;
}

.footer-copyright {
   color: #5a6c7d;
   font-size: 13px;
}@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        background: #0f0f1e;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        list-style: none;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        border-bottom: 1px solid #2c3e50;
    }

    .nav-menu li:last-child {
        border-bottom: none;
    }

    .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }

    .nav-link::after {
        display: none;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 17px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 35px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form {
        padding: 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .burger-btn.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(10px, 10px);
    }

    .burger-btn.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-btn.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 10px 15px;
    }

    .logo-img {
        height: 38px;
    }

    .hero-section {
        padding: 60px 15px;
        min-height: 420px;
    }

    .hero-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .cta-button {
        padding: 12px 28px;
        font-size: 14px;
    }

    .services-overview {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 22px;
        margin-bottom: 25px;
    }

    .feature-item h3 {
        font-size: 16px;
    }

    .contact-section {
        padding: 50px 15px;
    }

    .contact-form {
        padding: 20px;
    }

    .footer-main {
        padding: 30px 15px 15px;
    }

    .cta-heading {
        font-size: 28px;
    }

    .cta-text {
        font-size: 15px;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #1a1a2e 100%);
    padding: 70px 20px;
  color: white;
   text-align: center;
}

.services-main-title {
   font-size :48px;

   font-weight: 700;

   margin-bottom: 16px;
}

.services-intro-text {
    margin: 0 auto;
   font-size: 18px;
  opacity     :    0.9;
    line-height: 1.7;
	max-width: 700px;
}

.services-detailed {
    padding  :     80px 20px;
    background:        white;
}

.service-detail-item {
  grid-template-columns: 1fr 1fr;
   gap: 50px;
  margin-bottom: 80px;
   display: grid;
  align-items: center;
}

.service-detail-item.reverse {
    direction: rtl;
}

.service-detail-item.reverse > * {


   direction: ltr;}

.service-detail-content {
  padding: 20px 0;
}

.service-detail-title {
  font-size: 32px;
  font-weight: 700;
    color: #1a1a2e;
   margin-bottom: 18px;
}

.service-detail-description {
	font-size:  16px;
	color: #5a6c7d;
  line-height: 1.8;
   margin-bottom: 24px;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
        padding: 10px 0;
  padding-left: 28px;
  position: relative;
				 color: #2c3e50;
  font-size: 15px;
}  

.service-features li:before 
 {
  left: 0;
   background: #667eea;
  content: '';
   width:8px;
  height: 8px;
	top: 12px;
    position: absolute;
	 border-radius: 50%;
}

.service-price {
   font-size: 18px;
	 font-weight: 600;
     color: #667eea;
}

.service-detail-image  
  {
      border-radius : 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  width: 100%;
	 height: 400px;
  object-fit: cover;
 transition: transform 0.5s ease;
}

.service-detail-item:hover .service-detail-image {
  transform: scale(1.03);
}

.pricing-models {
      padding:       80px 20px;
  background: linear-gradient(180deg, #f5f7fa 0%, #e8ecf1 100%);
}

.pricing-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
   margin-top: 50px; 
	
}

.pricing-card {
    background: white;
         padding: 35px;
  border-radius: 12px;
  border: 2px solid #e8eef7;
   text-align: center;
    transition: all 0.5s ease;
   position   :    relative;
} 

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
}

.pricing-card.featured {
  border-color  :     #667eea;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-title {
  font-size: 22px;
    font-weight: 700;
    color: #1a1a2e;
	margin-bottom: 10px;
}

.pricing-description {
   font-size: 14px;
    color: #5a6c7d;
    margin-bottom: 25px;
    min-height: 40px;
}

.pricing-list {
   list-style   :none;
   margin-bottom:      25px;
  text-align: left;
}

.pricing-list li {
	padding   :       10px 0;
    color: #2c3e50;
   font-size: 14px;
    border-bottom: 1px solid #f0f2f5;
}

.pricing-list li:last-child


{
		 border-bottom: none;


}

.pricing-note {
   font-size: 13px;
    font-weight:600;
   color: #667eea;
      text-transform: uppercase;
      letter-spacing    :    0.5px;
}

.webinar-section {
  background: white;
	 padding   :80px 20px;
}

.webinar-intro {
    font-size: 18px; 
	  text-align: center; 
	      color: #5a6c7d; 
	   max-width: 700px; 
	   margin: 0 auto 50px; 
	               line-height: 1.7; 

}

.webinar-list {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap :       28px;
}

.webinar-item {
   background: #f8f9fb;
	padding: 30px;
	 border-radius     :      10px;
         border-left: 5px solid #667eea;
  transition: all 0.4s ease;
}

.webinar-item:hover {

  transform: translateX(8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.1);


}

.webinar-item h3  
  {
      font-size: 18px;
   font-weight: 600;
   color :       #1a1a2e;
    margin-bottom: 12px;
	


}

.webinar-item p {
   font-size     :     14px;
   color:       #5a6c7d;
	line-height: 1.7;
  margin-bottom :12px;
}

.webinar-meta {
	 font-size: 13px;
   color: #667eea;
  font-weight: 500;
}

.faq-section {
  padding: 80px 20px;
  background: linear-gradient(180deg, #f5f7fa 0%, #ffffff 100%);
}  

.faq-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
        margin-top: 50px;
     }

.faq-item {
   background: white;
    padding: 28px;
    border-radius: 10px;
  border: 1px solid #e8eef7;
                    transition: all 0.4s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
    border-color: #667eea;
}

.faq-question {
  margin-bottom: 12px;

	    color: #1a1a2e;

	    font-weight: 600;

	          font-size     :     16px;
}

.faq-answer {
        font-size:    14px;
  color: #5a6c7d;
   line-height: 1.8;
}

.thankyou-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px;
   text-align: center;
  color: white;
   min-height: 600px;
    display :   flex;
       align-items: center;
  justify-content: center;
}

.thankyou-container 
 {
  max-width: 600px; 

}

.success-icon-wrapper  
  {
   margin-bottom  :     30px;
}

.success-icon {
  width: 80px; 
	  height    :       80px; 
	  stroke: white; 
	    fill  :        none; 
	    stroke-width: 1.5; 
	  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2)); 
	  animation: scaleInPulse 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

}@keyframes scaleInPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.15);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-title {
    font-size: 48px;
                    font-weight: 700;
  margin-bottom: 12px;
}

.thankyou-name {
    font-size    :     22px;
   font-weight: 600;
   margin-bottom: 16px;
  opacity    :        0.95;


}

.thankyou-message {

	   font-size: 18px;
    margin-bottom: 35px;
    opacity: 0.9;
   line-height: 1.6;


}

.thankyou-details {
  background: rgba(255, 255, 255, 0.1);
   padding: 25px;
    border-radius   :        10px;
  margin-bottom: 35px;
  backdrop-filter: blur(10px);
}

.detail-text {
          font-size: 16px;
  line-height: 1.8;
} 

.thankyou-actions {

	    display: flex;
  gap :16px;
  justify-content: center;
    margin-bottom    :50px;
  flex-wrap: wrap;}

.action-button {
   -webkit-border-radius: 50px;
  display: inline-block;
  padding: 14px 30px;
        border-radius: 50px;
   font-weight: 600;
  font-size  :        15px;
   transition: all 0.4s ease;
}

.action-button.primary {
    background: white;
  color: #667eea;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.action-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.4);
}

.action-button.secondary {
   border: 2px solid white;
    color: white;
                    background: transparent;
}

.action-button.secondary:hover {
   background: white;
    color: #667eea;
}

.thankyou-expectations {
  background: rgba(255, 255, 255, 0.15);
   padding: 30px;
    border-radius: 10px;
  backdrop-filter: blur(10px);

} 

.expectations-title {
	font-size: 18px;
   font-weight: 600;
   margin-bottom: 18px;
}

.expectations-list {
   text-align: left;
  list-style: none;

}

.expectations-list li {
   padding: 10px 0;
	 padding-left: 28px;
	position: relative;
    font-size: 14px;
   line-height  :       1.6;
}

.expectations-list li:before {
  content: '';
	position    :  absolute;
   left: 0;
   top: 8px;
  width  :     6px;
	 height: 6px;
         background: white;
	border-radius: 50%;
}

.why-coaching
{
                    background: white;
	padding: 80px 20px;
}

.reasons-grid {
                    display:   grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
      margin-top: 50px;
}

.reason-card {
  background: linear-gradient(135deg, #f8f9fb 0%, #f0f2f5 100%);
	padding: 35px;
    border-radius: 12px;
          text-align: center;
    transition: all 0.5s ease;
  position: relative;
               border: 1px solid #e8eef7;
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
  border-color: #667eea;
}

.reason-number {

   display: inline-flex;
					align-items: center;
   justify-content   :      center;
   width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color :white;
     font-size: 22px;
   font-weight: 700;
    border-radius: 50%;
    margin-bottom: 16px; 

}

.reason-card h3 {
   font-size: 18px;
       font-weight  : 600;
	 color: #1a1a2e;
    margin-bottom: 12px;
}

.reason-card p{
       font-size: 14px;
   color: #5a6c7d;
  line-height: 1.7;


}

.next-steps {
   padding: 80px 20px;
  background: linear-gradient(180deg, #f5f7fa 0%, #e8ecf1 100%);
}

.steps-intro {
    font-size: 17px;

                    text-align: center;

   color: #5a6c7d;

    max-width   :   700px;

  margin: 0 auto 50px;

  line-height    :  1.7;
}

.steps-content    {
       display  :   grid;
     grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
          gap: 28px;


}


.step-item   {
    background: white;
	padding:   30px;
    border-radius: 10px;
   border-left: 4px solid #667eea;
  transition: all 0.4s ease;
}

.step-item:hover {
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.1);
  transform: translateY(-4px);
	
}


.step-title {
       font-size:17px;
  font-weight  :     600;
  color: #1a1a2e;
   margin-bottom: 12px;
     }

.step-item p {
  font-size: 14px;
  color :      #5a6c7d;
  line-height: 1.7;
}

.cta-final {
   padding     :      70px 20px;

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

 text-align: center;

   color: white;
}

.cta-final-title {
  font-size: 40px;
   font-weight: 700;
    margin-bottom: 16px; 

}

.cta-final-text {
   margin-bottom: 35px;
    opacity    :0.95;
   font-size: 17px;
}@media (max-width: 768px) {
    .services-main-title {
        font-size: 36px;
    }

    .services-intro-text {
        font-size: 16px;
    }

    .service-detail-item {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 50px;
    }

    .service-detail-item.reverse {
        direction: ltr;
    }

    .service-detail-title {
        font-size: 24px;
    }

    .service-detail-image {
        height: 300px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .webinar-list {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-title {
        font-size: 36px;
    }

    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .steps-content {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }

    .cta-final-title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .services-main-title {
        font-size: 26px;
    }

    .services-intro-text {
        font-size: 14px;
    }

    .service-detail-content {
        padding: 0;
    }

    .service-detail-title {
        font-size: 20px;
    }

    .service-detail-image {
        height: 220px;
    }

    .pricing-title {
        font-size: 18px;
    }

    .webinar-item {
        padding: 20px;
    }

    .webinar-item h3 {
        font-size: 15px;
    }

    .thankyou-hero {
        padding: 60px 15px;
        min-height: auto;
    }

    .success-icon {
        width: 60px;
        height: 60px;
    }

    .thankyou-title {
        font-size: 28px;
    }

    .thankyou-name {
        font-size: 18px;
    }

    .reason-card {
        padding: 22px;
    }

    .step-item {
        padding: 20px;
    }

    .cta-final-title {
        font-size: 22px;
    }

    .thankyou-expectations {
        padding: 20px;
    }

    .thankyou-details {
        padding: 20px;
    }
}.policySection {
  padding  :80px 2rem;
    background: #f8f9fa;
}  

.policyContainer {
	 max-width: 800px;
    margin: 0 auto;
       text-align: left;
}

.policyContainer h2 {
  font-size: 2.5rem;
               color: #2c3e50;
    margin-bottom: 1.5rem;
         font-weight: 700;


} 

.policyContainer p {
    color: #7f8c8d;
    margin-bottom: 1.5rem;
  line-height: 1.7;
     font-size   :   1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}