*  
  {
	margin: 0;
    padding: 0;
  box-sizing    :       border-box;
}

html {
  scroll-behavior: smooth;
  font-size    :        16px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
         color: #1a1a1a;
  line-height    :    1.6;
   background  :     #fafafa;
}

a    {
	  text-decoration: none;
  color: inherit;
         transition: all 0.3s ease;
     }

img {
       max-width: 100%; 
   height: auto; 
  display: block;

}

.site-header {
  background: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
			position   :   sticky;
   top: 0;
    z-index    :      100;
}

.main-navigation {

	    padding: 0.75rem 0;

}

.nav-container	{
  max-width: 1200px;
  margin: 0 auto;
   padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
          align-items: center;
}

.nav-brand img
	{

  height: 45px;
   width: auto;
    object-fit: contain;

}

.burger-menu {
   display: none;
   flex-direction    :  column;
   background: none;
  border: none;
   cursor: pointer;
	padding: 0.5rem;
  gap: 0.35rem;
}

.burger-line {
     width: 24px;
    height     :       2.5px;
   border-radius: 2px;
   background: #1a1a1a;
    transition: all 0.3s ease;
	}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active .burger-line:nth-child(2) {
  opacity     :    0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-menu {
      display  :  flex;
    list-style: none;
    gap: 2rem;
	


}

.nav-link {
		 font-size :0.95rem;
   font-weight: 500;
  color: #1a1a1a;
	position: relative;
}

.nav-link::after {


  content: '';
  position: absolute;
  bottom: -5px;
   left: 0;
   width: 0;
    height: 2px;
   background: #3b82f6;
  transition: width 0.3s ease;


}

.nav-link:hover::after {
     width: 100%;
	

}

.hero-section {
	max-width  :        1200px;
    margin:     0 auto;
  padding:   3rem 1.5rem;
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items : center;
}

.hero-content h1{
   font-size: 2.5rem;
    font-weight: 700;
  margin-bottom: 1rem;
    color: #0f172a;
   line-height: 1.2;
}

.hero-subtitle {

    font-size: 1.1rem;
   color: #475569;
   margin-bottom: 2rem;
    line-height: 1.5;
	}

.cta-button {
    display: inline-block;
    padding: 0.75rem 2rem;
  background: #3b82f6;
    color: white;
    border-radius: 6px;
   font-weight: 600;
  transition: all 0.3s ease;
   border: 2px solid #3b82f6;
}

.cta-button:hover {
   background: #2563eb;
    border-color: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.hero-image img {
		border-radius    :12px;
   width: 100%;
    height  :auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
     }

.introduction-section {
    background: white;
    padding: 3rem 1.5rem;
	 max-width: 1200px;
                    margin: 2rem auto;
  border-radius: 10px;
} 

.intro-wrapper h2 {
       font-size: 2rem;
     margin-bottom: 1.5rem;
   color: #0f172a;}

.intro-wrapper p {


   font-size: 1rem;
   color     :      #475569;
  margin-bottom: 1rem;
   line-height   :        1.8;
}

.services-preview {
	max-width: 1200px;
        margin:      3rem auto;
   padding: 0 1.5rem;

}

.services-preview h2 {
   font-size     :   2rem;
  margin-bottom  :       2rem;
  color: #0f172a;
  text-align: center;
}

.services-grid
	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.service-card {
   background:    white;
          border-radius: 10px;
	overflow :  hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.card-image   {

	      overflow: hidden;
   height  :220px;
   width: 100%;
}

.card-image img {
    width: 100%;
    height   :    100%;
      object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .card-image img {
  transform: scale(1.05);
}

.service-card h3 {
   font-size: 1.3rem;
  color: #0f172a;
               padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p 
 {
 padding: 0 1.5rem 1.5rem;
   font-size: 0.95rem;
   color: #64748b;
   line-height: 1.6;
}

.benefits-section {
  background: linear-gradient(135deg, #f0f4ff 0%, #f9fafb 100%);
     padding: 3rem 1.5rem;
   margin: 3rem 0;
}

.benefits-container {
         max-width: 1200px;
   margin: 0 auto;
}

.benefits-container h2 {
  font-size: 2rem;
    margin-bottom:      2.5rem;
   color: #0f172a;
			text-align: center;
}

.benefits-list {
    display  :        grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
               gap: 2rem;
}

.benefit-item {
        background: white;
	padding: 2rem;
	border-radius: 8px;
	text-align    : center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon		{
  margin-bottom: 1rem;
}

.benefit-icon img {
	   width    :     48px;

	                    height: 48px;

	   margin: 0 auto;

	   stroke: #3b82f6;

	  fill: none;}

.benefit-item h4 
 {
     font-size: 1.1rem;
    margin-bottom: 0.5rem;
	color: #0f172a;
     }


.benefit-item p {
               font-size    :       0.9rem;
  color: #64748b;
    line-height: 1.5;
}  

.workshops-section {
   max-width: 1200px;
  margin: 3rem auto;
  padding    :  0 1.5rem;
}

.workshops-section h2 {


        font-size: 2rem; 
	    margin-bottom    :       0.5rem; 
	    color: #0f172a; 
	   text-align: center;}

.section-intro
	{
   text-align     :        center;
	color: #64748b;
  margin-bottom  :       2.5rem;
    font-size: 1rem;
}

.workshops-grid {
		 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2.5rem;
}

.workshop-item {
  background: white;
  border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
 transition     :     all 0.3s ease; 
	
}

.workshop-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.workshop-item img {
  width: 100%;
    height: 200px;
  object-fit: cover;
}

.workshop-item h3 {
   	font-size: 1.2rem;
	padding: 1.5rem 1.5rem 0.5rem;
					color:      #0f172a;
}



.workshop-item p {

	padding: 0 1.5rem 1.5rem;
  font-size :  0.9rem;
    color: #64748b;
     line-height  : 1.6;
     }

.cta-section {
  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  color: white;
	padding: 3.5rem 1.5rem;
                    margin: 3rem 0;
  border-radius: 12px;
}

.cta-container {
   max-width: 800px;
  text-align    :      center;
   margin: 0 auto;
}

.cta-container h2 {
  margin-bottom: 1rem;
	font-size: 2.2rem;
}

.cta-container p {
       font-size: 1.05rem;

    margin-bottom: 2rem;

   opacity    :     0.95;
}

.cta-button-large
{
  display: inline-block;
  padding: 0.85rem 2.5rem;
   background: white;
    color: #3b82f6;
    border-radius: 6px;
   font-weight    : 700;
  font-size: 1rem;
  transition     :   all 0.3s ease;
   border: 2px solid white;
}

.cta-button-large:hover   {
  background: #f0f9ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.contact-section {
   max-width: 700px;
        margin: 3rem auto;
    padding: 0 1.5rem;
}

.contact-wrapper h2 {
    font-size : 2rem;
   margin-bottom: 1rem;
   text-align: center;
   color  :     #0f172a;
}

.contact-wrapper > p {
  text-align: center;
   color: #64748b;
    margin-bottom: 2rem;
}

.contact-form {
  background: white;
   padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {

    margin-bottom:       1.5rem;
     }

.form-group label {
      display: block;
       margin-bottom: 0.5rem;
   font-weight: 600;
    color: #0f172a;
 font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea
	{
  width: 100%;
	padding: 0.75rem;
  border  :     1.5px solid #e2e8f0;
	border-radius: 6px;
   font-size  :     0.95rem;
   font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline :        none;
    border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}


.form-group textarea {
     resize: vertical;
   min-height: 120px;
}

.submit-button {
   width: 100%;
    padding: 0.85rem;
   background: #3b82f6;
	 color: white;
    border: none;
  border-radius: 6px;
   font-size: 1rem;
       font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
	               background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);}

.submit-button:active {

  transform: translateY(0);
}  

.cookies-notice {
    background: #0f172a;
    color: #cbd5e1;
  padding  :  1.5rem;
   text-align: center;
   font-size: 0.85rem;
      margin-top: 3rem;
}

.cookies-notice a {
   color: #3b82f6;
	text-decoration: underline;


}

.cookies-notice a:hover {
    color: #60a5fa;
}

.site-footer {
   background: #0f172a;
  color: #cbd5e1;
   margin-top    : 3rem;
   padding: 3rem 1.5rem 1rem; 

}

.footer-wrapper {
	max-width: 1200px;
    margin :        0 auto;
}

.footer-brand {
    text-align: center;
   margin-bottom     :    2rem;
}

.footer-logo {
  height: 50px;
      width: auto;
  object-fit     :  contain;
  filter: brightness(0) invert(1);
    margin: 0 auto;
}

.footer-content {
   display  :  grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
  margin-bottom: 2rem;
     }

.footer-section h4 {
  margin-bottom: 1rem;
	color: #f1f5f9;
   text-transform   :   uppercase;
  font-size: 0.95rem;
               letter-spacing: 0.5px;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li
	{
  margin-bottom     :0.7rem;
}

.footer-section a {
   color: #cbd5e1;
    transition: color 0.3s ease;
}

.footer-section a:hover {
   color: #3b82f6;
}

.footer-section p {
	 font-size     :        0.9rem;
   line-height: 1.6;
  margin-bottom:  0.5rem;}

.footer-bottom {

	    border-top    : 1px solid #334155;
  padding-top: 1.5rem;
   text-align: center;
    font-size: 0.85rem;
      color: #94a3b8;


}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: white;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 400px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-menu li {
        border-bottom: 1px solid #e5e7eb;
    }

    .nav-link {
        display: block;
        padding: 1rem 1.5rem;
    }

    .nav-link::after {
        display: none;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .introduction-section {
        padding: 2rem 1.5rem;
        margin: 1.5rem auto;
    }

    .intro-wrapper h2 {
        font-size: 1.5rem;
    }

    .services-preview h2,
    .benefits-container h2,
    .workshops-section h2 {
        font-size: 1.5rem;
    }

    .benefits-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-section {
        padding: 2.5rem 1.5rem;
    }

    .cta-container h2 {
        font-size: 1.6rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .footer-content {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .workshops-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1rem;
    }

    .footer-logo {
        height: 40px;
    }
}.policySection {
      padding: 80px 2rem;
    background: #f8f9fa;}

.policyContainer {
   max-width: 800px;
    margin:      0 auto;
    text-align: left;
}

.policyContainer h2 {
    font-size: 2.5rem;
  color: #2c3e50;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.policyContainer h3   {
	    font-size: 1.5rem;
  color: #0f172a;
   margin: 2rem 0 1rem 0;
  font-weight: 600;
	}

.policyContainer p {
   color: #7f8c8d;
  margin-bottom: 1.5rem;
  line-height: 1.7;
    font-size: 1.1rem;
}

.policyContainer ul {
  margin: 1rem 0 1.5rem 1.5rem;
       color: #7f8c8d;
}

.policyContainer ul li {
   margin-bottom: 0.5rem;
  font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.3rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policyContainer ul li {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h2 {
        font-size: 1.8rem;
    }
}.services-header {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%); 
    color: white; 
   padding    :     4rem 1.5rem; 
  text-align :     center;
}

.header-content h1

{
   font-size: 2.8rem;
  margin-bottom: 0.75rem;
    font-weight: 800;
}

.header-subtitle {
   font-size: 1.2rem;
                    opacity : 0.9;
		 max-width: 600px;
  margin: 0 auto;
}

.services-container {


    max-width: 1200px;
	 margin   :0 auto;
   padding:     0 1.5rem;}

.detailed-service {
  display: grid;
    grid-template-columns     :    1fr 1fr;
  gap: 3rem;
	 align-items: center;
   margin: 4rem 0;
   background: white;
    padding: 2.5rem;
   border-radius   :      12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.detailed-service.alternate {
        grid-template-columns:     1fr 1fr;
}

.detailed-service.alternate .service-visual {
	order: 2;
}

.detailed-service.alternate .service-info {
   order     :      1;
}

.service-visual
{
  overflow: hidden;
   border-radius: 10px;
}

.service-visual img {
    width: 100%;
   height: auto;
  display: block;
  object-fit     :      cover;
  transition:   transform 0.4s ease;
}

.detailed-service:hover .service-visual img

{
  transform: scale(1.08);
}

.service-info h2


{

   font-size: 2rem;
     margin-bottom: 1rem;
  color: #0f172a;

}

.service-intro {

	    font-size: 1.05rem;
		color: #475569;
  margin-bottom: 2rem;
    line-height: 1.7;

}

.service-info h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom :       1rem;
   color: #1e293b;
}



.service-points {
	list-style: none;
   margin-bottom: 2rem;
}

.service-points li {
	padding: 0.5rem 0 0.5rem 1.5rem;
    color: #475569;
    position    :      relative;
	 line-height: 1.6;
}



.service-points li:before {
  content: '✓';
     position   :        absolute;
     left: 0;
      color: #3b82f6;
      font-weight: bold;
       font-size: 1.1rem;
}

.benefits-grid {
   display   :  grid;
  grid-template-columns: repeat(3, 1fr);
    gap     :      1.5rem;
         margin: 1.5rem 0 2rem;}

.benefit-box   {
     background     :  #f8fafc;
   padding: 1.5rem;
   border-radius: 8px;
	border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;}

.benefit-box:hover {

	    background: #f1f5f9;
  transform: translateY(-3px);
}

.benefit-title {
   display: block;
    font-weight: 700;
   color: #0f172a;
  margin-bottom    :       0.5rem;
  font-size: 0.95rem;
}

.benefit-box p {
    font-size: 0.85rem;
    color: #64748b;
  line-height: 1.5;
}

.service-cta


{
       margin-top: 2rem; 
	
}

.service-button {
  display: inline-block;
   padding: 0.8rem 2rem;
    background: #3b82f6;
     color: white;
   border-radius:       6px;
   font-weight: 600;
   transition    :  all 0.3s ease;
  border: 2px solid #3b82f6;
}

.service-button:hover {
	background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.pricing-overview	{
  background: linear-gradient(135deg, #f0f4ff 0%, #fafbfc 100%);
    padding: 4rem 1.5rem;
   margin: 2rem 0;
}

.pricing-container {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-container h2 {
  font-size    :        2.2rem;
  text-align   : center;
   margin-bottom: 0.5rem;
  color: #0f172a;
}

.pricing-intro {
	text-align     :    center;
      color   : #64748b;
	margin-bottom: 3rem;
    font-size: 1.05rem;
}

.pricing-grid {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap   :        2rem;
}

.pricing-card
{
   background: white;
     border-radius: 10px;
     padding: 2rem;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
      position: relative;
      border  :      2px solid transparent;
}

.pricing-card:hover {
     transform: translateY(-8px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12); 
	
	}

.pricing-card.featured {
   border-color: #3b82f6;
  transform: scale(1.02);
}

.featured-badge {
    position: absolute; 
	    top: -12px; 
	   left: 20px; 
	   background: #3b82f6; 
	  color: white; 
	   padding: 0.4rem 1.2rem; 
	   border-radius: 20px; 
	  font-size :      0.75rem; 
	   font-weight: 700; 
	    text-transform   :  uppercase;
}

.pricing-card h3 {
  font-size: 1.5rem;
         margin: 1rem 0 0.5rem;
	 color: #0f172a;
}

.price-value {
	font-size: 2.5rem;
  font-weight: 800;
  color: #3b82f6;
	 margin: 0.5rem 0 0;
}

.price-period {


  color: #64748b;
   font-size: 0.9rem;
	margin-bottom: 1.5rem;
}

.price-features {
   list-style: none;
   margin-bottom: 2rem;
}

.price-features li {
  padding     :   0.6rem 0;
    color: #475569;
   font-size: 0.95rem;
   border-bottom: 1px solid #e2e8f0;
   position: relative;
	padding-left: 1.5rem;
}

.price-features li:before     {
  content: '✓';
    position  :       absolute;
  left: 0;
	 color: #10b981;
  font-weight: bold;
}

.price-features li:last-child {
  border-bottom  :    none;
}

.price-button,
.price-button-featured {
    display: block;
  -webkit-border-radius: 6px;
   width: 100%;
    -moz-border-radius: 6px;
	 padding: 0.85rem;
	border-radius: 6px;
  font-weight: 600;
   -moz-transition: all 0.3s ease;
    font-size: 0.95rem;
   -webkit-transition:     all 0.3s ease;
  text-align:       center;
    transition: all 0.3s ease;
    border: 2px solid #3b82f6;
}

.price-button {
    background:   white;
   color    :#3b82f6;
}

.price-button:hover {
	background: #f0f9ff;
  transform: translateY(-2px);
}

.price-button-featured {
    background  : #3b82f6;
  color  :   white;
    border-color: #3b82f6;
}

.price-button-featured:hover {
    background: #2563eb;
  border-color: #2563eb;
  box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

.faq-section {
  padding: 4rem 1.5rem;
   background: white;
}

.faq-container		{
    margin: 0 auto;
   max-width: 900px;
}  

.faq-container h2 {
    font-size: 2.2rem;
   text-align: center;
    margin-bottom  :       3rem;
   color: #0f172a;
}

.faq-grid {
          display: grid;

   gap: 1rem;
}

.faq-item {
    overflow: hidden;
    border-left: 4px solid #3b82f6;
  transition: all 0.3s ease;
     border-radius   : 8px;
   background: #f8fafc;
}

.faq-item:hover

{
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); 
	
}

.faq-item summary {
    padding: 1.5rem;
  cursor: pointer;
    font-weight: 600;
    color: #0f172a;
   display: flex;
	 justify-content :       space-between;
  align-items: center;
   user-select :     none;
    transition: background 0.3s ease;
}

.faq-item summary:hover {
  background: #f1f5f9; 
	
}

.faq-item summary::-webkit-details-marker {
    display  :   none;
}

.faq-item summary::after		{

  content: '+';
    font-size: 1.5rem;
         font-weight: bold;
  color: #3b82f6;
  transition: transform 0.3s ease;
    -moz-transition: transform 0.3s ease;
     }

.faq-item[open] summary::after {


  transform: rotate(45deg);

}

.faq-item p {
   color: #475569;

       line-height: 1.7;

  padding: 0 1.5rem 1.5rem;
}

.testimonials-section {
  background: linear-gradient(135deg, #fafbfc 0%, #f0f4ff 100%);
	    padding: 4rem 1.5rem;

}

.testimonials-container {
    max-width: 1200px;
  margin: 0 auto;

}

.testimonials-container h2 {

       font-size: 2.2rem;
	text-align: center;
       margin-bottom: 3rem;
   color: #0f172a;


     }

.testimonials-grid {
  display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.testimonial-card {
   	 background: white;
 padding: 2rem;
 border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
		 transition: all 0.3s ease;
    border-top :   4px solid #3b82f6;

}

.testimonial-card:hover
{
  transform: translateY(-5px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-text {
    font-size: 0.95rem;
   color: #475569;
   line-height    : 1.8;
  margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author  {
   font-weight: 700;
    color: #0f172a;
    font-size    :    0.9rem;
}

.cta-final {

	  background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
  padding: 4rem 1.5rem;
	 color   :    white;
    text-align: center;


}

.cta-final-content {
   max-width: 700px;
    margin    :        0 auto;
}

.cta-final-content h2 {
  font-size   :   2.5rem;
   margin-bottom: 1rem;
}

.cta-final-content p  
  {
     font-size: 1.05rem;
	 margin-bottom: 2rem;
         opacity: 0.95;


}

.cta-final-button     {
  display: inline-block;
    padding: 0.9rem 2.5rem;
    -webkit-border-radius: 6px;
    background: white;
    color: #3b82f6;
  border-radius: 6px;
  font-weight: 700;
    transition: all 0.3s ease;
     border  :  2px solid white;
}

.cta-final-button:hover {
       background: #f0f9ff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
     }

.thankyou-section {
  min-height: calc(100vh - 400px);

  display: flex;

   align-items: center;

    justify-content: center;

  padding:  4rem 1.5rem;

  background: linear-gradient(135deg, #f8fafc 0%, #f0f4ff 100%);
}

.thankyou-container {
     max-width  : 700px;
   width: 100%;
   background: white;
	padding: 3rem;
    border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
   text-align: center; 

}

.success-icon-wrapper {
   margin-bottom: 2rem;


}

.success-checkmark {
    width: 80px;
	 height: 80px;
   color: #10b981;
	margin: 0 auto;
   animation: scaleIn 0.5s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-title {
  font-size    :       2.5rem;
  color: #0f172a;
  margin-bottom: 1rem;
         font-weight: 800; 
	
	}  

.thankyou-message {
   font-size: 1.05rem;
    color: #475569;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.confirmation-box {
  background: #f8fafc;
    border-left  :    4px solid #3b82f6;
   padding   :2rem;
   border-radius: 8px;
   margin-bottom: 2.5rem;
    text-align: left;
}

.confirmation-box h2 {


   font-size   :   1.3rem;
   	 margin-bottom: 1.5rem;
      color  :      #0f172a;
}

.confirmation-details	{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}  

.detail-row {
  display: flex;
       justify-content     :     space-between;
    align-items :  center;
    padding-bottom: 1rem;
    border-bottom: 1px solid #e2e8f0;
}

.detail-row:last-child {
    border-bottom: none;
  padding-bottom: 0;
}

.detail-label {

   font-weight   :    600;
    color: #0f172a;
    min-width:  120px;
     }

.detail-value {
    color: #475569;
     }

.next-steps {
	   text-align: center;
   margin-bottom: 2.5rem;

}

.next-steps h2 {
    font-size: 1.5rem;
  margin-bottom: 2rem;
	color: #0f172a;
} 

.steps-list {
  display: flex;
   flex-direction: column;
    gap: 1.5rem;
}

.step-item {
   display: flex;
 align-items: flex-start;
   gap: 1.5rem;
}

.step-number {
       display: flex;
      align-items: center;
       justify-content :      center;
      width: 50px;
    height: 50px;
      background: #3b82f6;
     color: white;
   	border-radius: 50%;
       font-weight: 800;
      font-size: 1.5rem;
         flex-shrink: 0;
     }

.step-text {
	text-align: left;
}

.step-text h3 {
   font-size :      1.1rem;
  margin-bottom :  0.5rem;
	 color: #0f172a;
}

.step-text p {
   color: #475569;
    font-size: 0.95rem;
  line-height: 1.6;
}

.resources-section {
      background    :     #f0f4ff;
      padding:     2rem;
   border-radius     :  8px;
    margin-bottom: 2rem;
  text-align: center;
}

.resources-section h2 {
  font-size: 1.3rem;
	margin-bottom: 0.75rem;
  color: #0f172a;
}

.resources-section p {
   color: #475569;
  margin-bottom: 1.5rem;
}

.resources-list {
   display: flex;
     flex-direction :       column;
     gap: 0.75rem;
}

.resource-link {
    display: inline-block;
  padding    :     0.7rem 1.5rem;
  background: #3b82f6;
  color: white;
	 border-radius: 6px;
    font-weight: 600;
  transition: all 0.3s ease;
}

.resource-link:hover {


         background: #2563eb;
  transform: translateY(-2px);

}

.info-box {
    background: #fef3c7;
      border-left: 4px solid #f59e0b;
  padding: 1.5rem;
   border-radius: 6px;
    color: #78350f;
    font-size     :  0.95rem;
   line-height: 1.6;
}@media (max-width: 768px) {
    .services-header {
        padding: 2.5rem 1.5rem;
    }

    .header-content h1 {
        font-size: 1.8rem;
    }

    .header-subtitle {
        font-size: 1rem;
    }

    .detailed-service {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .detailed-service.alternate .service-visual,
    .detailed-service.alternate .service-info {
        order: unset;
    }

    .service-info h2 {
        font-size: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .pricing-overview {
        padding: 2.5rem 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-container h2 {
        font-size: 1.8rem;
    }

    .faq-container h2 {
        font-size: 1.8rem;
    }

    .testimonials-container h2 {
        font-size: 1.8rem;
    }

    .cta-final-content h2 {
        font-size: 1.8rem;
    }

    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .thankyou-title {
        font-size: 1.8rem;
    }

    .confirmation-box {
        padding: 1.5rem;
    }

    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .steps-list {
        gap: 1rem;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .services-header {
        padding: 1.5rem 1.5rem;
    }

    .header-content h1 {
        font-size: 1.4rem;
    }

    .detailed-service {
        padding: 1rem;
        margin: 1rem 0;
    }

    .service-info h2 {
        font-size: 1.2rem;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .success-checkmark {
        width: 60px;
        height: 60px;
    }

    .thankyou-title {
        font-size: 1.4rem;
    }
}