* {
  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: #ffffff;
   padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
   position: sticky;
  top   :     0;
	 z-index: 1000;
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
	justify-content: space-between;
  align-items: center;
}

.navbar-logo img
{
  height  :  64px;
    width: auto;
}

.nav-menu {
	   display: flex;
   list-style: none;
	 gap: 2rem;
     }

.nav-link {
  text-decoration: none;
    color: #2c3e50;
  font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover{
  color    :   #3498db;
}

.burger-menu {
    flex-direction: column;
  cursor: pointer;
  gap: 6px;
   display: none;
}

.burger-line {
	   width: 25px; 
	   height :3px; 
	   background-color: #2c3e50; 
	  transition: all 0.3s ease; 
	         border-radius: 2px;
     }  

.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(8px, -8px);
}

.nav-menu.active {
    display: flex !important;
}

.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:     3.5rem;
  color: #1a252f;
  margin-bottom:      1.5rem;
  font-weight: 700;
	line-height: 1.2;
}

.hero-content p {
	font-size: 1.25rem;
    color: #555555;
   margin-bottom  :    2rem;
  line-height: 1.8;
}

.cta-button {
  display  :     inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
  padding: 1rem 2.5rem;
   border-radius: 8px;
  text-decoration: none;
   font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}

.cta-button:hover		{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);


}

.hero-image img {
  width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-preview {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 2rem;
}

.section-header {
  text-align: center;
    max-width: 600px;
	margin: 0 auto 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
   color: #1a252f;
 margin-bottom :   1rem;
  font-weight    :    700;

}

.section-header p {
   font-size: 1.1rem; 
	  color: #666666;
}

.services-grid {
  max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2.5rem;
}

.service-card 
 {
	background: white;
    padding: 2.5rem;
    border-radius    :     12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
   transition   :   transform 0.3s ease, box-shadow 0.3s ease;
} 

.service-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.service-card img {
     width     :  100%;
  height: 250px;
  object-fit: cover;
                    border-radius: 8px;
   margin-bottom: 1.5rem;}

.service-card h3 {
  font-size   :       1.5rem;
    color: #2c3e50;
   margin-bottom: 1rem;
  font-weight: 600;
}

.service-card p {
    color   :   #666666;
   line-height:        1.8;
   font-size: 0.95rem;
}

.coaching-programs     {
   padding: 4rem 2rem;
   display: grid;
  grid-template-columns: 1fr 1fr;
         max-width: 1200px;
       margin: 0 auto;
    gap: 3rem;
  align-items: center;
}



.program-content h2 {
    font-size: 2.5rem;
    color: #1a252f;
   margin-bottom: 1.5rem;
    font-weight: 700; 

}

.program-content p {
 margin-bottom: 2rem;
 color: #666666;
  font-size     :       1.1rem;
  line-height  :     1.8;
}

.program-features {
	    display  :        grid;
          gap  :     1.5rem;
	}



.feature-item {
   padding: 1.5rem;
	background: #f0f4f8;
	border-left: 4px solid #3498db;
  border-radius: 6px;
}

.feature-item h4 {
   color: #2c3e50;
  margin-bottom: 0.5rem;
	font-weight: 600;

	}

.feature-item p {
    color: #666666;
  font-size   : 0.95rem;
}

.program-image img {
    width: 100%;
	height     :    auto;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.conference-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
  padding: 4rem 2rem;
}

.conf-header {
    text-align: center;
       max-width: 700px;
   margin: 0 auto 3rem;
}

.conf-header h2 {
    font-size : 2.5rem;
   color     :    white;
        margin-bottom: 1rem;
    font-weight: 700;
}

.conf-header p {
   font-size: 1.1rem;
    color: #ecf0f1;
} 

.conference-grid {
    max-width: 1200px;
   margin :      0 auto;
    display   :grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.conf-item {
	  background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
   border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
   transition: transform 0.3s ease;


}

.conf-item:hover

{
  transform: translateY(-5px);
}

.conf-image-wrapper	{
    width: 100%;
  height: 250px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.conf-image-wrapper img {
	width: 100%;

			 height: 100%;

	  object-fit  :     cover;
}


.conf-item h3{
    font-size: 1.4rem;
  color: white;
  font-weight: 600;
    margin-bottom   :1rem;
}

.conf-item p     {
  color: #bdc3c7;
   line-height: 1.8;
   margin-bottom: 1rem;
  font-size:     0.95rem;
}

.conf-date {
  display: inline-block;
  background: rgba(52, 152, 219, 0.2);
  color: #3498db;
   padding: 0.5rem 1rem;
  border-radius     :20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.webinar-promo {

  border-radius: 12px;
    background:#ecf0f1;
    max-width: 1200px;
  text-align: center;
    margin: 0 auto;
   padding: 4rem 2rem;
}

.webinar-promo h2 {
	  font-size    :      2.2rem;
  color: #1a252f;
   margin-bottom: 1rem;
  font-weight    :    700; 
	

}

.webinar-promo p		{
   color: #555555;
   font-size: 1.1rem;
    margin-bottom: 2.5rem;
}

.webinar-list {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    text-align: left;
}

.webinar-item  
  {
   background: white;
    padding: 2rem;
		 border-radius    :   8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.webinar-item h4 {
   color     :#2c3e50;
   margin-bottom: 0.8rem;
    font-size: 1.1rem;
   font-weight: 600;
}


.webinar-item p {
  margin  :  0;

  font-size: 0.95rem;

    color  :#666666;

}

.success-stories    {

		padding: 4rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.success-stories h2 {
  text-align: center;
     font-size: 2.5rem;
  color: #1a252f;
	margin-bottom: 1rem;
    font-weight: 700;
}

.success-stories > p
{
    text-align: center;
 font-size: 1.1rem;
	color: #666666;
   margin-bottom: 3rem;
  max-width  :600px;
   margin-left   :      auto;
  margin-right: auto;
	
}

.stories-grid {
	max-width   :     1200px;
    margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap   :   2rem;
}

.story-card {
   background: white;
  padding: 2.5rem;
    border-radius: 12px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          border-top: 4px solid #3498db;
}

.story-card h3


{
	  color: #2c3e50;
	 margin-bottom: 1rem;
  font-size: 1.2rem;
       font-weight: 600;
     }

.metric    {
    font-size: 2.8rem;
   color: #3498db;
  font-weight: 700;
  margin-bottom: 1rem;
}

.story-card p {
   color: #666666;
  font-size: 0.95rem;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
    padding  :     3.5rem 2rem;
  text-align: center;
  margin: 3rem 2rem;
  border-radius: 12px;
}

.cta-section h2 {
  font-size    : 2.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-section p {
   font-size  :    1.1rem;
    margin-bottom: 2rem;
      opacity: 0.95;
} 

.cta-button-large {
   display  :        inline-block;
    background: white;
    color: #3498db;
  padding: 1.2rem 3rem;
       border-radius: 8px;
   text-decoration: none;
       font-weight: 700;
  transition     :     transform 0.3s ease;
}

.cta-button-large:hover {

	  transform: scale(1.05);
	}

.contact {
   max-width: 900px;
    margin: 0 auto;
  padding: 4rem 2rem;
}

.contact-container h2 {
     font-size  :    2.2rem;
  color: #1a252f;
   text-align: center;
    margin-bottom: 0.5rem;
   font-weight: 700;
}

.contact-container > p {
 text-align: center;
  color: #666666;
  margin-bottom :    2rem;
  font-size: 1rem;
}

.contact-form {

    display:        grid;
  gap :     1.5rem;
     }

.contact-form input,
.contact-form select,
.contact-form textarea {
	   padding:     1rem; 
	   border: 2px solid #ecf0f1; 
	   border-radius: 8px; 
	  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; 
	    font-size: 1rem; 
	  transition: border-color 0.3s ease; 
	  background-color: #ffffff; 
	  color: #2c3e50;



}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
   border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
	  color: #95a5a6;
	}

.contact-form select option {
    color: #2c3e50;
    background-color: white;
}

.submit-btn {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color  :      white;
    padding: 1rem 2rem;
   border    :none;
   border-radius: 8px;
   font-size :       1.05rem;
    font-weight: 600;
    cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
}


.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
          max-width: 1200px;
	margin: 0 auto;
    display    :    grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2.5rem;
    margin-bottom: 2rem;
}

.footer-logo-section{
        display  :  flex;
   align-items: flex-start;
}

.footer-logo {
   height: 86px;
  width  :  auto;
  filter: brightness(0) invert(1);
}

.footer-section h3 {
                    color: white;
    margin-bottom: 1.5rem;
  font-weight: 600;
    font-size: 1.1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
   margin-bottom: 0.8rem;
}


.footer-section a {
	  color  :      #bdc3c7;
	transition: color 0.3s ease;
  text-decoration: none;
}

.footer-section a:hover


{
	color: #3498db; 
	
}


.footer-section p {
      color: #bdc3c7;
     line-height: 1.8;
      font-size: 0.95rem;
     margin-bottom: 0.8rem;
}

.phone-number {
    color: #3498db;
    font-weight: 600;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
	 padding-top: 1.5rem;
   text-align: center;
  color: #95a5a6;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .coaching-programs {
        grid-template-columns: 1fr;
        padding: 2.5rem 1.5rem;
    }

    .program-content h2 {
        font-size: 1.8rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .burger-menu {
        display: flex;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .cta-section {
        margin: 2rem 1rem;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .contact {
        padding: 2rem 1.5rem;
    }

    .contact-container h2 {
        font-size: 1.6rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
}@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
    }

    .submit-btn {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
    }

    .metric {
        font-size: 2rem;
    }

    .nav-menu {
        top: 60px;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color   :  white;
    padding: 3rem 2rem;
  text-align :    center;
}

.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;
  max-width: 700px;
  margin:     0 auto;
}

.services-container {
    max-width: 1200px;
	margin: 0 auto;
    padding: 0 2rem;
}

.service-detailed {
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
                    align-items: center;
	margin: 4rem 0;
	 padding: 2rem;
  background: #f8f9fa;
    border-radius: 12px;
}

.service-reversed {
    direction: rtl;
}

.service-reversed > * {
   direction     :ltr;
}

.service-image {
   overflow: hidden;
       border-radius  :        12px;
}

.service-image img {
   width  :        100%;
  height: auto;
    display    :       block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
          transition: transform 0.3s ease;
}

.service-detailed:hover .service-image img {
  transform: scale(1.05);
}

.service-info h2 {

	    font-size: 2rem;
   color: #1a252f;
  margin-bottom: 1.5rem;
	 font-weight: 700;

}

.service-info p {
	 font-size :      1rem;
  color: #555555;
  line-height: 1.8;
  margin-bottom    :      1.5rem;
}

.service-features-list   {
     display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
                    margin-bottom  : 2rem;


}

.feature {
   background :    white;
	 -webkit-border-radius: 8px;
	 padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.feature h4 {
   font-weight: 600;
  font-size: 1rem;
   margin-bottom: 0.5rem;
    color   :       #2c3e50;
}

.feature p   {
   color: #666666; 
    font-size: 0.9rem; 
  margin: 0; 
   line-height: 1.6;
}

.service-pricing {
  display: flex;
	align-items: baseline;
   gap: 0.5rem;
  background  :    white;
   padding: 1.5rem;
  border-radius: 8px;
    border: 2px solid #3498db;
}

.price-label		{
    color     : #666666;
  font-size     :       0.9rem;
  font-weight: 500;
}

.price {
    font-size: 2.2rem;
  color: #3498db;
   font-weight     :     700;
}

.price-period {
   color  :#666666;
	font-size: 0.9rem;
   margin-left: auto;


}

.webinars-section {
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  max-width: 1200px;
    margin: 0 auto;
}

.webinars-section h2 {
  text-align: center;
	font-size: 2.5rem;
     color: #1a252f;
  margin-bottom: 0.5rem;
    font-weight: 700;
}

.webinars-section > p {
   text-align: center;
    color: #666666;
   font-size: 1.1rem;
    margin-bottom: 3rem;
}

.webinars-grid  
  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.webinar-card {
  background: white;
	 padding: 2rem;
         border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
   border-top: 4px solid #3498db;
}

.webinar-card:hover {
     transform: translateY(-5px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
     }

.webinar-header {
    display: flex;
  justify-content: space-between;
  align-items: flex-start;
   margin-bottom: 1rem;
}

.webinar-header h3 {
   color: #2c3e50;
  font-size     :       1.2rem;
  font-weight   :600;
					margin   :      0;
   flex: 1;
}

.webinar-frequency {
    background: #3498db;
  color  :      white;
   padding: 0.3rem 0.8rem;
	border-radius: 20px;
    font-size    : 0.8rem;
    font-weight: 600;
  white-space: nowrap;
    margin-left: 1rem;
}

.webinar-card p


{
    color: #666666;
  font-size: 0.95rem;
   line-height: 1.6;
	 margin-bottom: 1.5rem;
}

.webinar-info {
  display: flex;
    gap: 1.5rem;
	font-size: 0.9rem;
  color :     #95a5a6;
}

.comparison-section {
	padding: 4rem 2rem; 
	  max-width: 1200px; 
	   margin :        0 auto;
	
}

.comparison-section h2 {
  text-align: center;
    font-size: 2.5rem;
   color: #1a252f;
  margin-bottom: 3rem;
   font-weight: 700; 
	
}

.comparison-table 
 {
  overflow-x: auto;

}

.comparison-table table
{
  width: 100%;
  border-collapse: collapse;
   background   :    white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
         border-radius :     8px;
   overflow: hidden;
}

.comparison-table thead  {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.comparison-table th  {
	color: white; 
	    padding: 1.5rem; 
	                    text-align :    left; 
	    font-weight: 600; 
	   font-size: 1rem;
}

.comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #ecf0f1;
  color: #555555;
}

.comparison-table tbody tr:hover {
   background-color: #f8f9fa;

}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.faq-section


{
  padding: 4rem 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  max-width   :  1200px;
    margin: 0 auto;
}

.faq-section h2
	{
    text-align: center;
   font-size: 2.5rem;
   color: #1a252f;
  margin-bottom  :  3rem;
	font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
}

.faq-item

{
	background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
}

.faq-item h3 {
   	color: #2c3e50;
   margin-bottom: 1rem;
    font-size    :        1.1rem;
    font-weight :   600;


}  

.faq-item p {
    color: #666666;
      line-height: 1.8;
     font-size: 0.95rem;
}

.thankyou-container {
   padding: 3rem 2rem;
    min-height: 60vh;
          display: flex;
  align-items:        center;
	 justify-content: center;
}


.thankyou-content {
    max-width: 700px;

	    text-align: center;

	 background: white;

	  padding: 3rem;

	  border-radius: 12px;

	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thankyou-icon {
   margin-bottom: 2rem;
}

.checkmark {
    width: 100px;
    height  :      100px;
	 margin:    0 auto 1.5rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    border-radius  :       50%;
    display: flex;
    align-items: center;
   justify-content: center;
     font-size: 3rem;
  color: white;
    font-weight: 700;
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.thankyou-content h1 {
  font-size: 2.5rem;
  color :       #1a252f;
   margin-bottom: 1rem;
	 font-weight: 700;
}



.thank-message  {
   font-size: 1.1rem;
  color: #666666;
    line-height: 1.8;
  margin-bottom: 2.5rem;
}

.next-steps {
   background: #f8f9fa;
			padding   :  2rem;
   border-radius: 8px;
	 -moz-border-radius: 8px;
    margin-bottom: 2rem;
  text-align: left;
}

.next-steps h2 {
  font-size: 1.4rem;
    color    :  #2c3e50;
	margin-bottom     :    1.5rem;
                    text-align:     center;
  font-weight: 600;
}

.steps-list {
  display: grid;
          gap: 1.5rem;
}

.step
{
   display: grid;
   grid-template-columns: 50px 1fr;
  gap: 1.5rem;
}

.step-number {
               width: 50px;
    height     :50px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: white;
   border-radius: 50%;
   display: flex;
    align-items: center;
  justify-content: center;
    font-weight     :700;
	font-size: 1.2rem;
    flex-shrink: 0;}

.step-content h3 {
                    color: #2c3e50;
               margin-bottom     :   0.3rem;
	 font-size: 1rem;
  font-weight: 600;
}

.step-content p {
   	 color: #666666;
   font-size  :0.9rem;
    line-height: 1.6;
         margin: 0;


}

.info-box {
  background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
    padding: 1.5rem;
   border-radius: 8px;
    border-left: 4px solid #3498db;
    margin-bottom: 2rem;
  text-align: left;
}

.info-box h3 {
    color  :       #2c3e50;
       margin-bottom: 0.5rem;
      font-weight: 600;
}

.info-box p {
    color: #555555;
    font-size: 0.95rem;
  line-height: 1.6;
    margin: 0;
}

.cta-group {
  display :    grid;
          grid-template-columns: 1fr 1fr;
    gap: 1rem;
  margin-bottom: 2rem;
}

.btn-primary {

   display: inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
	 padding: 1rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);


}

.btn-primary:hover{
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.btn-secondary   {
      display: inline-block;
   background: white;
    color  :        #3498db;
   padding: 1rem 1.5rem;
    border-radius: 8px;
          text-decoration: none;
   font-weight    :      600;
    border: 2px solid #3498db;
   transition: all 0.3s ease;}

.btn-secondary:hover{


   background: #3498db;
  color: white;



}

.social-info	{
   color: #666666;
   font-size: 0.9rem;
    margin-top: 1.5rem;
  padding-top  :        1.5rem;
    border-top :     1px solid #ecf0f1; 

}



.trust-section {
	padding: 3rem 2rem;

  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);

	color: white;

}

.trust-section h2 {
  text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  font-weight: 700;
}

.trust-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap     :  2rem;



}

.trust-card {
  text-align: center;
    padding    :     1.5rem;
  background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
  backdrop-filter: blur(10px);
}

.trust-number {
      font-size: 2.5rem;
   color: #3498db;
  font-weight: 700;
     margin-bottom: 0.5rem;}

.trust-card p {
	color: #ecf0f1;
  font-size: 1rem;
}@media (max-width: 768px) {
    .service-detailed {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 2rem 0;
        padding: 1.5rem;
    }

    .service-reversed {
        direction: ltr;
    }

    .service-features-list {
        grid-template-columns: 1fr;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .cta-group {
        grid-template-columns: 1fr;
    }

    .comparison-table table {
        font-size: 0.9rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 2rem 1.5rem;
    }

    .thankyou-content h1 {
        font-size: 2rem;
    }

    .checkmark {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .step {
        grid-template-columns: 40px 1fr;
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}@media (max-width: 480px) {
    .service-image {
        margin-bottom: 1rem;
    }

    .service-pricing {
        flex-direction: column;
        gap: 0.5rem;
    }

    .price-period {
        margin-left: 0;
        text-align: center;
    }

    .webinar-header {
        flex-direction: column;
        gap: 0.5rem;
    }

    .webinar-frequency {
        margin-left: 0;
        align-self: flex-start;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .checkmark {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .next-steps {
        padding: 1.5rem;
    }

    .step {
        grid-template-columns: 35px 1fr;
        gap: 0.8rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.85rem;
    }

    .cta-group {
        gap: 0.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-number {
        font-size: 2rem;
    }
}.policySection {
  padding   :     4rem 2rem;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  min-height: calc(100vh - 200px);
}


.policyContainer {
    max-width: 900px; 
	   margin: 0 auto; 
	    text-align: left; 
	    background: white; 
		padding: 3rem; 
	   border-radius: 12px; 
	  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policyContainer h1 {
    color: #1a252f;

 border-bottom: 3px solid #3498db;

      padding-bottom: 1rem;

   margin-bottom: 2rem;

    font-weight: 700;

  font-size: 3rem;
}

.policyContainer h2 {
   margin-top: 2rem;
   font-size    :     1.8rem;
	font-weight: 600;
    color: #2c3e50;
	margin-bottom: 1.2rem;
}

/* Third-party styles */


	/* Typography */
.policyContainer p {
   color  :    #555555;
    margin-bottom: 1.3rem;
   line-height: 1.8;
   font-size: 1rem;
}

.policyContainer strong {
  color   :    #1a252f;
   font-weight: 600;
}

.policyContainer ul {
  list-style  :        none;
   margin-bottom: 1.5rem;
               margin-left: 0; 

}

.policyContainer li {
  color: #555555;
    margin-bottom: 0.8rem;
    line-height: 1.7;
   padding-left: 1.5rem;
   position: relative;
}

.policyContainer li:before {
  content: "•";
    position    :        absolute;
	 left: 0;
       color:        #3498db;
    font-weight: 700;
}
@media (max-width: 768px) {
    .policySection {
        padding: 3rem 1.5rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer li {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 2rem 1rem;
    }

    .policyContainer {
        padding: 1.5rem 1rem;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        line-height: 1.7;
    }

    .policyContainer li {
        font-size: 0.9rem;
        margin-bottom: 0.6rem;
        padding-left: 1.2rem;
    }

    .policyContainer strong {
        display: inline;
    }
}

@media print {
    .navbar,
    .footer {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer {
        box-shadow: none;
        padding: 0;
        max-width: 100%;
    }

    .policyContainer h1,
    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        page-break-inside: avoid;
    }
}