* {
   margin: 0;
         padding: 0;
    box-sizing: border-box;
}

html, body {
         width: 100%;
   height: 100%;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2d3436;
    background-color: #fafafa;
}

.HeaderContainer
	{
	  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding: 0;
  position: sticky;
    top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);

}

.NavbarMain {
    display: flex;
  justify-content     :     space-between;
   align-items: center;
	padding: 1rem 2rem;
	max-width: 1200px;
		 margin: 0 auto;
}  

.NavLogo {

	    flex-shrink: 0;

}

.LogoImg {
	 height: 50px;
  filter: brightness(0) invert(1);
    display: block;
	}

.NavLinks {
   display: flex;

     list-style :     none;

   gap: 2.5rem;
}

.NavLink {
    color  :white;

	   text-decoration: none;

	  font-size: 1rem;

		 font-weight: 500;

	  transition: color 0.3s ease, border-bottom 0.3s ease;

	 padding-bottom: 0.25rem;

		border-bottom: 2px solid transparent;
}

.NavLink:hover    {
	 color :    #ffd700;
    border-bottom: 2px solid #ffd700;
}

.NavToggle  {
   display: none;
          flex-direction: column;
  cursor: pointer;
}

.ToggleLine {
    width: 28px;
	height: 3px;
  background: white;
	margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.NavToggle.active .ToggleLine:nth-child(1)
{
  transform: rotate(45deg) translate(8px, 8px);
}

.NavToggle.active .ToggleLine:nth-child(2) {


 opacity: 0;
	}

.NavToggle.active .ToggleLine:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.HeroSection {

	          display: grid;
  grid-template-columns: 1fr 1fr;
               gap: 3rem;
   align-items:     center;
      padding: 4rem 2rem;
   max-width: 1200px;
    margin : 0 auto;

}

.HeroContent {
  padding-right     :    2rem;
}

.HeroTitle {
  font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
	color: #1a237e;
  margin-bottom: 1.5rem;
}

.HeroDescription {
   font-size: 1.1rem;
   color: #555;
    margin-bottom :  2rem;
  line-height: 1.8;
}

.CTA_Button {
   display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  color: white;
    padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
   font-weight: 600;
    font-size: 1rem;
     transition: all 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.CTA_Button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.HeroImage {
          display: flex;
          align-items :  center;
					justify-content     :     center; 
	
}

.ResponsiveImg {


  width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);}

.ServicesPreview {
     padding: 4rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
       background: white;
   border-radius: 12px;
  margin-bottom: 3rem; 



}

.SectionHeading

{
   font-size: 2.5rem;
    font-weight: 700;
  color: #1a237e;
    text-align :       center;
  margin-bottom   :     3rem;
}

.ServicesGrid {
   display    :  grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.ServiceCard {
   background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
  transition: all 0.3s ease, transform 0.3s ease;
    border    : 1px solid #e8e8e8;
}

.ServiceCard:hover {
  transform: translateY(-8px); 
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}  

.CardImage 
 {
    width: 100%;

    height: 250px;

    object-fit: cover;
}

.CardTitle {
    font-size: 1.4rem;
   font-weight: 600;
   color   :    #1a237e;
    padding: 1.5rem 1.5rem 0.5rem;
}

.CardText
	{
   color: #666;
  padding   :        0 1.5rem 1.5rem;
  font-size: 0.95rem;
    line-height  :     1.6; 

}

.MoreButton {
    display: block; 
  margin: 0 auto; 
	background: #283593; 
          color: white; 
    padding: 0.875rem 2rem; 
   border-radius: 50px; 
        text-decoration    :  none; 
   font-weight: 600; 
   text-align: center; 
       width: fit-content; 
   transition: all 0.3s ease; 
  box-shadow: 0 4px 15px rgba(40, 53, 147, 0.2);}

.MoreButton:hover {
   background: #1a237e;
  box-shadow: 0 6px 20px rgba(26, 35, 126, 0.3);
}

.WhyChooseUs {
      padding: 4rem 2rem;
               max-width: 1200px;
  margin: 0 auto;
	}  

.BenefitsContainer {
	    display   :      grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.BenefitItem {

	  background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(238, 90, 111, 0.1) 100%);
  padding  :    2rem;
   border-radius: 12px;
   border-left: 4px solid #ff6b6b;

}

.BenefitTitle {
  font-size: 1.3rem;
   font-weight: 700;
    color: #1a237e;
   margin-bottom: 0.75rem;
}

.BenefitText {
	   color: #555;
    line-height: 1.7;
   font-size: 0.95rem;
     }

.CoachingSession {
    display: grid;

	                    grid-template-columns :      1fr 1fr;

	    gap: 3rem;

	  align-items: center;

	  padding  :  4rem 2rem;

	       max-width: 1200px;

	  margin: 0 auto;

	    background     :        white;

	                    border-radius: 12px;

	    margin-bottom: 3rem;
}

.SessionImage {
	width: 100%;
  height: auto;
 border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12); 
	
}

.SessionContent {
  padding-left: 2rem;
}

.SessionTitle {
  font-size: 2rem;
  font-weight: 700;
	color: #1a237e;
	 margin-bottom     :1.5rem;
}

.SessionText {
    margin-bottom: 1.5rem;
   line-height: 1.8;
  color: #555;
	
}

.CTA_ButtonAlt {
	   display     :       inline-block;
      background     : #283593;
   color:  white;
  padding: 0.875rem 2rem;
   border-radius: 50px;
  text-decoration :       none;
   font-weight: 600;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(40, 53, 147, 0.2);

     }

.CTA_ButtonAlt:hover     {
  background: #1a237e;
  transform: translateY(-2px);
}

.UpcomingEvents 
 {

    padding   :  4rem 2rem;
    max-width   :      1200px;
    margin  :       0 auto;
}

.EventsList {
      display: grid;
  grid-template-columns: repeat(3, 1fr);
     gap: 2rem;
} 

.EventCard {


  background: linear-gradient(135deg, #f0f4ff 0%, #f5f9ff 100%);
  padding: 2rem;
  border-radius: 12px;
   border:      2px solid #e8eef5;
    transition : all 0.3s ease;

}

.EventCard:hover {
      border-color: #283593;
  box-shadow: 0 10px 30px rgba(40, 53, 147, 0.15);

}

.EventTitle  
  {
	font-size: 1.3rem;
    font-weight: 700;
   margin-bottom     :    0.75rem;
  color: #1a237e;
}

.EventInfo
{
	    color: #ff6b6b; 
    font-weight: 600; 
  font-size:       0.9rem; 
   margin-bottom: 0.75rem;}

.EventDesc {

    color: #666;
   line-height: 1.6;


}

.CTASection {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    padding  :        4rem 2rem;
  margin: 3rem 0;
    text-align     : center;
}

.CTAWrapper {


    max-width: 800px;
      margin: 0 auto;
     }  

.CTAHeading {
  font-size :       2.5rem;
  font-weight: 700;
  color     :white;
  margin-bottom: 1rem;
}  

.CTADescription

{
          color: #e8e8e8;
    font-size  :   1.1rem;
  margin-bottom: 2rem;
   line-height :   1.7;
}

.CTAButtonMain {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color     :   white;
    padding : 1rem 2.5rem;
    border-radius: 50px;
   text-decoration: none;
   font-weight: 600;
  font-size: 1rem;
   transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.CTAButtonMain:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);

}

.ContactSection {
	 padding: 4rem 2rem;
   max-width: 800px;
  margin: 0 auto 3rem;
  background: white;
                    border-radius: 12px;
}

.ContactForm  
  {
    display: flex;

	    flex-direction: column;

	     gap: 1.5rem;
}

.FormGroup {
   display: flex;
   flex-direction: column;


}

.FormLabel {
    font-weight: 600;
	 color: #1a237e;
					margin-bottom: 0.5rem;
     font-size: 0.95rem;
     }

.FormInput,
.FormSelect,
.FormTextarea {
   padding: 0.875rem 1rem;
  border: 2px solid #e8e8e8;
  border-radius: 8px;
  font-size   :       1rem;
          font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.FormInput:focus,
.FormSelect:focus,
.FormTextarea:focus {
    outline: none;
   border-color: #283593;
  box-shadow: 0 0 0 3px rgba(40, 53, 147, 0.1); 

}

.FormButton {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
   color: white;
   padding: 1rem 2rem;
    border   :none;
    border-radius  :50px;
    font-size: 1rem;
    font-weight: 600;
	cursor     : pointer;
   transition    : all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.FormButton:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.FooterMain  
  {
  background: linear-gradient(135deg, #1a237e 0%, #0d1b5e 100%);
  color: white;
  padding: 3rem 2rem 1rem;
  margin-top: 4rem;
}  

.FooterContent    {
	display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
   max-width: 1200px;
  margin: 0 auto 2rem;}

.FooterBrand {
    display: flex;
	flex-direction: column;
   justify-content    :        flex-start;
	
}

.FooterLogo {
 height: 50px;
  filter: brightness(0) invert(1);
                    margin-bottom: 1rem;


}

.FooterInfo {
  display: flex;
   flex-direction: column;
   gap :     1.5rem;
} 

.InfoBlock {}

.FooterHeading {
	font-size: 1rem;
   font-weight: 700;
    margin-bottom: 0.75rem;
  color: #ffd700;
}

.FooterText {
    color: #d0d0d0;
   line-height: 1.6;
    font-size: 0.9rem;


}

.FooterLinks {
   display: flex;
   flex-direction  :       column;
}

.LinksList {
	list-style: none;
  display: flex;
    flex-direction: column;
  gap: 0.75rem;
}

.FooterLink    {
   color  :  #d0d0d0;
          text-decoration: none;
    font-size  :0.9rem;
   transition: color 0.3s ease;
}

.FooterLink:hover	{
    color: #ffd700;
}

.FooterBottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
  text-align: center;
}

.FooterCopyright {
	 color: #aaa;
     font-size: 0.85rem;
}@media (max-width: 768px) {
    .NavLinks {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .NavLinks.active {
        display: flex;
    }

    .NavToggle {
        display: flex;
    }

    .HeroSection {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .HeroTitle {
        font-size: 2rem;
    }

    .HeroContent {
        padding-right: 0;
    }

    .ServicesGrid {
        grid-template-columns: 1fr;
    }

    .BenefitsContainer {
        grid-template-columns: 1fr;
    }

    .CoachingSession {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }

    .SessionContent {
        padding-left: 0;
    }

    .EventsList {
        grid-template-columns: 1fr;
    }

    .FooterContent {
        grid-template-columns: 1fr;
    }

    .CTAHeading {
        font-size: 1.8rem;
    }

    .SectionHeading {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .NavbarMain {
        padding: 1rem;
    }

    .LogoImg {
        height: 40px;
    }

    .HeroTitle {
        font-size: 1.5rem;
    }

    .HeroDescription {
        font-size: 0.95rem;
    }

    .CTA_Button {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .SectionHeading {
        font-size: 1.5rem;
    }

    .CardTitle {
        font-size: 1.1rem;
    }

    .SessionTitle {
        font-size: 1.4rem;
    }

    .CTAHeading {
        font-size: 1.4rem;
    }

    .ContactForm {
        gap: 1rem;
    }
}.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;
    }
}.ServicesPageHero {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color: white;
	padding: 4rem 2rem;
  text-align    : center;
   margin-bottom: 3rem;
}

.PageTitle {
   font-size: 3rem;
    font-weight: 700;
     margin-bottom: 1rem;
  line-height     :    1.2;

}

.PageSubtitle


{
  font-size: 1.2rem;
	color: #e8e8e8;
   max-width: 700px;
    margin: 0 auto;
  line-height: 1.7;
	
}

.DetailedServicesSection {
    max-width: 1200px;
  margin: 0 auto 4rem;
   padding: 0 2rem;
}  

.ServiceDetailBlock {
   display: grid;
  grid-template-columns: 1fr 1fr;
               gap: 3rem;
        align-items: center;
    margin-bottom  :4rem;
  padding    :   2rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);}

.ServiceAlternate {
         direction: rtl;


}

.ServiceAlternate > * {
    direction: ltr;
}

.ServiceImageContainer {
   overflow: hidden;
  border-radius     :   12px;
}

.ServiceDetailImage {
   transition    :      transform 0.3s ease;
   height   :        auto;
          display: block;
   width: 100%; 
	
}

.ServiceDetailBlock:hover .ServiceDetailImage {
  transform: scale(1.05);
	
}

.ServiceDetailContent {}

.ServiceDetailTitle {
    font-size     :2rem;
   font-weight: 700;
    color: #1a237e;
   margin-bottom: 1rem;
}

.ServiceDescription {
    color: #555;
   margin-bottom: 1.5rem;
  line-height     :     1.8;
	font-size: 1rem;
}

.FeatureList {
   list-style: none;
    margin-bottom: 1.5rem;
}

.FeatureItem {
  color: #666;
  padding: 0.75rem 0 0.75rem 2rem;
   position: relative;
   line-height:      1.6;
}

.FeatureItem:before {
  content: "▸";
   color: #ff6b6b;
    font-weight: bold;
    position: absolute;
	left: 0;
   font-size: 1.2rem;
}

.PriceInfo {
   display    :  flex;
    gap  :   1rem;
   padding: 1rem;
  background: linear-gradient(135deg, rgba(40, 53, 147, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
  border-radius: 8px;
    border-left: 4px solid #283593;
}

.PriceLabel {
    font-weight  : 600;
	 color: #1a237e;
}

.PriceValue {
    color: #555;
}

.WebinarSection {
	padding: 4rem 2rem;
  max-width: 1200px;
	margin: 0 auto 3rem;
 background   :   #f9f9f9;
    border-radius: 12px;
}

.WebinarIntro {
    text-align: center;

	  color     :     #666;

	    margin-bottom     : 2rem;

	    max-width :700px;

	   margin-left: auto;

	    margin-right: auto;

	    font-size    :   1.05rem;


}

.WebinarGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;

}

.WebinarCard
	{
   background: white;

	  padding: 2rem;

	   border-radius: 12px;

	    border: 2px solid #e8e8e8;

	   transition: all 0.3s ease;
}

.WebinarCard:hover    {
   border-color: #283593;
  box-shadow: 0 12px 36px rgba(40, 53, 147, 0.15);
  transform: translateY(-4px);
}



.WebinarTitle {
    font-size: 1.2rem;
   font-weight: 700;
  color: #1a237e;
	margin-bottom: 0.75rem;
}

.WebinarSchedule {

	  color: #ff6b6b;
  font-weight: 600;
               font-size: 0.9rem;
  margin-bottom: 0.75rem;
     }

.WebinarDesc {
   color: #666;
    margin-bottom: 1rem;
	 line-height: 1.6;
}  

.WebinarBadge {
    display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
   padding   :     0.5rem 1rem;
	border-radius: 50px;
	font-size     :    0.85rem;
    font-weight: 600;
}

.ConferenceSection

{
	padding: 4rem 2rem;
    max-width   :  1200px;
    margin     :   0 auto 3rem;
}

.ConferenceIntro {
          text-align: center;
  color: #666;
   margin-bottom: 3rem;
  max-width: 700px;
   margin-left: auto;
	margin-right     :   auto;
   font-size: 1.05rem;
}

.ConferenceList {


  display     :       grid;
   grid-template-columns: 1fr;
          gap: 2rem;
     }

.ConferenceItem
{
     background: linear-gradient(135deg, #f0f4ff 0%, #f5f9ff 100%);
    padding: 2.5rem;
                    border-radius: 12px;
	border-left: 5px solid #283593;
  transition: all 0.3s ease;
}


.ConferenceItem:hover {
  box-shadow: 0 12px 40px rgba(40, 53, 147, 0.15);
  transform: translateX(8px);
}

.ConferenceHeader {
   margin-bottom   :        1rem;
  display: flex;
    justify-content: space-between;
  align-items: flex-start;
    gap: 2rem;
   flex-wrap: wrap;
	
}

.ConferenceName {
  font-size    :      1.4rem;
                    font-weight: 700;
          color: #1a237e;
}

.ConferenceDate {
     background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: white;
    padding: 0.5rem 1rem;
   border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
     }

.ConferenceContent  {
	color:   #555;
    line-height  :  1.8;
   margin-bottom: 1.5rem;
}  

.ConferenceStats {
   display: flex;
   gap     :    2rem;
    flex-wrap: wrap;
}

.StatItem {
	    color :   #666;
   font-weight  :600;
    font-size: 0.95rem;
        padding-left: 1.5rem;
	 position  : relative;


}

.StatItem:before {
  content: "●";
     color: #ff6b6b;
       position: absolute;
    left: 0;
}

.PricingOverview {
    padding: 4rem 2rem;
   max-width: 1200px;
    margin: 0 auto 3rem;
          background: white;
               border-radius  :  12px;
} 

.PricingIntro {
   text-align: center;
  color: #666;
	margin-bottom: 2rem;
   font-size: 1.05rem;}

.PricingTable {
       border: 2px solid #e8e8e8;

   border-radius: 12px;

    overflow: hidden;


     }

.PricingHeader {
    display: grid;
    grid-template-columns: 2fr 2fr 1.5fr;
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
    color  :       white;
   font-weight: 700;
}

.PricingRow {
    grid-template-columns: 2fr 2fr 1.5fr;
    display: grid;
  border-bottom: 1px solid #e8e8e8;
}

.PricingRow:last-child {
                    border-bottom: none;
}

.PricingRow:nth-child(even) {
  background: #fafafa;
}

.PricingCol {

   padding: 1.5rem;
    display: flex;
        align-items: center;
   color: #333;
  font-size: 0.95rem;
    line-height: 1.6;
}

.PricingHeader .PricingCol     {
     color: white;
     }

.CallToActionServices {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
   padding: 4rem 2rem;
   text-align  :    center;
               border-radius: 12px;
   max-width: 1200px;
   margin     :0 auto 4rem;
	}  

.CTAServiceHeading {
   color: white;
	margin-bottom: 1rem;
    font-weight: 700;
	 font-size: 2rem;
}

.CTAServiceText   {


       margin-bottom: 2rem;
	margin-right: auto;
  max-width: 600px;
        font-size: 1.05rem;
    margin-left: auto;
    color  :     #e8e8e8;
	}



.CTAServiceButton {
  display: inline-block;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
      color: white;
   padding: 1rem 2.5rem;
		 border-radius    : 50px;
    text-decoration  :    none;
   font-weight: 600;
    font-size: 1rem;
   transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
}

.CTAServiceButton:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 107, 107, 0.4);
}

.ThankYouContainer{
      padding: 4rem 2rem;
   max-width  :     900px;
    margin:   0 auto;}

.ThankYouContent   {

  background: white;
    border-radius: 12px;
  padding: 4rem 2rem;
   text-align: center;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);

}

.SuccessIcon {
  margin-bottom: 2rem;
}  

.CheckmarkSVG {
  width: 100px;
   height: 100px;
    display: inline-block;
}

.CircleBackground {

	    fill: none;
    stroke: #2ecc71;
   stroke-width: 2;
     }

.CheckmarkPath {
   fill: none;
  stroke   :  #2ecc71;
    stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ThankYouTitle {
	 font-size: 2.5rem;
    font-weight: 700;
   color: #1a237e;
	margin-bottom: 0.75rem;
}


.ThankYouSubtitle {
    font-size: 1.3rem;
  color: #2ecc71;
    font-weight: 600;
   margin-bottom: 1.5rem;
}

.ThankYouDescription {
    color: #666;
   line-height: 1.8;
  font-size: 1rem;
   margin-bottom  :     2.5rem;
  max-width :      700px;
   margin-left     : auto;
  margin-right: auto;
}

.NextStepsBlock {
  background: linear-gradient(135deg, rgba(40, 53, 147, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
    padding: 2rem;
  border-radius: 12px;
    margin-bottom: 2rem;
    border    :2px solid #e8e8e8;
}

.NextStepsTitle  {
  font-size: 1.3rem;
  font-weight: 700;
  color    :       #1a237e;
  margin-bottom: 1.5rem;
}

.StepsGrid {


    display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
     }

.StepItem {
  text-align: center;
}

.StepNumber {
   display: inline-flex;
  align-items: center;
  justify-content: center;
 width: 50px;
	height: 50px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
   color: white;
    border-radius: 50%;
    font-weight: 700;
  font-size: 1.5rem;
                    margin-bottom: 1rem;
}

.StepTitle {
   color:    #1a237e;
   margin-bottom: 0.5rem;
   font-weight     :      700;
  font-size: 1rem;}

.StepText  {
   color: #666;
    font-size :   0.9rem;
  line-height: 1.6;
}

.InfoBox {
   background     :    #fff3cd;
    border: 2px solid #ffc107;
   border-radius: 12px;
    padding: 1.5rem;
   margin-bottom:  2rem;
   text-align: left;
}

.InfoBoxTitle {
    font-size: 1rem;
  font-weight  :700;
  color: #1a237e;
    margin-bottom: 0.75rem;


}

.InfoBoxText

{

   color: #666;
  line-height: 1.7;
  font-size: 0.95rem;

}

.ActionButtons {
    display: flex;
   gap: 1rem;
  justify-content   :    center;
    margin-bottom  :    2rem;
    flex-wrap: wrap;
}

.ButtonPrimary,
.ButtonSecondary  {
  padding    :    0.875rem 2rem;
   border-radius: 50px;
   text-decoration: none;
    font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.ButtonPrimary {
  background: linear-gradient(135deg, #1a237e 0%, #283593 100%);
   color: white;
  box-shadow: 0 6px 20px rgba(40, 53, 147, 0.2);
}

.ButtonPrimary:hover  
  {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(40, 53, 147, 0.3);
}

.ButtonSecondary  {
  background: white;
   color: #283593;
  border   :  2px solid #283593;
     }

.ButtonSecondary:hover {
  background    :        #f9f9f9;
}

.SocialProof {
   padding-top: 1.5rem;
  border-top: 2px solid #e8e8e8;
}

.ProofText {
	 color: #666;
    font-style: italic;
   font-size: 0.95rem;
}

.AlternativeContact {
   padding: 4rem 2rem;
   max-width: 1200px;
   margin: 0 auto 3rem;
}

.ContactOptions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.ContactOption {
  background: linear-gradient(135deg, #f0f4ff 0%, #f5f9ff 100%);
   padding: 2rem;
    border-radius: 12px;
    border  :       2px solid #e8eef5;
   text-align: center;
  transition: all 0.3s ease;


}

.ContactOption:hover {
    border-color: #283593;
  box-shadow: 0 12px 40px rgba(40, 53, 147, 0.12);

}

.OptionTitle {
  color: #1a237e;
  margin-bottom: 0.5rem;
    font-weight: 700;
       font-size: 1.1rem;
}

.OptionText
	{

	   color: #666;
   font-size: 0.9rem;
         margin-bottom: 1rem;
     }

.OptionDetail {
        font-weight :    600;
   font-size: 1rem;
  color: #ff6b6b;
}

.FeaturedServices {
  padding: 4rem 2rem; 
  max-width: 1200px; 
   -webkit-border-radius :    12px; 
    margin: 0 auto; 
   background: white; 
  border-radius: 12px;
	}

.ServicePreviewGrid {
  display   :      grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
}

.ServicePreviewCard {
  background: linear-gradient(135deg, rgba(40, 53, 147, 0.05) 0%, rgba(255, 107, 107, 0.05) 100%);
   padding: 2rem;
    border-radius: 12px;
   border: 2px solid #e8e8e8;
  transition :    all 0.3s ease;
} 

.ServicePreviewCard:hover {
     border-color: #283593;
  box-shadow: 0 12px 40px rgba(40, 53, 147, 0.12);
  transform: translateY(-4px);

}

.PreviewTitle {
	 font-size   :1.1rem;
	font-weight: 700;
	color     :     #1a237e;
   margin-bottom: 0.75rem;
}

.PreviewText {
   color: #666;
    line-height     :      1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.PreviewLink{

   display: inline-block;
   color: #ff6b6b;
                    text-decoration: none;
    font-weight: 600;
	font-size: 0.9rem;
	transition: all 0.3s ease;

}

.PreviewLink:hover {
  transform: translateX(3px);
      color: #ee5a6f;
}@media (max-width: 1024px) {
    .WebinarGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .StepsGrid {
        grid-template-columns: 1fr;
    }

    .ContactOptions {
        grid-template-columns: repeat(2, 1fr);
    }

    .ServicePreviewGrid {
        grid-template-columns: repeat(2, 1fr);
    }

    .PricingRow,
    .PricingHeader {
        grid-template-columns: 1.5fr 1.5fr 1fr;
    }
}

@media (max-width: 768px) {
    .ServicesPageHero {
        padding: 2rem 1rem;
    }

    .PageTitle {
        font-size: 2rem;
    }

    .ServiceDetailBlock,
    .ServiceAlternate {
        grid-template-columns: 1fr;
    }

    .ServiceAlternate {
        direction: ltr;
    }

    .WebinarGrid {
        grid-template-columns: 1fr;
    }

    .ConferenceItem {
        padding: 1.5rem;
    }

    .ConferenceHeader {
        flex-direction: column;
    }

    .ConferenceDate {
        align-self: flex-start;
    }

    .ActionButtons {
        flex-direction: column;
    }

    .ButtonPrimary,
    .ButtonSecondary {
        width: 100%;
    }

    .ThankYouContent {
        padding: 2rem 1rem;
    }

    .ThankYouTitle {
        font-size: 1.8rem;
    }

    .ContactOptions {
        grid-template-columns: 1fr;
    }

    .ServicePreviewGrid {
        grid-template-columns: 1fr;
    }

    .PricingRow,
    .PricingHeader {
        grid-template-columns: 1fr;
    }

    .PricingCol {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .PageTitle {
        font-size: 1.5rem;
    }

    .ServiceDetailTitle {
        font-size: 1.3rem;
    }

    .WebinarCard {
        padding: 1.5rem;
    }

    .ConferenceStats {
        gap: 1rem;
    }

    .StatItem {
        font-size: 0.85rem;
    }

    .NextStepsBlock {
        padding: 1.5rem;
    }

    .StepNumber {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .ThankYouDescription {
        font-size: 0.9rem;
    }

    .OptionDetail {
        font-size: 0.9rem;
    }

    .PreviewTitle {
        font-size: 1rem;
    }
}