* {
  margin: 0;
    padding  :        0;
   box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --accent-dark: #2980b9;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #ecf0f1;
    --success-color: #27ae60;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

html {


   scroll-behavior: smooth;
     }

body	{
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.6;
}

.container {
	max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.navbar {
  background-color: var(--bg-white);
	  box-shadow: var(--shadow-sm);
	  position: sticky;
	  top     :       0;
	    z-index: 1000;}

.nav-container {
  max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
   display :    flex;
    justify-content: space-between;
	align-items    :       center;
   height    :        70px;
}

.nav-logo-section {
  display: flex;
  align-items: center;
}

.logo-link {
	   text-decoration: none;
     }

.nav-logo {
	height: 64px;
    width: auto;
}

.burger-menu {
    display: none;
  background: none;
	border: none;
    cursor: pointer;
   flex-direction    :        column;
    gap: 6px;
}

.burger-line {
    width: 25px;

	   height: 3px;

	  background-color: var(--text-dark);

	  border-radius: 2px;

		transition    :  all 0.3s ease;
}

.nav-menu {
	display: flex; 
    list-style   : none; 
	gap: 40px; 
	
}

.nav-item {
  position: relative;
}

.nav-link

{
	text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
   transition:color 0.3s ease;
    display: block;
   padding: 8px 0;
}

.nav-link:hover {
  color: var(--accent-color);
} 

.nav-link::after {
  content: '';
		position: absolute;
    width: 0;
  height: 2px;
  background-color: var(--accent-color);
    bottom   :  0;
          left     :       0;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
	  width: 100%;
	}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        gap: 0;
        list-style: none;
        box-shadow: var(--shadow-md);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
    }

    .nav-item {
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link {
        padding: 15px 20px;
        display: block;
    }

    .nav-link::after {
        display: none;
    }

    .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);
    }
}.hero {
  position: relative;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
		 color: white;
    padding: 120px 20px;
			text-align: center;
  overflow: hidden;
   min-height : 600px;
  display: flex;
    align-items  :   center;
  justify-content: center;
}


.hero-background {
    position: absolute;
   top: 0;
 left :    0;
    right: 0;
  bottom: 0;
                    z-index: 1;
    overflow: hidden;
}

.shape {
      position: absolute;

    opacity: 0.1;

  animation: float 6s ease-in-out infinite;


}

.shape-1 {
  width  :      200px;
    height: 200px;
    background-color: white;
        border-radius :  50%;
	top: 10%;
  left: 10%;
}

.shape-2 {
   width: 150px;
      height: 150px;
	 background-color: white;
  border-radius: 50%;
   bottom:       20%;
      right: 15%;
   animation-delay: 1s; 

}

.shape-3 {
       width: 100px;
	height: 100px;
    background-color: white;
  border-radius    :        50%;
               top: 50%;
  right: 10%;
    animation-delay: 2s;
}@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}.hero-content {
  position: relative;
	 z-index: 2;
  max-width: 800px;
}

.hero-title {
    margin-bottom: 20px;

  font-weight: 700;

          line-height: 1.2;

  font-size: 56px;
}

.hero-subtitle {
          font-size: 20px;
   margin-bottom: 40px;
		 opacity: 0.95; 
	
}

.cta-button {

	 display  :        inline-block;

	    background-color: white;

	    color: #667eea;

	    padding  :     14px 36px;

	  text-decoration: none;

	               border-radius: 50px;

	   font-weight: 600;

	  transition: all 0.3s ease;

	   border   :  2px solid white;
}

.cta-button:hover {
  background-color: transparent;
    color: white;
}

.cta-button-large {
        display     :        inline-block;
  background-color: var(--accent-color);
  color: white;
    padding: 16px 48px;
 text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
         font-size: 16px;
}

.cta-button-large:hover {
  background-color: var(--accent-dark);
  border-color: var(--accent-dark);
}@media (max-width: 768px) {
    .hero {
        padding: 60px 20px;
        min-height: 400px;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .shape {
        display: none;
    }
}.intro-section


{
      padding: 80px 20px;
  background-color: var(--bg-white);

}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-text h2 {
  font-size: 42px;
               margin-bottom:       30px;
  color: var(--text-dark); 
	
}

.intro-text p {
  font-size    :16px;
  color: var(--text-light);
  margin-bottom: 20px;
    line-height    : 1.8;
}

.intro-image img {
	    width: 100%;
   height: auto;
	 border-radius    :12px;
  box-shadow: var(--shadow-lg);
}@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-text h2 {
        font-size: 32px;
    }
}.benefits-section {
	padding:       80px 20px;
  background-color: var(--bg-light);
}

.section-title {
    font-size: 44px;
   text-align :center;
  margin-bottom :       60px;
  color: var(--text-dark);
}  

.section-title.centered {
	 text-align: center;
	
}

.benefits-grid {
	      display     :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
	

}

.benefit-card {
  background-color: var(--bg-white); 
   padding:  40px; 
    border-radius    :      12px; 
  box-shadow: var(--shadow-sm); 
	 transition: all 0.3s ease; 
    text-align: center;
}

.benefit-card:hover

{
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);


}



.benefit-icon {
	  width: 60px;
   height  :  60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 50%;
   display: flex;
  align-items:   center;
   justify-content: center;
   font-size     :        24px;
               font-weight: bold;
  margin: 0 auto 20px;

}

.benefit-card h3 {
  font-size     :       20px;
  margin-bottom     :15px;
  color: var(--text-dark);
}

.benefit-card p   {
     font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}.training-section {
   padding   :  80px 20px;
  background-color: var(--bg-white);
}

.training-content {
         display: grid;
	    grid-template-columns: 1fr 1fr;
	                    gap: 60px;
		 align-items: center;
}

.training-image img {
  width: 100%; 
   height:     auto; 
   border-radius: 12px; 
  box-shadow: var(--shadow-lg);
}

.training-text h2 {
  font-size: 42px;
  margin-bottom     : 30px;
  color: var(--text-dark);
}

.training-text p {
   font-size: 16px;
  color: var(--text-light);
    margin-bottom: 25px;
   line-height: 1.8;
}

.training-list     {
               list-style: none;
    margin-top: 30px;
}

.training-list li {
      padding-left: 30px;
   margin-bottom: 15px;
    position: relative;
  font-size: 15px;
  color: var(--text-light);
}

.training-list li::before {
  content: '✓';
    position: absolute;
  left: 0;
  color: var(--accent-color);
               font-weight: bold;
   font-size: 18px;
}@media (max-width: 768px) {
    .training-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .training-text h2 {
        font-size: 32px;
    }
}.webinar-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	}

.webinar-grid {
	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
	}

.webinar-card {
  background-color: rgba(255, 255, 255, 0.1);
	padding   :       40px;
   border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
   transition: all 0.3s ease;
} 

.webinar-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.webinar-header {
     margin-bottom :       20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 15px;
}

.webinar-card h3   {
   font-size: 22px;
    margin   :      0;
}

.webinar-card p {

   line-height: 1.7;
        margin: 20px 0;
    font-size: 15px;
   opacity: 0.9;}

.webinar-footer {
   font-size: 13px;
  opacity: 0.8;
  margin-top   :       20px;
   padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}@media (max-width: 768px) {
    .webinar-section {
        padding: 60px 20px;
    }

    .webinar-grid {
        grid-template-columns: 1fr;
    }
}.expertise-section {
   	 padding: 80px 20px;
  background-color: var(--bg-light);


}

.expertise-content


{
  display    :       grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items:        center;
}

.expertise-text h2 {

	                    font-size: 42px;
  margin-bottom: 30px;
  color: var(--text-dark);

}

.expertise-text p {
    font-size: 16px;
  color: var(--text-light);
   margin-bottom: 25px;
  line-height: 1.8;
}


.expertise-image img {
  width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: var(--shadow-lg);
}@media (max-width: 768px) {
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .expertise-text h2 {
        font-size: 32px;
    }
}.decision-workshop-section  {
    padding: 80px 20px;
  background-color: var(--bg-white);
} 

.workshop-cards {
  display   :      grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap   :      30px;
}

.workshop-item {
  background-color: var(--bg-light);
    padding: 40px 30px;
	 border-radius: 12px;
    text-align: center;
  border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}


.workshop-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.workshop-number {
    display: inline-block;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-radius: 50%;
  line-height     :       50px;
	font-size:  24px;
   font-weight: bold;
    margin-bottom: 20px;
}

.workshop-item h3 
 {
    font-size: 20px;

		margin-bottom: 15px;

	  color: var(--text-dark);
}


.workshop-item p {
   font-size: 15px;
  color: var(--text-light);
   line-height   :        1.7;
}@media (max-width: 768px) {
    .decision-workshop-section {
        padding: 60px 20px;
    }

    .workshop-cards {
        grid-template-columns: 1fr;
    }
}.analytical-thinking-section {
   padding     :  80px 20px;
  background-color: var(--bg-light);
} 

.analytical-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
}

.analytical-image img {
  width   : 100%;
	    height: auto;
	   border-radius: 12px;
	  box-shadow: var(--shadow-lg);
}



.analytical-text h2 {
   font-size: 42px;
               margin-bottom: 30px;
  color: var(--text-dark);
}

.analytical-text p {
      font-size: 16px;
  color: var(--text-light);
    margin-bottom :     25px;
  line-height: 1.8; 

}


.program-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
    margin-top: 40px;
}

.feature {
  background-color: var(--accent-color);
		color: white;
   padding  : 20px;
  border-radius: 8px;
  text-align: center;
  font-weight: 500; 

}

.feature-badge {

   display: block;
  font-size: 28px;
	font-weight: bold;
   margin-bottom: 10px;
	}@media (max-width: 768px) {
    .analytical-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .analytical-text h2 {
        font-size: 32px;
    }

    .program-features {
        grid-template-columns: 1fr;
    }
}.decision-thinking-section {
  padding: 80px 20px; 
  background-color: var(--bg-white);
}

.decision-content {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.decision-text h2
{

	    font-size  :  42px; 
					 margin-bottom: 30px; 
	  color: var(--text-dark);}

.decision-text p {
	  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 25px;
  line-height: 1.8;
     }

.decision-image img {
    width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
}@media (max-width: 768px) {
    .decision-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .decision-text h2 {
        font-size: 32px;
    }
}.cta-section {
			padding: 100px 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
    text-align: center;}

.cta-content h2 {
   font-size  :     44px;
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-content p {
	font-size: 18px;
    margin-bottom: 40px;
  opacity: 0.9;
}@media (max-width: 768px) {
    .cta-section {
        padding: 60px 20px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
    }
}.contact-section {


	padding    :    80px 20px;
  background-color: var(--bg-light);
}

.contact-wrapper {

	   display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
	}

.contact-info h3 {
				 font-size   :        24px;
  margin-bottom: 30px;
  color: var(--text-dark);
}

.info-item {
   margin-bottom: 30px;
}

.info-item strong   {
      display: block;
  margin-bottom: 10px;
  color: var(--text-dark);
  font-weight: 600;
}

.info-item p {
  color: var(--text-light);
      font-size: 15px;
     line-height    :      1.7;
} 

.contact-form {
  background-color: var(--bg-white);
    padding   :   40px;
  border-radius: 12px;
  box-shadow: var(--shadow-md);
}



.form-group {
    margin-bottom: 25px;
   display: flex;
  flex-direction: column; 
	
}

.contact-form label		{
   font-weight: 600;
    margin-bottom: 8px;
  color: var(--text-dark);
  font-size :  14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
		border-radius  :       6px;
   font-family: inherit;
     font-size: 15px;
  transition: all 0.3s ease;
}  

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-btn {
     background-color: var(--accent-color);

	    color: white;

	  padding: 14px 32px;

		 border: none;

	  border-radius: 6px;

		font-weight: 600;

	    font-size: 16px;

	    cursor: pointer;

	   transition:       all 0.3s ease;
     }

.submit-btn:hover {
  background-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}@media (max-width: 768px) {
    .contact-section {
        padding: 60px 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}.footer{
  background-color: var(--primary-color);
   color: white;
    padding: 60px 20px 20px;
}

.footer-grid {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap     :40px;
   margin-bottom  :     40px;
}


.footer-logo-section {
  display: flex;
  align-items: flex-start;
} 

.footer-logo {
		height: 86px; 
	  width  :auto; 
	  filter: brightness(0) invert(1);

	}

.footer-section h4 {
   font-size: 16px;
  font-weight: 600;
	margin-bottom: 20px;
	}

.footer-section ul {
       list-style: none;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a{
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
   transition: color 0.3s ease;
  font-size: 14px;
}

.footer-section a:hover {
   color: white;
}

.footer-section p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height   :        1.8;
}  

.footer-bottom {
    text-align: center;
   padding-top  :    30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}@media (max-width: 768px) {
    .footer {
        padding: 40px 20px 20px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-section h4 {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .intro-text h2,
    .training-text h2,
    .expertise-text h2,
    .analytical-text h2,
    .decision-text h2 {
        font-size: 26px;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding : 100px 20px;
	text-align    :     center;
}

.services-hero-content {
    max-width   :  800px;
   margin   :     0 auto;
}

.services-hero-title {
         font-size: 56px;
  font-weight  :      700;
   margin-bottom :      20px;
}

.services-hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}@media (max-width: 768px) {
    .services-hero {
        padding: 60px 20px;
    }

    .services-hero-title {
        font-size: 36px;
    }

    .services-hero-subtitle {
        font-size: 18px;
    }
}.services-overview {
                    padding    : 60px 20px;
	background-color: #f8f9fa;
    text-align: center;
}

.services-intro-text   {
  max-width: 700px;
    margin: 20px auto 0;
	 font-size: 16px;
                    color: #7f8c8d;
	line-height: 1.8;
}

.services-main {
	padding: 80px 20px;
    background-color: #ffffff; 

}

.service-item-large {
    display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 60px;
   margin-bottom: 100px;
   align-items    :   center;
}

.service-item-large.alternate {
  grid-template-columns: 1fr 1fr;
}

.service-item-large.alternate .service-item-image {
    order     :2;
}  

.service-item-large.alternate .service-item-content {
  order: 1;
}

.service-item-image img
{
    width: 100%;

    height: auto;

  border-radius: 12px;

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);


}

.service-item-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
   color:   #2c3e50;
}

.service-item-content p {
  font-size: 16px;
  color: #7f8c8d;
    margin-bottom: 25px;
  line-height: 1.8;
}

.service-features {


  list-style: none;
   margin-bottom     :    30px;
   padding: 0;
     } 

.service-features li {
   padding-left :    30px;
      margin-bottom: 15px;
    position: relative;
      font-size     :     15px;
     color: #7f8c8d;
}

.service-features li::before {
  content: '→';
   position: absolute;
    left: 0;
   color: #3498db;
  font-weight: bold;
   font-size: 18px;
}

.service-price {
    display  :   inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;
        padding: 12px 24px;
    border-radius: 50px;
   font-weight: 600;
   font-size: 16px;
}@media (max-width: 768px) {
    .services-main {
        padding: 60px 20px;
    }

    .service-item-large,
    .service-item-large.alternate {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 60px;
    }

    .service-item-large.alternate .service-item-image,
    .service-item-large.alternate .service-item-content {
        order: initial;
    }

    .service-item-content h3 {
        font-size: 26px;
    }
}.service-packages    {
    padding: 80px 20px;

	    background-color    :     #f8f9fa;
}

.packages-intro  {
  text-align: center;
  font-size: 16px;
	 color: #7f8c8d;
  margin-bottom :50px;
	max-width     : 600px;
  margin-left  :     auto;
	margin-right: auto;
}

.packages-grid{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap :   40px;
} 

.package-card    {
    background-color: #ffffff;
   border-radius: 12px;
        overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
	transition: all 0.3s ease;
       display: flex;
    flex-direction: column;
}

.package-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15); 
	
}

.package-card.featured {
  border: 3px solid #3498db;
  transform: scale(1.05);
}

.package-card.featured:hover {
  transform: scale(1.05) translateY(-10px);
}

.package-header {

  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
   padding: 30px 25px;
   text-align    :   center;
}

.package-header h3 {


    font-size: 24px;
   margin-bottom :    15px;
}

.package-price {
    font-size: 28px;
   font-weight: bold;
}

.package-body

{
                    padding: 30px 25px;
   flex-grow: 1;
}

.package-description {
    font-size: 14px;
   color: #7f8c8d;
   margin-bottom: 20px;
   line-height: 1.6;
}

.package-list {
   list-style: none;
  padding: 0;
    margin    :     0;
}

.package-list li {


   color: #2c3e50;
      position: relative;
  margin-bottom: 12px;
    font-size: 14px;
  padding-left: 25px;
}

.package-list li::before {
  content: '✓';
    position: absolute;
  left :        0;
    color: #27ae60;
  font-weight: bold;
    font-size:       16px;
}  

.package-footer {
    text-align:     center;
  padding: 20px 25px;
   border-top: 1px solid #ecf0f1;
}

.package-link {
  display: inline-block;
               color: #3498db;
    text-decoration   :       none;
    font-weight: 600;
    transition: all 0.3s ease;
}  

.package-link:hover {
  color  :   #2980b9;
  transform: translateX(5px);
}@media (max-width: 768px) {
    .service-packages {
        padding: 60px 20px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .package-card.featured:hover {
        transform: scale(1) translateY(-10px);
    }
}.service-process {
    background-color: #ffffff;
   padding   :        80px 20px;
}

.process-steps {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.process-step {
     text-align: center;
  position    :relative; 



}

.process-step:not(:last-child)::after {
     content: '';
   position: absolute;
  right: -20px;
    top: 30px;
    width: 40px;
  height  :   2px;
	background-color: #ecf0f1;}



.step-number {
    width: 70px;
          height   : 70px;
  background: linear-gradient(135deg, #667eea, #764ba2);
   color: white;
   border-radius: 50%;
  display: flex;
  align-items   :        center;
   justify-content: center;
    font-size: 28px;
   font-weight: bold;
    margin: 0 auto 20px;
}

.process-step h3 {
	font-size: 20px; 
	  margin-bottom: 15px; 
	  color: #2c3e50;
}

.process-step p {
	    font-size: 15px;
    color: #7f8c8d;
   line-height :      1.7;
	}@media (max-width: 768px) {
    .service-process {
        padding: 60px 20px;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .process-step:not(:last-child)::after {
        display: none;
    }
}.service-testimonials

{
   padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.testimonials-grid {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 30px;
}

.testimonial-card {
	  background-color: rgba(255, 255, 255, 0.1);
       padding: 35px;
       border-radius: 12px;
     border: 1px solid rgba(255, 255, 255, 0.2);
     backdrop-filter: blur(10px);
       transition   :  all 0.3s ease;
     }

.testimonial-card:hover {
  background-color: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.testimonial-text {
   font-size   :        15px;
   line-height: 1.8;
    margin-bottom   :  20px;
               opacity : 0.95;
	
}

.testimonial-author {
  font-size: 14px;
        font-weight: 600;
	opacity: 0.9;
}@media (max-width: 768px) {
    .service-testimonials {
        padding: 60px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}.service-cta {
		 padding: 80px 20px;
    background-color:#2c3e50;
    color: white;
				 text-align: center;
}

.service-cta h2 {
	  font-size :   44px;
  margin-bottom: 20px;
        font-weight: 700;
}

.service-cta p

{


    font-size: 18px;
          margin-bottom: 40px;
    opacity: 0.9;

     }@media (max-width: 768px) {
    .service-cta {
        padding: 60px 20px;
    }

    .service-cta h2 {
        font-size: 32px;
    }

    .service-cta p {
        font-size: 16px;
    }
}.thankyou-section {
	 min-height: 600px;
    padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color   :        white;
    display: flex;
    align-items   :        center;
  justify-content: center;
}

.thankyou-content {
   max-width: 600px;
  text-align: center;
}

.thankyou-icon {

	    width: 120px;
				 height: 120px;
  margin: 0 auto 30px;
  animation: scaleIn 0.6s ease; 

}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-icon svg 
 {
  width: 100%;
    height: 100%;
}

.thankyou-title {
   font-size  : 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.thankyou-subtitle	{
  font-size    :     20px;
    opacity: 0.9;
    margin-bottom: 40px;


}

.thankyou-message{
  background-color: rgba(255, 255, 255, 0.1);
	   padding: 30px;
	  border-radius: 12px;
	  margin-bottom: 40px;
	  border: 1px solid rgba(255, 255, 255, 0.2);
	  backdrop-filter: blur(10px);
}

.thankyou-message p {
     font-size: 15px; 
   line-height     :    1.8; 
  margin-bottom: 15px; 
   opacity: 0.95;
}

.thankyou-message p:last-child {
  margin-bottom: 0;
}

.thankyou-actions


{
    display: flex;
   gap: 20px;
   justify-content    : center;
	margin-bottom: 40px;
	 flex-wrap: wrap;
}

.thankyou-button {
    display :    inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
         font-weight: 600;
    transition: all 0.3s ease;
}

.thankyou-button.primary {
    background-color: white;
  color: #667eea; 

}

.thankyou-button.primary:hover {

	  transform: translateY(-2px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
	}

.thankyou-button.secondary {
   background-color: transparent; 
	    color: white; 
	  border: 2px solid white;
}

.thankyou-button.secondary:hover {
    background-color: white;
  color: #667eea;
}

.thankyou-info {
  background-color: rgba(255, 255, 255, 0.1);
     padding: 25px;
     border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.thankyou-info h3 {
    margin-bottom: 15px;
   font-size: 18px;
}

.thankyou-info p {
  font-size: 14px;
	opacity: 0.9;
         margin-bottom: 10px;
}

.thankyou-info p:last-child {

   margin-bottom: 0;
	}@media (max-width: 768px) {
    .thankyou-section {
        min-height: auto;
        padding: 60px 20px;
    }

    .thankyou-title {
        font-size: 36px;
    }

    .thankyou-subtitle {
        font-size: 18px;
    }

    .thankyou-actions {
        flex-direction: column;
        gap: 15px;
    }

    .thankyou-button {
        width: 100%;
    }
}.next-steps {
   padding: 80px 20px;
   background-color: #f8f9fa;
}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.step-card {
  background-color     :   white;
   padding: 35px;
   border-radius: 12px;
   text-align: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition     :all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.step-card-icon  {
	   width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
	color: white;
	 border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
   font-size: 28px;
	font-weight: bold;
  margin: 0 auto 20px;

} 

.step-card h3 {
  font-size: 20px;
   margin-bottom: 15px;
   color: #2c3e50;
}

.step-card p {
  font-size: 15px;
         color: #7f8c8d;
  line-height: 1.7;
}

@media (max-width: 768px) {
    .next-steps {
        padding: 60px 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }
}.policy-header {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
     color: white;
     padding: 80px 20px;
       text-align: center;
}

.policy-header h1 {


  font-size   :        48px;
 font-weight: 700;
    margin: 0;
	
}@media (max-width: 768px) {
    .policy-header {
        padding: 60px 20px;
    }

    .policy-header h1 {
        font-size: 36px;
    }
}.policy-section {

	    padding: 80px 20px;
    background-color: #f8f9fa;
  min-height: calc(100vh - 400px);
	}

.policy-container{
   max-width: 800px;
  margin: 0 auto;
  text-align: left;
  background-color: #ffffff;
  padding: 50px;
    border-radius    :12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.policy-container h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 25px;
    margin-top: 35px;
   font-weight: 700;
    line-height: 1.3;
}

.policy-container h2:first-child		{
			margin-top: 0;}

.policy-container p   {
  color: #7f8c8d;
       margin-bottom: 20px;
  line-height: 1.8;
   font-size: 16px;
	
}


.policy-container p strong {
   color: #2c3e50;
   font-weight: 600;
}

.policy-container p:last-child	{
      margin-bottom: 0;
}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 20px;
    }

    .policy-container {
        max-width: 100%;
        padding: 30px 20px;
        border-radius: 8px;
    }

    .policy-container h2 {
        font-size: 22px;
        margin-bottom: 20px;
        margin-top: 30px;
    }

    .policy-container p {
        font-size: 15px;
        margin-bottom: 18px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policy-header h1 {
        font-size: 28px;
    }

    .policy-container {
        padding: 20px 15px;
    }

    .policy-container h2 {
        font-size: 20px;
        margin-bottom: 18px;
        margin-top: 25px;
    }

    .policy-container p {
        font-size: 14px;
    }
}