* {

   margin: 0;
   padding: 0;
    box-sizing: border-box;


}

html {
  scroll-behavior: smooth;
	
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
   color: #2c3e50;
	background-color: #ffffff;
  line-height: 1.6;


}

a {
    text-decoration: none;
	color     :  inherit;
}

ul, ol {
   list-style: none;
}  

img
{
    max-width: 100%;
    height: auto;
  display: block;
}

button {
  cursor: pointer;
	 border: none;
    background: none;
  font-family: inherit;
}

input, textarea, select {
  font-family: inherit;
}

.navbar {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        position    :    sticky;
	top: 0;
   z-index    : 100;
}

.nav-container {
        display: flex;
	  justify-content: space-between;
	                    align-items: center;
	    padding: 1rem 2rem;
	    max-width: 1200px;
	  margin: 0 auto;
}

.nav-logo img {
  height :       94px;
  width: auto;
}

.nav-menu {
  display :   flex;
  gap: 3rem;
   align-items     :        center;
} 

.nav-link {
  font-weight: 600;
	color: #2c3e50;
    position: relative;
  transition:  color 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
    width: 0;
   height: 2px;
  bottom: -5px;
    left: 0;
   background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-link:hover {
   color: #3498db;


}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
  gap: 6px;
  background: none;
}

.burger-line {
	width: 25px;
    height: 3px;
  background-color: #2c3e50;
    border-radius  :        2px;
                    transition: all 0.3s ease;
}

.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);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.open {
        max-height: 300px;
        padding: 1rem 2rem;
    }

    .nav-item {
        width: 100%;
        padding: 0.75rem 0;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-item:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .nav-logo img {
        height: 70px;
    }
}.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 8rem 2rem;
  text-align: center;
   min-height: 600px;
    display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content h1 {
  font-size: 3.5rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-subtitle {


  font-size: 1.3rem;
				 margin-bottom: 2.5rem;
       max-width  :       700px;
  margin-left: auto;
	margin-right: auto;
  line-height     :1.8;
    opacity: 0.95;}

.cta-button

{
    display: inline-block;
  background-color: #f39c12;
    color: white;
  padding: 1rem 2.5rem;
   border-radius: 50px;
               font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}

.cta-button:hover {
     background-color:    #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}@media (max-width: 768px) {
    .hero {
        padding: 4rem 1.5rem;
        min-height: 400px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }
}.section-header

{
    text-align     :       center;
    margin-bottom: 3rem;
}

.section-header h2 {
  font-size     :2.5rem;
    color     :#2c3e50;
    margin-bottom: 1rem;
    font-weight :    700;
}

.section-header p {
  font-size: 1.1rem;
   color: #7f8c8d;
    max-width: 600px;
   margin: 0 auto;
}

.why-choose-us {
    padding: 5rem 2rem;
  max-width: 1200px;
    margin: 0 auto;
}

.features-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
   background: white;
  padding: 2.5rem;
   border-radius     :     10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
       border-top: 4px solid #3498db;
}

.feature-card:hover  
  {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-number {

	   font-size: 2.5rem;
   margin-bottom: 1rem;
    font-weight: 700;
   color: #3498db;
	}

.feature-card h3 {
  font-size: 1.4rem;
    margin-bottom: 1rem;
	color: #2c3e50;
}

.feature-card p {
    color: #7f8c8d;
   line-height: 1.7;
}

.services-preview {
	   padding: 5rem 2rem;
	background-color: #f8f9fa;
    max-width: 1200px;
    margin: 0 auto;
     }

.services-container {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;


}

.service-item
{
  background: white;
   border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.service-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-info {
       padding: 1.5rem;
}

.service-item h3 {
         font-size: 1.3rem;
    margin-bottom: 0.8rem;
	 color: #2c3e50;
}

.service-item p {
  color: #7f8c8d;
          line-height: 1.6;
  font-size: 0.95rem;
}

.workshop-section {
  padding: 5rem 2rem;
  max-width: 1200px;
    margin: 0 auto;
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.workshop-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
   color: #2c3e50;
}

.workshop-content > p {
    color: #7f8c8d;
   font-size: 1.1rem;
   margin-bottom: 2rem;
          line-height: 1.8;
}

.workshop-benefits {
   display: grid;
	gap: 1.5rem;
}

.benefit-item {
  background: #f0f4f8;
    padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid #667eea;
}


.benefit-item h4 {
  color: #2c3e50;
   margin-bottom: 0.5rem;
   font-weight:  600;
}

.benefit-item p {
  color: #7f8c8d;
    font-size:0.95rem;
}

.workshop-image {
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}@media (max-width: 768px) {
    .workshop-section {
        grid-template-columns: 1fr;
    }

    .workshop-content h2 {
        font-size: 2rem;
    }
}.team-approach {
	 padding: 5rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   max-width: 1200px;
  margin: 0 auto;
}

.team-content {
    display     :        grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
	align-items: center;
}

.team-image {
   border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);


}

.team-text h2 {
   font-size: 2.5rem;
   margin-bottom: 1.5rem;
  color: #2c3e50;
}  

.team-text p {
   color: #555;
	margin-bottom: 1.5rem;
    line-height: 1.8;
  font-size: 1.05rem;
}

.team-benefits-list {
   margin-top: 1.5rem;
}

.team-benefits-list li


{
    padding: 0.75rem 0;
       padding-left: 1.5rem;
   color: #555;
   position   :    relative;
}

.team-benefits-list li::before {
  content: '';
   position: absolute;
	left   :  0;
    top: 50%;
  transform: translateY(-50%);
    width: 8px;
  height: 8px;
  background-color: #3498db;
    border-radius: 50%;
}@media (max-width: 768px) {
    .team-content {
        grid-template-columns: 1fr;
    }

    .team-text h2 {
        font-size: 2rem;
    }
}.coaching-methodology {
    padding: 5rem 2rem;
   max-width: 1200px;
    margin: 0 auto; 
	
}

.methodology-steps {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}



.step {
  text-align     :    center;
	padding: 2rem;
    background: white;
                    border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.step:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
	
}

.step-number {
   display: inline-block;
	width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color     :     white;
	 border-radius: 50%;
   line-height: 50px;
   font-size: 1.5rem;
  font-weight: 700;
   margin-bottom: 1rem;
}

.step h3	{

    font-size: 1.3rem;
    margin-bottom: 1rem;
  color: #2c3e50;
}

.step p {
    color: #7f8c8d;
   line-height: 1.6;
    font-size: 0.95rem;
}

.success-metrics {
    padding: 5rem 2rem;
   background-color: #f8f9fa;
               max-width: 1200px;
    margin: 0 auto;
}

.metrics-grid {
    display    :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.metric-box {
   background: white;
    padding: 2rem;
	border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
   border-top: 4px solid #f39c12;
}

.metric-number {
    font-size: 2.8rem;
  color: #667eea;
    font-weight: 700;
   margin-bottom: 0.5rem;
}

.metric-box p {


  color: #7f8c8d;
    font-size: 1rem;


}



.faq-section {
  padding:   5rem 2rem;
     max-width :      1200px;
      margin: 0 auto;
}

.faq-container {
   display: grid;
    gap:     1.5rem;
    max-width: 800px;
  margin: 0 auto;
  margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.faq-question
{
  color: #2c3e50;
    font-size: 1.1rem;
  margin-bottom   : 0.75rem;
	cursor: pointer;
  transition: color 0.3s ease;
}

.faq-question:hover {
   color: #3498db;
}

.faq-answer {
         color: #7f8c8d;
  line-height: 1.7;
    margin: 0;
     }

.cta-final {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 2rem;
  text-align: center;
   color: white;
     }

.cta-content h2 {
                    font-size: 2.5rem;
   margin-bottom: 1rem;
}

.cta-content p {
  opacity: 0.95;
  margin-left: auto;
   margin-right: auto;
    max-width: 600px;
	margin-bottom: 2rem;
  font-size: 1.15rem;
}

.cta-button-large {

   display: inline-block;
   background-color: #f39c12;
                    color: white;
   padding   :1.2rem 2.8rem;
   border-radius: 50px;
    font-weight: 600;
  font-size: 1.1rem;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);}

.cta-button-large:hover {
	background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}

.contact {
	 padding: 5rem 2rem;
   max-width: 1200px;
  margin: 0 auto;
}

.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
  margin-top: 3rem;
}

.contact-form {
   background: white;
   padding     :      2rem;
   border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.form-group {
	margin-bottom: 1.5rem;
  display: flex;
    flex-direction   :       column;
}

.form-group label {
    font-weight: 600;
   color: #2c3e50;
  margin-bottom: 0.5rem;
}


.form-group input,
.form-group textarea,
.form-group select {
    padding: 0.8rem;
    border: 2px solid #ecf0f1;
    border-radius :5px;
     font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus
	{
    outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-btn {
   transition: all 0.3s ease;
   border-radius: 5px;
    font-weight: 600;
	width: 100%;
       font-size: 1rem;
    background-color: #667eea;
  color: white;
      cursor: pointer;
   padding: 1rem 2rem;
}

.submit-btn:hover {
    background-color: #764ba2;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4); 
	
}

.contact-info		{
    background: #f8f9fa;
  padding :       2rem;
  border-radius: 10px;
}

.contact-info h3

{
    font-size: 1.5rem;
	margin-bottom: 1.5rem;
    color: #2c3e50;
} 

.contact-detail {
    margin-bottom: 1.5rem;
   color: #555;
    line-height: 1.8;
}

.contact-detail strong {
	  color: #2c3e50;
  display: block;
   margin-bottom: 0.3rem;

}@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .workshop-content h2,
    .cta-final h2 {
        font-size: 2rem;
    }
}.footer {
   background-color: #2c3e50;
  color: white;
  padding:        3rem 2rem 1rem;
}

.footer-content     {
   max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo-section {
  display: flex;
     align-items: flex-start;
}

.footer-logo {
  height: 136px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: grid;

		grid-template-columns  :   1fr 1fr;

	 gap: 2rem;
}

.footer-column h4 {
  font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column ul li 
 {
   margin-bottom: 0.5rem;
}

.footer-column a {
    color: #ecf0f1;

  transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #f39c12;
}

.footer-contact h4 {
   font-size: 1.1rem;
   margin-bottom: 1rem;
      font-weight: 600;
}

.footer-contact p {
   color: #ecf0f1;
   margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-bottom {
   text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #bdc3c7;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        height: 100px;
    }
}.services-hero {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
   color: white;
    padding: 6rem 2rem;
   text-align: center;
  min-height: 500px;
  display: flex;
   align-items: center;
    justify-content: center;
}

.services-hero-content h1 {
  font-size: 3rem;
    font-weight: 700;
   margin-bottom: 1rem;
   line-height: 1.2;
}

.services-hero-subtitle {
   line-height: 1.8;
  max-width  :       700px;
	margin: 0 auto;
  font-size: 1.2rem;
    opacity: 0.95;
}@media (max-width: 768px) {
    .services-hero {
        padding: 3rem 1.5rem;
        min-height: 350px;
    }

    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-subtitle {
        font-size: 1rem;
    }
}.services-main {
  padding: 5rem 2rem;
    max-width :      1200px;
   margin: 0 auto;
}

.services-grid {

    grid-template-columns: 1fr;
    gap: 3rem;
     display: grid;

}


.service-card-detailed {
  display: grid;
	    grid-template-columns: 1fr 1.2fr;
	  gap: 2rem;
	   background: white;
	   border-radius  :        10px;
		overflow     :  hidden;
	  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	    transition: all 0.3s ease;
}

.service-card-detailed:hover


{
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.service-card-detailed:nth-child(even) {
   grid-template-columns: 1.2fr 1fr;
}

.service-card-detailed:nth-child(even) .service-card-image {


   order    :  2;
}

.service-card-image {
  overflow: hidden;
}

.service-card-image img {
	 width: 100%;
  height: 100%;
   object-fit: cover;
  transition: transform 0.3s ease;
}

.service-card-detailed:hover .service-card-image img {
  transform: scale(1.05);
}

.service-card-content {
               padding: 2.5rem;
    display :flex;
   flex-direction: column;
   justify-content: space-between;
}

.service-card-content h2
{
   font-size: 1.8rem;
  margin-bottom: 1rem;
   color: #2c3e50;
}

.service-intro {
    font-size: 1rem;
         color: #7f8c8d;
    margin-bottom: 1.5rem;
   line-height: 1.6;
}

.service-details {
    margin-bottom: 1.5rem;
}

.service-details h3 {
  font-size: 1.1rem;
    margin-bottom    :    1rem;
  color:      #2c3e50;
  font-weight: 600;
}



.service-list {
   list-style: none;
}

.service-list li {
  padding: 0.5rem 0;
   padding-left: 1.5rem;
    color: #555;
  position   :       relative;
    line-height: 1.6;
}

.service-list li::before {
    position: absolute;
    top: 0.8rem;
	background-color: #667eea;
   left :0;
    border-radius: 50%;
  content: '';
   height: 6px;
    width    :        6px;
}

.service-specs {
   background    :#f8f9fa;
  margin-bottom: 1rem;
   gap    :       1rem;
    padding: 1.5rem;
  grid-template-columns: repeat(3, 1fr);
  display: grid;
   border-radius: 8px;
}

.spec-item {
   display: flex;
  flex-direction: column;
}

.spec-label {


   font-weight: 600;
   color: #2c3e50;
	font-size: 0.85rem;


}

.spec-value	{
    color:   #667eea;
    font-weight: 500;
   margin-top: 0.3rem;
}

.service-outcome {
   color: #27ae60;
	 font-weight: 500;
    padding-top: 1rem;
    border-top: 2px solid #ecf0f1;
}@media (max-width: 768px) {
    .service-card-detailed {
        grid-template-columns: 1fr;
    }

    .service-card-detailed:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .service-card-detailed:nth-child(even) .service-card-image {
        order: 1;
    }

    .service-card-content {
        padding: 1.5rem;
    }

    .service-card-content h2 {
        font-size: 1.4rem;
    }

    .service-specs {
        grid-template-columns: 1fr;
    }
}.service-comparison {
  padding: 5rem 2rem;
    background-color: #f8f9fa;
  max-width: 1400px;
   margin: 0 auto;
}

.comparison-table {
  overflow-x: auto;

	   margin-top: 2rem;
}

table {
    width: 100%;
    border-collapse: collapse;
     background: white;
   border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

th    {
  padding: 1.2rem;
   text-align: left;
    font-weight: 600;
}

td     {
    padding: 1.2rem;
  border-bottom: 1px solid #ecf0f1;
  color: #555;
}

tbody tr:hover {
   background-color: #f0f4f8;
}

tbody tr:last-child td
	{
    border-bottom: none;
}@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.9rem;
    }

    th, td {
        padding: 0.8rem;
    }
}.process-section {
               padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-timeline {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
   margin-top :       3rem;
   position: relative;


}

.process-timeline::before {
  content: '';
    position: absolute;
    top: 30px;
          left :0;
    right:    0;
					height: 2px;
  background: linear-gradient(90deg, #667eea 0%, transparent 100%);
    z-index: 0;
}
@media (max-width: 768px) {
    .process-timeline::before {
        display: none;
    }
}.timeline-item {

		 position: relative;
  background: white;
   padding: 2rem;
   border-radius   :      10px;
	 text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
	z-index: 1;
}

.timeline-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
     }


.timeline-number {
	         display    :     inline-block; 
	   width: 50px; 
	    height: 50px; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	    color: white; 
	  border-radius: 50%; 
	   line-height: 50px; 
	    font-weight:  700; 
		font-size: 1.3rem; 
	    margin-bottom: 1rem; 
	}

.timeline-item h3 {
   font-size: 1.2rem;
    margin-bottom: 0.5rem;
  color: #2c3e50;
}

.timeline-item p {
        color:  #7f8c8d;
   font-size: 0.95rem;
  line-height: 1.6;
}

.pricing-section {
   padding: 5rem 2rem;
   background-color    :  #f8f9fa;
   max-width: 1200px;
    margin: 0 auto;
}

.pricing-grid {
    display :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	 gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
   background    :       white;
      padding: 2.5rem;
  border-radius   : 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
 text-align: center;
   transition: all 0.3s ease;
  position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover


{
  transform: translateY(-10px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}


.pricing-card.featured {
   border: 2px solid #667eea;
  transform: scale(1.05);
}

.featured-badge {
	position: absolute;
  top: -12px;
    left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1.5rem;
  border-radius: 20px;
   font-weight: 600;
   font-size: 0.85rem;
}

.pricing-card h3 {
    font-size     :1.6rem;
               margin-bottom     :       0.5rem;
         color: #2c3e50;
}

.pricing-description {
	color: #7f8c8d;
    margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.pricing-highlight

{
  background: #f0f4f8;
  padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
   color: #667eea;
    font-weight: 600;
}

.pricing-features {
   list-style:  none;
  margin: 1.5rem 0;
    text-align: left;
}

.pricing-features li {


   padding: 0.7rem 0;
  padding-left  :      1.5rem;
   color: #555;
   position: relative;}

.pricing-features li::before {
  content: '';
    position     :      absolute;
    left :        0;
  top: 1rem;
   width: 6px;
  height: 6px;
   background: #27ae60;
               border-radius: 50%;
}

.pricing-note {
   margin-top    :  1.5rem;
	color: #667eea;
    font-weight: 600;
  font-size: 1.1rem;
	
}@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}.testimonials-section {
        padding: 5rem 2rem;
   max-width: 1200px;
    margin: 0 auto;
}

.testimonials-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
  margin-top: 3rem;

}

.testimonial-card {
	background: white;
    padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
   border-left     :4px solid #667eea;
	 transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.testimonial-text {
   font-style: italic;
  color: #555;
  margin-bottom: 1rem;
    line-height : 1.8;
}

.testimonial-author {
   color: #667eea;
    font-weight: 600;
  margin: 0;
}

.cta-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	padding:    4rem 2rem;
     text-align: center;
   max-width: 1200px;
    margin: 5rem auto 0;
  border-radius: 10px;
}

.cta-services h2 {
   font-size: 2.5rem;
  margin-bottom:       1rem;
}

.cta-services p {

	  font-size: 1.1rem;
     margin-bottom: 2rem;
      opacity: 0.95;}

.cta-button-services {
          display: inline-block;
    background-color: #f39c12;
    color: white;
                    padding: 1rem 2.5rem;
	 border-radius: 50px;
    font-weight: 600;
   font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.4);
}


.cta-button-services:hover {
   background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.5);
}  

.thankyou-container {

	  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);

}

.thankyou-content {
  background: white;
  padding  :      3rem 2rem;
    border-radius: 15px;
  max-width: 600px;
       text-align: center;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.success-icon {
    font-size     : 4rem;
   color: #27ae60;
   margin-bottom: 1rem;
   font-weight: 700;
}

.thankyou-container h1 {
    font-size     : 2.5rem;
    color: #2c3e50;
    margin-bottom     :      0.5rem;
}

.thankyou-subtitle {
	  font-size: 1.1rem;
  color: #7f8c8d;
     margin-bottom: 2rem;
}

.thankyou-details {
  background: #f0f4f8;
  padding: 1.5rem;
  border-radius: 8px;
  margin-bottom: 2rem;
	
}


.thankyou-details p {
    color: #555;
  margin-bottom: 0.5rem;
}

.service-highlight {
      font-size: 1.3rem;
    color: #667eea;
               font-weight: 600;
}

.next-steps {
	margin: 2rem 0;
}

.next-steps h2 {
	font-size: 1.5rem;
    color: #2c3e50;
   margin-bottom: 1.5rem;
}

.steps-list {
    display: grid;
   gap: 1rem;
}

.step-box {
      display: flex;
               gap     :  1.5rem;
  text-align: left;
         padding: 1rem;
   background: #f8f9fa;
    border-radius: 8px;
     }

.step-num {
	display: flex;
   align-items: center;
   justify-content :       center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 50%;
   font-weight: 700;
	flex-shrink: 0; 
	
}

.step-text h3 {
   font-size: 1rem;
  color: #2c3e50;
  margin-bottom: 0.3rem;
}

.step-text p {
   color: #7f8c8d;
  font-size: 0.9rem;
  margin: 0;
}

.contact-reminder {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
   color: white;
    padding: 1.5rem;
                    border-radius: 8px;
  margin: 2rem 0;
}

.contact-reminder p {
  margin: 0.5rem 0;
}

.contact-phone {
  font-size: 1.2rem;
}

.contact-hours {
	    font-size: 0.9rem;
          opacity: 0.9;
	}

.thankyou-actions {
  display  : grid; 
	    grid-template-columns: 1fr 1fr; 
	  gap: 1rem; 
	    margin: 2rem 0;
}

.btn-primary, .btn-secondary {

		padding   :   0.8rem 1.5rem;
    border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
    display: inline-block;


}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

.btn-secondary {
      background: #ecf0f1;

   color: #2c3e50;

  border: 2px solid #bdc3c7;


}

.btn-secondary:hover {
   background: #bdc3c7;
  transform: translateY(-2px);
}

.faq-tips
	{
	background: #f0f4f8;
    padding: 1.5rem;
   border-radius: 8px;
   border-left:     4px solid #667eea;
   text-align: left;
  margin-top: 2rem;
	}

.faq-tips h3 {
	   color: #2c3e50;
   margin-bottom: 0.5rem;
}

.faq-tips p {
  color: #7f8c8d;
   font-size  :   0.95rem;
    margin: 0;
}@media (max-width: 768px) {
    .thankyou-content {
        padding: 2rem 1rem;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .next-steps h2 {
        font-size: 1.3rem;
    }

    .step-box {
        flex-direction: column;
    }

    .step-num {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}.policySection {
  padding: 80px 2rem;
   background: #f8f9fa;
  min-height: calc(100vh - 200px);
}

.policyContainer {
    max-width: 900px;
  margin: 0 auto;
          text-align: left;
   background: white;
   padding: 3rem;
                    border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.policyContainer h1  
  {
   font-size: 2.8rem;
  color: #2c3e50;
   margin-bottom: 2rem;
  font-weight: 700;
}

.policyContainer h2 {
   font-size: 1.8rem;
    color: #2c3e50;
 margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
  border-bottom: 2px solid #667eea;
    padding-bottom: 0.5rem;
}

.policyContainer p {
    color: #555;
   margin-bottom: 1.2rem;
   line-height: 1.8;
  font-size: 1rem;
}

.policyContainer strong {
   color: #2c3e50;
    font-weight: 600;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
    }
}