* {
    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   :       #ffffff;
}

.main-navigation
	{
   background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
   position: sticky;
    top     : 0;
      z-index: 1000;
    padding: 1rem 0;

}

.nav-wrapper {
  max-width     : 1400px;
  margin: 0 auto;
  padding: 0 2rem;
    display: flex;
        justify-content: space-between;
  align-items: center;
}

.brand-logo img {
   height: 45px;
    width:      auto;
}

.nav-links {


                    display: flex;
     list-style: none;
      gap: 2.5rem;


}

.nav-links a {
      text-decoration: none;
               color: #2c3e50;
  font-weight: 500;
   font-size: 1.05rem;
   transition: color 0.3s;
	}

.nav-links a:hover {
   color: #667eea;
}

.menu-toggle	{
    display: none;

	    flex-direction    :       column;

	  cursor :      pointer;

	  gap: 5px;
}  

.menu-toggle span {
  width: 28px;
        height: 3px;
    background  :      #2c3e50;
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
  opacity   : 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
  display     :   grid;
   grid-template-columns     : 1fr 1fr;
                    gap: 4rem;
         max-width: 1400px;
               margin: 0 auto;
	padding: 5rem 2rem;
   align-items: center;
}

.hero-content h1 {
    font-size: 3.2rem;
   line-height: 1.2;
 color :       #1a202c;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
       font-size: 1.25rem;
   color: #4a5568;
 margin-bottom: 2.5rem;
   line-height: 1.7;
}

.hero-actions   {
  display: flex;
    gap: 1.5rem;
}

.btn-primary, .btn-secondary {
  padding: 1rem 2rem;
   text-decoration: none;
  border-radius: 8px;
    font-weight: 600;
  font-size: 1.05rem;
    transition: all 0.3s;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
   color: white;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
   background: white;
  color: #667eea;
    border: 2px solid #667eea;


}

.btn-secondary:hover {
  background: #667eea;
    color: white;
}


.hero-image img {
  width   :100%;
  height: auto;
	 border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.intro-section {
    background: #f7fafc;
    padding: 5rem 0;
}

.container-wide {
    max-width: 1400px;
    margin :0 auto;
  padding :      0 2rem;
}

.intro-grid {

    gap: 4rem;
 display: grid;
    align-items: center;
   grid-template-columns  :     1fr 1fr;}

.intro-text h2


{
  font-size: 2.5rem;
   margin-bottom :   1.5rem;
   color: #1a202c;
}

.intro-text p  
  {
  font-size: 1.15rem;
	   margin-bottom: 1.25rem;
	   color: #4a5568;
}

.intro-visual img
	{


	width: 100%;
          border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);

}

.services-preview {
  padding: 5rem 0;
}

.container-standard {
    max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
}

.section-heading {
         text-align:  center;
   font-size: 2.75rem;
	margin-bottom: 3rem;
    color: #1a202c; 

}

.services-grid 
 {
       display: grid;
  grid-template-columns: repeat(3, 1fr);
	gap: 2.5rem;
}

.service-card {
    background     :   white;
  padding: 2.5rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
   transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);


}

.service-icon {
  margin-bottom: 1.5rem;
}  

.service-icon svg {
   stroke: #667eea;
    fill: none;
       stroke-width: 2;
   stroke-linecap: round;
   stroke-linejoin: round;
	
}

.service-card h3 {
    font-size: 1.5rem;
  margin-bottom: 1rem;
   color:     #2c3e50;
}

.service-card p {
  color: #4a5568;
    line-height: 1.7;
}

.approach-section {
   background  :      #f7fafc; 
		padding: 5rem 0;
}

.approach-content {
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
  display: grid;
   align-items: center;
}

.approach-image img {
	 width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);}

.approach-text h2 {
    font-size: 2.5rem;
               margin-bottom: 2rem;
    color   :#1a202c;
}  

.approach-steps {
					display: flex;
    flex-direction: column;
	 gap: 2rem;
}

.step-item {
	 display: flex;
               gap: 1.5rem;


}

.step-number {
    font-size: 2rem;

   font-weight: 700;

	 color: #667eea;

   min-width: 60px;
}

.step-content h4 {
	 font-size: 1.35rem;
	  margin-bottom: 0.5rem;
	      color: #2c3e50;
}

.step-content p  {

    color: #4a5568;
  line-height: 1.7;


}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding     :   5rem 2rem;
}

.cta-container


{
    max-width: 900px;
    margin :0 auto;
   text-align: center;
}

.cta-content h2 {


   color: white;
  font-size: 2.75rem;
    margin-bottom: 1.5rem;
	}

.cta-content p {
  color: rgba(255,255,255,0.95);
    font-size: 1.25rem;
      margin-bottom: 2.5rem;
       line-height: 1.7;
}

.btn-cta {


      display: inline-block;
    padding: 1.25rem 2.5rem;
    background: white;
    color: #667eea;
  text-decoration    :       none;
  border-radius: 8px;
	font-weight: 600;
   font-size: 1.15rem;
                    transition: all 0.3s;
}

.btn-cta:hover {
	  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);

}

.workshop-section {
	    padding: 5rem 0;
}

.workshop-grid {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 3rem;
}  

.workshop-card		{

  background: white;
    border-radius: 12px;
   overflow    : hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s;

}

.workshop-card:hover {
  transform: translateY(-5px);
}

.workshop-card img {
	height: 280px;
   object-fit: cover;
  width: 100%;
}

.workshop-info {
  padding: 2rem;
}

.workshop-info h3 {
   font-size :    1.5rem;
	 margin-bottom :  1rem;
   color: #2c3e50;
}

.workshop-info p {
   color: #4a5568;
    margin-bottom :  1.5rem;
   line-height: 1.7;
}

.workshop-link {
   color: #667eea;
         text-decoration: none;
  font-weight: 600;
    transition: color 0.3s; 

}


.workshop-link:hover {
  color: #764ba2;
}

.contact-section{
  background: #f7fafc;
       padding: 5rem 0;
}

.contact-container {
    max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem;
      display: grid;
    grid-template-columns :1fr 1fr;
  gap: 4rem;
}

.contact-info h2 {


                    font-size: 2.5rem;
    margin-bottom    : 1.5rem;
   color: #1a202c; 
}

.contact-info p {
   font-size: 1.15rem;
  color: #4a5568;
  margin-bottom: 2rem;
	line-height: 1.7;
}

.contact-details  {
         display     :      flex;
  flex-direction: column;
   gap: 2rem;
}

.detail-item {

   display: flex;
    gap: 1.5rem; 
	
} 

.detail-item svg {
    stroke-linejoin: round;
   stroke-width: 2;
  stroke-linecap: round;
  fill: none;
  stroke: #667eea;
    min-width: 24px;
}

.detail-item strong {
    display: block;
  margin-bottom: 0.5rem;
	color: #2c3e50;
}

.detail-item p {

	       margin: 0;
  color: #4a5568;


}

.contact-form  {
   background: white;
   padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.form-group {
   margin-bottom  :        1.5rem;
}

.form-group label{

	    display: block;
          margin-bottom: 0.5rem;
               color: #2c3e50;
  font-weight: 500;
     }

.form-group input,
.form-group select,
.form-group textarea
{

  width: 100%;
    padding     :        0.875rem;
   border: 2px solid #e2e8f0;
         border-radius: 8px;
   font-size: 1rem;
    transition  : border-color 0.3s;
	}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: #667eea;
}

.btn-submit


{

	   width: 100%;
  padding     :   1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
   border: none;
         border-radius: 8px;
  font-size: 1.1rem;
               font-weight: 600;
                    cursor    :    pointer;
   transition :        all 0.3s;}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.site-footer {
    background: #1a202c;
  color   :        white;
    padding: 4rem 0 2rem;
}

.footer-content {
   max-width: 1400px;
         margin: 0 auto;
    padding: 0 2rem;
       display: grid;
   grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap     :   3rem;
   margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
     margin-bottom: 1rem;
}

.footer-desc {

	  color: rgba(255,255,255,0.8);
   line-height :    1.7;

}

.footer-column h4 {
   font-size  :   1.15rem;
   margin-bottom: 1.25rem;
}

.footer-links 
 {
    list-style :    none;
}

.footer-links li {
   margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
  color: #667eea;
}

.footer-column p {
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}  

.footer-bottom {
  max-width   :    1400px;
	margin :       0 auto;
    padding: 2rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
    text-align   : center;
}

.footer-bottom p {
  color: rgba(255,255,255,0.7);
}@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 3rem 2rem;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .intro-grid,
    .approach-content,
    .contact-container {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .workshop-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .approach-image {
        order: -1;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.85rem;
    }

    .section-heading {
        font-size: 2rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}.page-header {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      padding:  5rem 2rem;
		text-align: center;
        color: white; 
	}

.header-content h1 {
    font-size     :3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.header-content p {
   font-size: 1.3rem;
	 opacity: 0.95;
   max-width: 800px;
   margin: 0 auto;
}

.services-detailed {
  padding: 5rem 0;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
   gap: 3rem;
	margin-bottom  :     5rem;
  align-items: start;
}



.service-detail-card.reverse {
    grid-template-columns  :     1.2fr 1fr;


}

.service-detail-card.reverse .service-detail-image {
    order: 2;

}

.service-detail-card.reverse .service-detail-content {
    order: 1;
}

.service-detail-image img {
    width    :100%;
    border-radius: 12px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.12);
}

.service-detail-content h2 {
               font-size: 2.25rem;
 color: #1a202c;
                    margin-bottom: 1.25rem;
}

.service-intro
	{
   font-size: 1.15rem;
   color   :        #4a5568;
    margin-bottom: 2rem;
    line-height: 1.7;
	
}

.service-detail-content h3 {
	    font-size: 1.4rem;
   color: #2c3e50;
  margin-bottom: 1rem;
   margin-top    : 2rem;
	}

.service-benefits {
    list-style: none;
   margin-bottom   :2rem;
}

.service-benefits li {
	padding: 0.75rem 0;
   padding-left: 2rem;
  position: relative;
   color: #4a5568;
    line-height: 1.6;
}

.service-benefits li:before {
  content: "→";
    position: absolute;
   left: 0;
  color: #667eea;
   font-weight: bold;
}

.service-format,
.service-duration {
          margin-bottom: 1rem;
   color: #4a5568;
}

.service-format strong,
.service-duration strong {
   color: #2c3e50;
}

.btn-service {
   display: inline-block;
	    margin-top: 1.5rem;
	   padding   :        1rem 2rem;
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	   color: white;
	    text-decoration: none;
	   border-radius: 8px;
	    font-weight: 600;
	   transition     :      all 0.3s;
}

.btn-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.why-choose-us {
   background: #f7fafc;
    padding: 5rem 0;
}

.why-choose-us h2 {
   text-align: center;
    font-size: 2.75rem;
   margin-bottom    : 3rem;
   color: #1a202c;
}

.reasons-grid     {
    display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap: 2.5rem;
}

.reason-item {
   text-align: center;
}

.reason-number {
  font-size: 3rem;
    font-weight: 700;
   color: #667eea;
	margin-bottom: 1rem;
}

.reason-item h3 {

	   margin-bottom :        0.75rem; 
  color: #2c3e50; 
    font-size: 1.4rem;


}

.reason-item p {
  color: #4a5568;
    line-height  :   1.7;
}

.cta-services {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
       padding: 5rem 2rem;
         text-align: center;
}

.cta-services h2 {
	color: white;
  font-size   :    2.75rem;
   margin-bottom: 1.25rem;
}

.cta-services p {
  color: rgba(255,255,255,0.9);
   font-size: 1.25rem;
  margin-bottom: 2.5rem;}

.btn-cta-white {
        -webkit-border-radius: 8px;
    display: inline-block;
   padding: 1.25rem 2.5rem;
	background: white;
    color: #2c3e50;
   text-decoration: none;
   -o-transition: all 0.3s;
    border-radius: 8px;
    -moz-border-radius: 8px;
  font-weight: 600;
  font-size: 1.15rem;
    transition: all 0.3s;
}

.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.thankyou-section {
   min-height: 80vh;
  display: flex;
  align-items: center;
   justify-content     :    center;
    padding: 5rem 2rem;
  background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
}


.thankyou-container {
   max-width: 900px;
   background: white;
    padding    :  4rem;
    border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
	text-align: center;
}

.thankyou-icon {
    margin-bottom :        2rem;
     }

.thankyou-icon svg {
    stroke: #10b981;
   fill: none;
   stroke-width: 2;
    stroke-linecap  : round;
   stroke-linejoin : round;
}

.thankyou-container h1 {
   color: #1a202c;
   font-size  :     2.75rem;
       margin-bottom: 1.25rem;
}

.thankyou-message
	{

  font-size: 1.25rem;
   color: #4a5568;
   margin-bottom: 3rem;
   line-height: 1.7;
	}

.thankyou-info {
	margin-bottom   :3rem;
}

.thankyou-info h2 {
	 font-size: 2rem;
   color: #2c3e50;
  margin-bottom: 2.5rem;
}

.next-steps {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap   :       2rem;
   margin-bottom: 2rem;
     }

.step-box  {

  padding: 2rem 1.5rem;

	   background: #f7fafc;

	   border-radius  :       12px;
}

.step-icon     {
       margin-bottom: 1rem;
}

.step-icon svg {
	stroke: #667eea;
      fill: none;
      stroke-width: 2;
     stroke-linecap: round;
      stroke-linejoin: round;
     }

.step-box h3 {
    color: #2c3e50;
   font-size: 1.3rem;
    margin-bottom: 0.75rem;

}

.step-box p {
  color: #4a5568;
   line-height: 1.6;
   font-size: 0.95rem;

}  

.thankyou-actions {
  display :      flex;
         gap: 1.5rem;
  justify-content: center;
    margin-bottom: 3rem;
}

.thankyou-contact {
  padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
}

.thankyou-contact p {

       color: #4a5568;
  margin-bottom    :    0.5rem;
     }

.phone-number {
  font-size: 1.5rem;
	color: #667eea;
    font-weight: 600;
}@media (max-width: 968px) {
    .service-detail-card,
    .service-detail-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .service-detail-card.reverse .service-detail-image {
        order: 1;
    }
    
    .service-detail-card.reverse .service-detail-content {
        order: 2;
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .next-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 3rem 2rem;
    }
    
    .header-content h1 {
        font-size: 2.25rem;
    }
    
    .header-content p {
        font-size: 1.1rem;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-container {
        padding: 2.5rem 1.5rem;
    }
    
    .thankyou-container h1 {
        font-size: 2rem;
    }
    
    .thankyou-actions {
        flex-direction: column;
    }
}.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 p {
    color: #7f8c8d;
  margin-bottom     :    1.5rem;
   line-height    :    1.7;
   font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}