*  {
   margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   color :      #2c3e50;
   background-color: #f8f9fa;
  line-height: 1.6;
}

body {
   overflow-x: hidden;
}

a {
    text-decoration: none;
   color: inherit;
}

img {
  max-width: 100%;
   height: auto;
  display: block;
}

h1, h2, h3, h4, h5, h6 {
   font-weight: 700;
 margin-bottom: 1.5rem;
   color: #1a252f;
}

h1 {
  font-size: 3.5rem;
   line-height: 1.1;
}

h2 {
   font-size: 2.5rem;
  text-align: center;
   margin-bottom: 2.5rem;
}

h3 {
	 font-size: 1.5rem;
    margin-bottom: 1rem;
}

p  {
  margin-bottom: 1.2rem;
    font-size: 1rem;
    line-height    :   1.8;
}

ul {
   	list-style: none;


}

button {
   border: none;
  cursor: pointer;
    font-family: inherit;
	
}

.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 1rem 0;
  position: sticky;
	top  :0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-container {
  max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
	display: flex;
    justify-content  :   space-between;
  align-items: center;
}

.nav-logo-section {
                    flex: 0 0 auto;
}

.nav-logo {


    display: flex;
       align-items: center;}

.logo-image {
  max-height: 94px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-menu {
         display: flex;
   gap: 2.5rem;
               list-style: none; 
	
}

.nav-link


{

   color: white;
    font-weight: 500;
    padding: 0.75rem 1rem;
   transition: all 0.3s ease;
   position: relative;


}

.nav-link::after	{
  content: '';
   position: absolute;
  bottom: 0;
  left: 1rem;
    width: 0;
    height: 2px;
  background: white;
   transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: calc(100% - 2rem);
}

.nav-burger     {
       display: none;
  flex-direction: column;
  gap: 6px;
    background: transparent;
    padding: 0.5rem;
}

.burger-line		{

	  width     :       28px;

	  height: 3px;

	   background     :       white;

	    border-radius: 3px;

	  transition: all 0.3s ease;


}

.nav-burger.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translateY(12px);
}

.nav-burger.active .burger-line:nth-child(2) {
  opacity: 0;
}

.nav-burger.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-12px);
}

.hero {

	     max-width: 1200px;
   margin: 0 auto;
         padding: 6rem 2rem;
 display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 4rem;
    align-items: center;}

.hero-content h1 {

  color: #667eea;
	margin-bottom: 1.5rem;
     }

.hero-content p {
  font-size: 1.2rem;
   color  :      #555;
  margin-bottom: 2rem;
}

.hero-cta {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color :    white;
  padding:     1rem 2.5rem;
  border-radius: 50px;
    font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);


}

.hero-cta:hover {
     transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);}

.hero-image {
   border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.hero-image img {


    width: 100%;
  height  :   auto;
}

.strategy-section {
   background: white;
   padding    : 5rem 2rem;
} 

.strategy-container {
    max-width: 1200px;
   margin: 0 auto;
    display: grid;
	 grid-template-columns: 1fr 1fr;
    gap: 4rem;
	 align-items: center;
}

.strategy-text h2 {
   text-align: left;
  font-size: 2.2rem;
}

.strategy-text p	{
   font-size: 1rem;
			color: #555;
	line-height: 1.8;
}

.strategy-image {
   border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.strategy-image img {
   width: 100%;
}  

.pitch-coaching {
  max-width: 1200px;
    margin: 5rem auto;
	padding     : 0 2rem;
}

.pitch-coaching h2 {

				 margin-bottom: 3rem;}

.pitch-grid {
		display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;

}

.pitch-card {
  background: white;
   border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
}

.pitch-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.pitch-card h3 {
   padding: 1.5rem 1.5rem 0.5rem;
   color: #667eea;
}

.pitch-card p {
   padding: 0 1.5rem;
    font-size: 0.95rem;
  color: #666;
}

.pitch-card img {
	width: 100%;
   height: 250px;
  object-fit: cover;
    margin-top: 1rem;
}

.investment-readiness {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding: 5rem 2rem;
    margin: 4rem 0;
}

.investment-readiness {
    max-width: 100%;
}

.investment-readiness h2   {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.readiness-content	{
      max-width: 1200px;
   margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
	align-items: center;
}

.readiness-text p {
	    color: #555;
   margin-bottom: 1.5rem;}

.readiness-list {
  margin: 2rem 0 2rem 2rem;
   padding-left:     1rem;
}

.readiness-list li   {
    margin-bottom: 1rem;
    padding-left: 2rem;
  position: relative;
   color    :        #555;
   line-height: 1.6;
}

.readiness-list li::before {
  content: '✓';
   position:        absolute;
  left: 0;
  color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

.readiness-image {
  border-radius: 12px;
      overflow   :  hidden;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.negotiation-section {
  max-width: 1200px;
  margin: 5rem auto;
  padding: 0 2rem;
}

.negotiation-section h2 {
  margin-bottom   :    3rem;
}

.negotiation-grid {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 3rem;
}

.negotiation-item {
 background: white;
    padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #667eea;
}

.negotiation-item h3{
	color: #667eea;
   margin-bottom: 1rem;
}

.negotiation-item p {
                    color: #666;
    font-size: 0.95rem;
}

.webinar-section {
  background: white;
	padding: 5rem 2rem;
	margin: 4rem 0;
}

.webinar-section h2 
 {
	max-width   :    1200px;
    margin: 0 auto 3rem;
}

.webinar-content {
    max-width: 1200px;
   margin: 0 auto;
   display   :       grid;
    grid-template-columns: 1fr 1fr;
      gap: 4rem;
   align-items: center;
}

.webinar-text p {
      color: #555;
   margin-bottom: 1.5rem;
}

.webinar-cta {
   display: inline-block;
   background: #667eea;
    color: white;
   padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
               transition: all 0.3s ease;
   margin-top: 1rem;
}

.webinar-cta:hover {
  background: #764ba2;
  transform: translateY(-2px); 
	
}

.webinar-image {
   border-radius: 12px;
	overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	
}

.conference-section {
  max-width: 1200px;
    margin    :       5rem auto;
  padding: 0 2rem;
}

.conference-section h2  
  {
	   margin-bottom: 1rem;}

.conference-intro {
  text-align: center;
  font-size: 1.1rem;
   color:       #666;
   margin-bottom    :   3rem;
}

.conference-highlights {
         display: grid;
  grid-template-columns: repeat(3, 1fr);
                    gap: 2.5rem;
  margin-top: 3rem;
}

.highlight-item {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 2.5rem;
   border-radius    :        10px;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.highlight-item h3 {
	color: white;
  margin-bottom: 1rem;
}

.highlight-item p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 0.95rem; 

}

.coach-team {
   background   :      #f8f9fa;
  padding: 5rem 2rem;
	margin: 4rem 0;
}

.coach-team h2 {
   max-width: 1200px;
  margin: 0 auto 2rem;
}

.team-intro   {

	   max-width:    1200px;
    margin: 0 auto 3rem;
   text-align: center;
     }

.team-intro p {
    color: #666;
  font-size: 1.05rem;
}

.team-grid {
  max-width: 1200px;
   margin  :  0 auto;
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.team-member {

    background:  white;
  padding: 2.5rem;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;

}

.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
}

.team-member h3 {
    margin-bottom: 1rem;
   color: #667eea;
}

.team-member p {
  color: #666;
        font-size: 0.95rem; 
	
}

.success-stories {
  max-width    :       1200px;
     margin: 5rem auto;
    padding: 0 2rem;
}

.success-stories h2 {
    margin-bottom: 2rem;
}

.stories-content {
   text-align: center;
}

.stories-content p {
    color: #666;
               margin-bottom: 3rem;
        max-width: 700px;
		margin-left: auto;
    margin-right: auto;
                    font-size: 1.05rem;
}

.stories-metrics {

	  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
    margin-top: 3rem; 

	}

.metric {
    background   :        white;
      padding: 2.5rem;
     border-radius: 10px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.metric h3 {
  font-size: 2.5rem;
  color: #667eea;
    margin-bottom: 0.5rem;
}

.metric p {
	  color: #666;
   font-size: 0.95rem;
   margin-bottom     :    0;

}

.cta-consultation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding     : 4rem 2rem;
  text-align: center;
   margin: 4rem 0;
}

.cta-consultation h2 {
   color: white;
   margin-bottom :      1.5rem;
}

.cta-consultation p {
  color: rgba(255, 255, 255, 0.95);
   max-width: 700px;
  margin: 0 auto 2.5rem;
    font-size: 1.05rem;
}

.cta-button

{
  display: inline-block;
   background     :  white;
    color: #667eea;
  padding: 1rem 3rem;
    border-radius  : 50px;
         font-weight  : 700;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.contact-section {
   max-width: 1200px;
   margin: 5rem auto;
  padding: 0 2rem;
}

.contact-section h2 {
 margin-bottom: 3rem;
}

.contact-container {
    display  :        grid;
  grid-template-columns: 1fr 1fr;
	gap: 4rem;
}

.contact-form {

  background: white;
	padding: 2.5rem;
	border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
     }

.form-group    {

    margin-bottom: 1.8rem;


}

.form-group label {
  display: block;
   font-weight: 600;
  color: #2c3e50;
   margin-bottom: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
      width: 100%;
  padding: 0.8rem 1rem;
  border :        2px solid #e0e0e0;
   border-radius: 8px;
   font-family: inherit;
  font-size : 0.95rem;
  transition: all 0.3s ease;
   color: #2c3e50;
}

.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-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
      font-weight: 700;
	border-radius: 8px;
  cursor: pointer;
    transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.form-submit:hover	{
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.contact-info {
    padding    :   2rem;
}

.contact-info h3 {
         color: #667eea;
    margin-bottom: 1.5rem;
}

.address {
  font-weight: 500;

  color: #2c3e50;

  margin-bottom:        1rem;

    line-height: 1.6;
}

.phone {
  font-weight: 600;
    color: #667eea;
    font-size: 1.2rem;
	margin-bottom: 2rem;
}

.contact-hours p     {
    color: #666;

  font-size: 0.95rem;
}

.footer {
   background: #1a252f;
  color: white;
  padding: 4rem 2rem 2rem;
    margin-top     :  5rem;
}

.footer-container


{
  max-width:    1200px;
    margin    :    0 auto 3rem;
  display     : grid;
  grid-template-columns :  1fr 3fr;
   gap: 3rem;
         align-items :  flex-start;
}

.footer-logo-section {
	     flex: 0 0 auto;

}

.footer-logo {
  max-height: 136px;
  width:   auto;
  filter: brightness(0) invert(1);
}

.footer-content {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
	  color: white;
	   margin-bottom: 1.2rem;
	   font-size: 1rem;}

.footer-section ul {
   list-style: none;
}

.footer-section ul li  
  {
   margin-bottom: 0.8rem;
}

.footer-section a {

  color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;}

.footer-section a:hover {
	 color: white;}

.footer-section p {


  color: rgba(255, 255, 255, 0.7);
	 font-size: 0.9rem;
    margin-bottom: 0.5rem;
	}

.footer-bottom {
    max-width: 1200px;
   margin: 0 auto;
    padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 2rem;
        gap: 1rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-burger {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .strategy-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .strategy-text h2 {
        text-align: center;
    }

    .pitch-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .readiness-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .negotiation-grid {
        grid-template-columns: 1fr;
    }

    .webinar-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .conference-highlights {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stories-metrics {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .hero {
        padding: 2rem 1rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .logo-image {
        max-height: 70px;
    }

    .footer-logo {
        max-height: 100px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding :  6rem 2rem;
   text-align: center;
    min-height: 400px;
  display: flex;
  align-items: center;
   justify-content: center;
}

.services-hero-content h1   {
    color: white;
    font-size: 3rem;
  margin-bottom: 1.5rem;
}

.services-hero-content p {
  color: rgba(255, 255, 255, 0.95);
    font-size: 1.3rem;
  max-width: 600px;
    margin: 0 auto;
}

.services-overview{
  background     :white;
  padding: 4rem 2rem;
}

.overview-container {
  max-width: 1200px;
	 margin: 0 auto;
   text-align: center;
}

.overview-container h2 {

   margin-bottom: 1.5rem;

}

.overview-intro {
	font-size: 1.1rem;
  color: #666;
    max-width: 700px;
   margin: 0 auto;
}

.services-grid-main {
   max-width: 1200px;
    margin: 0 auto;
   padding: 4rem 2rem;
}

.services-container

{
                    flex-direction: column;
    display: flex;
      gap: 4rem;
}

.service-card-large {
    background: white;
   border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    display: grid;
	grid-template-columns: 1fr 1fr;
   gap    : 0;
}

.service-card-large.alternate {
          direction  :        rtl;
}

.service-card-large.alternate > * {

	 direction: ltr;
}

.service-card-image {
    overflow: hidden;
   height   :100%;
   min-height   :    400px;
}

.service-card-image img {
    width: 100%;
   height: 100%;
	object-fit: cover; 

}

.service-card-content  {
    padding: 3rem;
	display: flex;
    flex-direction: column;
   justify-content   :center;
}

.service-card-content h2 {
    text-align: left;
  font-size: 2rem;
    margin-bottom: 1.5rem;
  color: #667eea;
}

.service-card-content p {
   color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
  margin: 1.5rem 0;
   padding-left : 0;
}

.service-features li {
     padding-left: 2rem;
   margin-bottom: 0.8rem;
    position: relative;
    color    :        #555;
}

.service-features li::before {
  content: '✓';
    position: absolute;
    left: 0;
   color: #667eea;
  font-weight: bold;
   font-size: 1.1rem;
}

.service-duration {
	font-style: italic;
  color: #999;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top  :   1px solid #eee;
}

.services-packages {
  background: #f8f9fa;
    padding: 5rem 2rem;

}

.services-packages h2 {
  max-width: 1200px;
  margin: 0 auto 1rem;
}


.packages-intro {
  text-align: center;
	  color: #666;
	    font-size: 1.1rem;
	          max-width: 700px;
	       margin: 0 auto 3rem;
}


.packages-grid {


     max-width: 1200px;
  margin: 0 auto;
   display     :     grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;

}

.package-card {
	background: white;
	 border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
         position: relative;
	 transition   :        all 0.3s ease;
    border-top: 4px solid #ccc;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.package-card.starter
{
  border-top-color   :    #667eea;

}

.package-card.professional {
    border-top-color: #764ba2;
  transform: scale(1.05);
}

.package-card.premium {
	border-top-color  :       #f39c12;
}

.package-card h3

{
   color: #1a252f;
   text-align: center;
   margin-bottom: 1rem;
    font-size: 1.8rem;
}

.package-price {
       color: #667eea;
   font-weight: 700;
    font-size: 1.3rem;
   margin-bottom: 1.5rem;
    text-align: center;
}

.package-features {
    list-style: none;
   margin-bottom: 2rem;
	padding: 0;
}

.package-features li
{

	   padding: 0.8rem 0;
   color: #666;
  border-bottom:1px solid #eee;

}

.package-features li:last-child {


      border-bottom: none;


}

.package-description {
  text-align: center;
   color: #999;
    font-size: 0.9rem;
    font-style: italic;
}

.webinar-training {
  max-width: 1200px; 
   margin: 5rem auto; 
    padding:   0 2rem;
}

.webinar-training h2 {


       margin-bottom: 3rem;
	}

.webinar-container {
       display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.webinar-item {
  background: white;
    padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	 border-left: 4px solid #667eea;
	
}

.webinar-item h3 {
   color: #667eea;
                    margin-bottom: 1rem;
}

.webinar-item p {
	      color: #666;
    font-size: 0.95rem;
    line-height: 1.7;


}

.webinar-detail {
    margin-top: 1.5rem;
  padding-top: 1.5rem;
    border-top: 1px solid #eee;
   font-weight: 500;
	color: #667eea;
}

.coaching-process {
	 max-width: 1200px;
  margin: 5rem auto;
    padding: 0 2rem;
}

.coaching-process h2  {
  margin-bottom: 3rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
	gap: 2rem;
}

.process-step {
    background: white;
  padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   text-align: center;
	transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-5px);
     box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);
}

.step-number {

	  display: inline-flex;
    align-items: center;
  justify-content: center;
    width    :  50px;
   height: 50px;
	border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   font-weight: 700;
    font-size: 1.5rem;
   margin-bottom :    1.5rem;
     }

.process-step h3 {
   color: #1a252f; 
	    margin-bottom: 1rem;
}

.process-step p {
   color: #666;
    font-size: 0.9rem;
}

.coach-expertise {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding: 5rem 2rem;
    margin: 4rem 0;
}

.coach-expertise h2 {
  max-width: 1200px;
	margin: 0 auto 3rem; 
	
}

.expertise-grid {
   gap: 2.5rem;
   max-width: 1200px;
  grid-template-columns: repeat(2, 1fr);
  margin: 0 auto;
    display: grid;
}

.expertise-item {

	  background: white;
    padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.expertise-item h3 {
   color: #667eea;
  margin-bottom: 1rem;
} 

.expertise-item p {
   color: #666;
  font-size: 0.95rem;
     }

.faq-services {
   max-width: 1200px;
  margin: 5rem auto;
          padding: 0 2rem;
}

.faq-services h2 {
  margin-bottom: 3rem;
}

.faq-container {
   display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(2, 1fr);
}

.faq-item {
   background: white;
 padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #667eea;
}  

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
   color: #1a252f;
}

.faq-item p {
    color: #666;
    font-size    :     0.95rem;
  line-height   :      1.7;
}

.thankyou-section {
    max-width: 1000px;
    margin: 4rem auto;
    padding: 0 2rem;
   min-height: 500px;
   display: flex;
    align-items: center;
   justify-content: center;
}

.thankyou-container {
    width: 100%;
}

.thankyou-content {
  background: white;
  border-radius: 15px;
    padding: 4rem 3rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   text-align: center;
}

.success-icon    {

  display: inline-flex;
   align-items: center;
  justify-content: center;
    width: 80px;
    height: 80px;
  border-radius   : 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   font-size: 3rem;
               font-weight  :      bold;
    margin-bottom: 2rem;

}

.thankyou-content h1 {
  color: #1a252f;
            margin-bottom: 0.5rem;
      font-size: 2.5rem;
	}

.success-message {
	color: #667eea;
   font-size: 1.2rem;
  margin-bottom:3rem;
}

.confirmation-details	{
    background: #f8f9fa;
   padding: 2rem;
  border-radius: 10px;
   margin: 2rem 0;
  text-align: left;
	
}

.confirmation-details h2 
 {
       text-align   :  left;
  font-size: 1.3rem;
   margin-bottom: 1.5rem;
	
}

.detail-item {
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1rem;
    padding: 0.8rem 0;
	border-bottom: 1px solid #e0e0e0;
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
    font-weight  :   600;
   color: #2c3e50;
}

.detail-value {
  color: #667eea;
  font-weight: 500;
}

.next-steps
{
  margin: 3rem 0;
  text-align: left;
}

.next-steps h2 {
   text-align  :       left;
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.steps-list {
    flex-direction: column;
   display: flex;
    gap: 1.5rem;
}

.step {
    display: grid;
   grid-template-columns: 60px 1fr;
   gap: 2rem;
  align-items: flex-start;
}

.step-icon {
   display    :     flex;
   align-items: center;
    justify-content: center;
  width: 60px;
	height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   font-weight: 700;
   font-size: 1.5rem;
  flex-shrink: 0;
}

.step-text h3 
 {
   color: #1a252f;
  margin-bottom: 0.5rem;
}  

.step-text p {
   margin: 0;
	font-size: 0.9rem;
	color: #666;
}

.additional-info {
   padding   :       2rem;
    border-radius: 10px;
  text-align: center;
  margin: 2rem 0;
    background: #e8eef7;
}

.additional-info h2 {
   text-align: center;
    font-size: 1.3rem;
  margin-bottom: 1rem;
}

.additional-info p {
   color: #555;
    margin-bottom: 0.5rem;
}

.contact-phone {
     font-size     :  1.2rem;
	color: #667eea;
    margin: 1rem 0; 



}

.link-to-services {
    color: #667eea;
    text-decoration: underline;
  font-weight: 600; 
	
}

.action-buttons     {

	   display: grid;
  grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
					margin-top: 2.5rem;
}

.btn-primary, .btn-secondary {
    display: inline-block;
	padding: 1rem 2rem;
  border-radius: 8px;
    font-weight: 600;
   text-align: center;
  transition: all 0.3s ease;
}


.btn-primary {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
	}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
    background: white;
               color: #667eea;
  border: 2px solid #667eea;
}

.btn-secondary:hover {
   background  :      #f8f9fa;
  transform: translateY(-2px); 

}

.trust-section {
   background: white;
   padding: 4rem 2rem;
   margin-top  :     3rem;
}

.trust-section h2 {
  max-width: 1200px;
   margin: 0 auto 3rem;
}

.trust-container {

	   max-width: 1200px;
   margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;}

.trust-item {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       color: white;
    padding :2.5rem;
  border-radius: 12px;
   text-align: center;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
     }

.trust-number {

	   font-size: 2.5rem;
       font-weight: 700;
   	 margin-bottom   :    0.5rem;


}

.trust-item p {
  color: rgba(255, 255, 255, 0.95); 
  font-size: 0.95rem; 
    margin: 0;
}@media (max-width: 1024px) {
    .service-card-large {
        grid-template-columns: 1fr;
    }

    .service-card-image {
        min-height: 300px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.professional {
        transform: scale(1);
    }

    .webinar-container {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .faq-container {
        grid-template-columns: 1fr;
    }

    .trust-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1.05rem;
    }

    .service-card-content {
        padding: 2rem;
    }

    .service-card-content h2 {
        font-size: 1.5rem;
    }

    .action-buttons {
        grid-template-columns: 1fr;
    }

    .step {
        grid-template-columns: 50px 1fr;
        gap: 1rem;
    }

    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .trust-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .thankyou-content {
        padding: 2rem 1.5rem;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .detail-item {
        grid-template-columns: 1fr;
        gap: 0.3rem;
    }

    .service-card-content {
        padding: 1.5rem;
    }

    .services-overview {
        padding: 2rem 1rem;
    }

    .services-grid-main {
        padding: 2rem 1rem;
    }
}.policySection	{
   padding: 80px 2rem;
    background: #f8f9fa;
  min-height: 600px;
}

.policyContainer {
                    max-width: 800px; 
    margin: 0 auto; 
   text-align: left;
}

.policyContainer h1 {
    font-size: 3rem;
   color    :#1a252f;
  margin-bottom     :2.5rem;
   font-weight: 700;
  text-align: center;
}

.policyContainer h2 {
    font-size: 1.8rem;
   color: #667eea;
   margin-bottom: 1.5rem;
  font-weight   :    700;
    margin-top: 2rem;
}

.policyContainer p {
   color: #555;
  margin-bottom   :    1.5rem;
  line-height: 1.8;
    font-size: 1rem;
}

.policyContainer h2:first-of-type {

    margin-top    :        0;
	}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        min-height: 400px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}