* {
	    margin: 0;
	 padding: 0;
  box-sizing: border-box;
	


}

body {

  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

html {
  scroll-behavior: smooth;
}

a {
      text-decoration: none;
    color: inherit;
     }

.navbar


{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	  padding: 1.2rem 0; 
	  position: sticky; 
	    top: 0; 
	  z-index:   1000; 
	  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
}

.navbar-container {
               max-width  :       1200px;
	 margin: 0 auto;
  padding: 0 20px;
    display: flex;
    justify-content: space-between;
  align-items: center;
}

.navbar-logo img {
  height : 74px;
   width     :    auto;
  filter: brightness(0) invert(1);
   transition: transform 0.3s ease;
}

.navbar-logo img:hover {
  transform: scale(1.05);
}

.navbar-menu {
    display :    flex;
	list-style: none;
  gap  :    2.5rem;
   align-items: center;
}

.navbar-menu a {
  color: white;
  font-weight: 500;
    font-size: 1rem;
  transition: all 0.3s ease;
	position: relative;
}

.navbar-menu a::after		{
  content: '';
  position: absolute;
    bottom: -5px;
   left: 0;
    width: 0;
    height:    2px;
   background  :       white;
   transition     :       width 0.3s ease;
}

.navbar-menu a:hover::after {
   width: 100%;
}

.burger {

	    display: none;
  flex-direction  :      column;
   cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 25px;
	 height: 3px;
   background: white;
         border-radius: 3px;
  transition     : all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
	 opacity: 0;

}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .navbar-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        display: none;
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu a {
        font-size: 1.1rem;
    }
}.hero {
    display: grid;
          grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items :     center;
    max-width: 1200px;
   margin: 0 auto;
  padding: 5rem 20px;
}

.hero-content h1 {
       font-size: 3.5rem;
  color: #2c3e50;
   margin-bottom: 1.5rem;
   line-height: 1.2;}

.hero-content p {
  font-size: 1.2rem;
  color: #555;
   margin-bottom: 2rem;
   line-height: 1.8;
}

.hero-image img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
	}

.btn {
   display: inline-block;
   padding: 0.9rem 2rem;
      border-radius: 6px;
    font-weight: 600;
   transition: all 0.3s ease;
    border: none;
   cursor: pointer;
   font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.btn-large {
    padding: 1.2rem 3rem;
	  font-size: 1.1rem;
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}.why-blueprint {
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  padding: 5rem 20px;
}

.why-blueprint h2,
.coaching-process h2,
.services-preview h2,
.success-stories h2,
.testimonials h2,
.contact h2,
.cta-section h2 {
   text-align: center;
   font-size: 2.8rem;
  color: #2c3e50;
   margin-bottom: 1rem; 
	
}

.why-blueprint > p {
  text-align: center;
    font-size: 1.1rem;
   color: #666;
  margin-bottom: 3rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
         gap: 2.5rem;
 max-width: 1200px;
  margin: 0 auto;
}

.feature-card 
 {
   background: white;
   padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.4s ease;
   text-align: center;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.feature-icon {
   margin-bottom: 1.5rem;
                    display: flex;
    justify-content :center;
	
	}

.feature-icon svg {
    width: 48px; 
    height: 48px; 
    color: #667eea; 
	stroke :   #667eea; 
	fill: none; 
   stroke-width: 2; 
  filter: drop-shadow(0 2px 4px rgba(102, 126, 234, 0.2)); 
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
  transform: scale(1.15);
   color: #764ba2;
    stroke: #764ba2;
  filter: drop-shadow(0 4px 8px rgba(118, 75, 162, 0.3));
}

.feature-card h3 {
   font-size: 1.4rem;
   margin-bottom: 1rem;
    color: #2c3e50;
}

.feature-card p {
    color: #666;
    line-height: 1.7;
}

.coaching-process	{
    padding: 5rem 20px;
       max-width: 1200px;
   margin: 0 auto; 

}

.coaching-process > p {
   text-align: center;
   font-size: 1.1rem;
   color: #666;
  margin-bottom: 3rem;
}

.process-steps    {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 2.5rem;
  border-radius: 12px;
  position: relative;
}

.step-number {
                    font-size :      3.5rem;
    font-weight:     700;
    opacity: 0.15;
	 position   :absolute;
  top: 10px;
   right: 20px;
}

.step h3 {
    font-size: 1.4rem;
   margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.step p {
    position: relative;
	 z-index: 2;
    opacity: 0.95;
	 line-height: 1.7;
}

.services-preview {
	   background: #f8f9fa;
  padding: 5rem 20px;
}

.services-showcase {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 2.5rem;
  max-width: 1200px;
    margin: 0 auto;
}

.service-item {
   background: white;
    border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.4s ease;
}

.service-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.service-item img {


   width: 100%;
	 height: 200px;
   object-fit: cover;
	display: block;
     }

.service-item h3 {
   padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.3rem;
    color: #2c3e50;
}

.service-item p {
  padding: 0 1.5rem 1.5rem;
  color: #666;
   line-height: 1.7;
}

.success-stories {
    max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 20px;
}

.success-stories > p {
  text-align   :      center;
	font-size: 1.1rem;
   color: #666;
  margin-bottom: 3rem; 

}

.stories-grid {
  display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
}

.story-card {
	background: white;
    border-left: 4px solid #667eea;
   padding: 2rem;
     border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition  :      all 0.3s ease;
}

.story-card:hover		{
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
  transform: translateX(4px);
}

.story-card h4 {
         color: #667eea;
   font-size: 1.2rem;
   margin-bottom: 1rem;
}

.story-card p   {
     color: #666; 
	    line-height: 1.7;
}

.testimonials {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 5rem 20px;
   color: white;
}

.testimonials h2 {
   color: white;
  margin-bottom: 3rem;
}

.testimonials-container {
	    display    :grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
	 max-width: 1200px;
   margin: 0 auto;

}

.testimonial {
     background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
   border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition     :     all 0.3s ease;


	}

.testimonial:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);


}

.testimonial p {
         font-size: 1.05rem;
  margin-bottom: 1.5rem;
    line-height  :  1.8;
    font-style: italic; 

}

.testimonial strong {
   font-size:      0.95rem;
  display: block;
    opacity: 0.9;
}

.cta-section {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    padding: 5rem 20px;
    text-align: center;
   color: white;
}

.cta-content h2 {
    color: white;
   font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
   font-size: 1.1rem;
  margin-bottom: 2.5rem;
   max-width: 600px;
    margin-left: auto;
    margin-right: auto;
   opacity: 0.95;
}

.contact {

	    max-width: 1200px;
   margin: 0 auto;
   padding: 5rem 20px;
	}

.contact > p {
       text-align: center;
    font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;

}

.contact-form {
   max-width: 600px;
	 margin: 0 auto;
	background :    #f8f9fa;
	padding: 2.5rem;
  border-radius: 12px;
}

.form-group {
  margin-bottom: 1.5rem;


}

.form-group label {
    margin-bottom: 0.5rem;
   font-weight: 600;
   display: block;
   color    :  #2c3e50;
}

.form-group input,
.form-group textarea,
.form-group select {
       width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 6px;
	font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
   border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form .btn {
   width  :       100%;
    margin-top: 1rem;
}

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #3d5a6e 100%);
    color: white;
    padding: 3rem 20px 1rem;
  margin-top: 5rem;
}

.footer-container {
    max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
                    gap: 3rem;
    padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
  font-size  : 1.2rem;
    margin-bottom: 1rem;
}

.footer-logo img {
     height: 96px;
  width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-info p {
  margin-bottom: 1rem;
               line-height: 1.8;
    opacity: 0.9;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
     color: rgba(255, 255, 255, 0.8);
    transition   :all 0.3s ease;
     }

.footer-links a:hover {
  color: white;
    margin-left   :   5px;
}

.footer-bottom {
    text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  opacity: 0.8;
}@media (max-width: 768px) {
    .why-blueprint h2,
    .coaching-process h2,
    .services-preview h2,
    .success-stories h2,
    .testimonials h2,
    .contact h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .features-grid,
    .process-steps,
    .services-showcase,
    .stories-grid,
    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}.services-hero   {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 5rem 20px;
    text-align: center;
}

.services-hero-content h1

{
   font-size: 3rem;
   margin-bottom   :       1.5rem;
   line-height: 1.2;
}

.services-hero-content p {
  font-size: 1.2rem;
       max-width: 700px;
       margin: 0 auto;
      opacity: 0.95;
     line-height: 1.8;
}

.services-main {
   max-width: 1200px;
  margin: 0 auto;
   padding: 5rem 20px;
	}

.service-detail {
    display : grid; 
	  grid-template-columns: 1fr 1fr; 
	  gap: 3rem; 
	    align-items     : center; 
	   margin-bottom: 5rem; 
	   padding-bottom: 3rem; 
	  border-bottom: 1px solid #eee;
}

.service-detail:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.service-detail.alternate {
  grid-template-columns: 1fr 1fr;
   direction: rtl;
}

.service-detail.alternate .service-detail-image,
.service-detail.alternate .service-detail-content {
  direction: ltr;
}

.service-detail-image img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    transition: transform 0.4s ease;
}


.service-detail:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-content h2 {

	    font-size: 2.2rem;
  color: #2c3e50;
   margin-bottom    :     1rem;


}

.service-detail-content > p {
   font-size: 1.05rem;
    color:       #555;
	 line-height: 1.8;
   margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.3rem;

   color: #667eea;

    margin-bottom: 1rem;
}

.service-features {
    list-style: none;
    margin-bottom: 2rem;
}

.service-features li {
   padding: 0.6rem 0;
  padding-left: 1.5rem;
  position :   relative;
   color: #555;
    line-height: 1.6;
}

.service-features li::before {
  content: '✓';
	 position: absolute;
  left: 0;
    color: #2ecc71;
   font-weight: bold;
    font-size: 1.2rem;
}

.service-meta {
  display: flex;
  gap: 2rem;
   margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.service-meta span {
   font-size: 0.95rem;
    color   : #666;
}

.service-meta strong {
    color:    #667eea;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail,
    .service-detail.alternate {
        grid-template-columns: 1fr;
        direction: ltr;
        margin-bottom: 3rem;
        gap: 2rem;
    }

    .service-detail.alternate .service-detail-image,
    .service-detail.alternate .service-detail-content {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 1.6rem;
    }
}.pricing-section {

  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 20px;
}

.pricing-section h2 {
   text-align: center;
	font-size: 2.8rem;
    color     :   #2c3e50;
  margin-bottom: 1rem;
}

.pricing-section > p {
   text-align: center;
   font-size  :    1.1rem;
			color: #666;
	 margin-bottom: 3rem;
}

.pricing-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
  max-width   :1200px;
    margin  : 0 auto;
}

.pricing-card {
    background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.4s ease;
   position: relative;
   border: 2px solid transparent;
}

.pricing-card:hover
{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured  {
	   border-color: #667eea;
  transform: scale(1.05);

}

.pricing-card.featured:hover   {

  transform: scale(1.05) translateY(-10px);}

.pricing-card .badge {
    position: absolute;
  top: -12px;
    left: 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.4rem 1rem;
  border-radius:   20px;
   font-size: 0.85rem;
    font-weight   :  600;
}

.pricing-card h3 {
  font-size: 1.4rem;
        margin-bottom: 1rem;
   color: #2c3e50;
}

.pricing-card .price {
   font-size: 2.5rem;
  color: #667eea;
    font-weight: 700;
    margin: 0;
}

.pricing-card .period {
  color: #999;
  font-size: 0.95rem;
        margin-bottom: 1.5rem;
} 

.pricing-card ul {


    list-style :      none;
  margin-bottom: 2rem;
	}

.pricing-card li {
    padding    :       0.7rem 0;
  color: #666;
   padding-left: 1.5rem;
  position: relative;
    line-height: 1.6; 
	
}

.pricing-card li::before {
  content: '✓';
  position  : absolute;
	left: 0;
    color: #2ecc71;
    font-weight: bold;
}

.pricing-card .btn {
   width: 100%;
   text-align: center;
}

.btn-outline {

   background: white;
   color: #667eea;
   border: 2px solid #667eea;
     }

.btn-outline:hover {

	  background: #667eea;
    color: white;
	}

.methodology {
    max-width: 1200px;
    margin: 0 auto;
    padding :    5rem 20px;
}

.methodology h2 {
  font-size: 2.8rem;
  margin-bottom: 1rem;
   color: #2c3e50;
  text-align: center;
}

.methodology > p {
   text-align: center;
   font-size: 1.1rem;
   color: #666;
               margin-bottom: 3rem;
}

.methodology-grid {
   display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 2rem;
}

.methodology-item {
  background: white;
   padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
                    transition: all 0.4s ease;
	 text-align: center;
  position: relative;
}

.methodology-item:hover {
	  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
     }

.methodology-number {
   display: flex;
	 align-items: center;
    justify-content: center;
   width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border-radius: 50%;
    font-size   :      1.8rem;
   font-weight: 700;
   margin: 0 auto 1.5rem;
}

.methodology-item h3 {
   font-size: 1.3rem;
   color: #2c3e50;
  margin-bottom: 1rem;
}

.methodology-item p {
     color: #666;
    line-height: 1.7;
}

.faq-section {
  background: #f8f9fa;
   padding: 5rem 20px;
}

.faq-section h2 {
    text-align: center;
	font-size: 2.8rem;
   color: #2c3e50;
  margin-bottom: 3rem;
}

.faq-container {
               max-width: 900px;
    margin: 0 auto;
}

.faq-item {
   background: white;
    margin-bottom: 1.5rem;
       border-radius    : 8px;
   overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
   transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 15px rgba(102, 126, 234, 0.1);
}

.faq-question {
   padding: 1.5rem;
        margin    :   0;
   font-size: 1.1rem;
   color: #2c3e50;
    cursor: pointer;
  user-select: none;
   position: relative;
  padding-right: 2.5rem;
}

.faq-question::after {
  content: '+';
	position: absolute;
   right: 1.5rem;
   font-size: 1.5rem;
   color: #667eea;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
   overflow: hidden;
  padding :     0 1.5rem;
  color: #666;
  line-height: 1.7;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
   padding: 0 1.5rem 1.5rem;
}

.cta-final

{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 5rem 20px;
    text-align: center;
}

.cta-final h2 {
  color: white; 
	   font-size: 2.5rem; 
		margin-bottom: 1.5rem;
}

.cta-final p {
      font-size: 1.1rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
}

.thankyou-page {
  background: #f8f9fa;
}

.thankyou-section {
   padding: 4rem 20px;
  min-height: calc(100vh - 300px);
   display: flex;
  align-items: center;
}

.thankyou-container {
  max-width: 700px;
  margin: 0 auto;
   background: white;
  padding: 3rem;
  border-radius:      12px;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
    text-align: center;
}

.success-icon  
  {
  margin-bottom: 2rem;
  display: flex;
        justify-content     :        center;
	
}

.success-icon svg {
  width: 80px;
   height: 80px;
  animation: successPulse 0.6s ease;
	
}@keyframes successPulse {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-section h1 {
  color: #2c3e50; 
    font-size: 2.5rem; 
  margin-bottom: 1rem;
}

.thank-you-message {
       font-size: 1.2rem;
   color: #555;
    margin-bottom: 1rem; 
	
}

.confirmation-text {
  font-size: 1.05rem;
    color: #666;
   line-height: 1.8;
    margin-bottom   :     2.5rem;
}

.next-steps {
	background: #f8f9fa;
   padding: 2.5rem;
    border-radius: 8px;
   margin-bottom: 2.5rem;
               text-align: left;
}

.next-steps h2 {
  font-size: 1.5rem;
   color: #2c3e50;
   margin-bottom: 2rem;
	text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
  gap   :   1.5rem;
	
} 

.step-item {

  display: grid;
  grid-template-columns: 50px 1fr;
   gap: 1.5rem;
  align-items: flex-start;
	} 

.step-num {
  display: flex;
   align-items: center;
    justify-content: center;
    width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   border-radius: 50%;
  font-weight: 700;
    font-size  :1.2rem;
   flex-shrink: 0;
}

.step-content h3 {
    font-size:     1.1rem;
   color: #2c3e50;
  margin-bottom: 0.5rem;
}

.step-content p {
  color: #666;
   line-height     :1.6;
  font-size: 0.95rem;
}

.contact-info-box {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  padding :      2rem;
   border-radius: 8px;
    border-left: 4px solid #667eea;
   margin-bottom: 2rem;
}

.contact-info-box h3 {
   font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom     :       1rem;
}

.contact-info-box p {
               color: #666;
   line-height: 1.7;
}

.contact-details {

   font-weight: 500;
  margin-top: 1rem;
 color: #2c3e50;}

.action-buttons {
        display: flex;
  gap: 1rem;
  justify-content: center;
}

.action-buttons .btn {

  flex: 1;
  max-width    : 250px;}

.additional-value {
  background: white;
   padding: 5rem 20px;
}

.additional-value h2 {
   text-align: center;
  font-size: 2.2rem;
  color :  #2c3e50;
   margin-bottom: 3rem;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
   max-width: 1200px;
          margin: 0 auto;

}

.value-card {
    background: #f8f9fa;
     padding:    2rem;
   border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
    background: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
     }

.value-icon {


    display: flex;
  justify-content: center;
    margin-bottom: 1.5rem; 
	
}

.value-icon svg {


   width  : 40px;
   height: 40px;
   color: #667eea;
  stroke: #667eea;
  fill   :       none;
   stroke-width: 2;
	}

.value-card h3 {
    font-size: 1.2rem;
    color:       #2c3e50;
   margin-bottom: 1rem;
}

.value-card p {
   color : #666;
  line-height: 1.7;
}@media (max-width: 768px) {
    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }

    .next-steps {
        padding: 1.5rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-buttons .btn {
        max-width: 100%;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .faq-question {
        font-size: 1rem;
    }
}.policySection  {
	 padding: 80px 2rem;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
  min-height: calc(100vh - 400px);
}

.policyContainer {
   max-width: 900px;
      margin: 0 auto;
    text-align: left;
}

.policyContainer h2 {
    font-size: 2.8rem;
  color: #2c3e50;
  margin-bottom: 2rem;
  font-weight: 700;
    line-height: 1.2;
}

.policyContainer h3


{
   margin-bottom: 1rem;
	margin-top: 2.5rem;
    color: #667eea;
   font-size: 1.4rem;
  font-weight    :   600;
}



.policyContainer p {
  color: #555;
    margin-bottom: 1.5rem;
   line-height: 1.8;
   font-size: 1.05rem;
}

.policyContainer p:first-of-type {
    font-size: 1.1rem;
  color: #666;
  font-style: italic;
  border-left: 4px solid #667eea;
    padding-left: 1.5rem;
    margin-bottom     :2.5rem;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policyContainer p:first-of-type {
        font-size: 1rem;
        padding-left: 1rem;
    }
}