* {
	margin: 0;
   padding: 0;
	box-sizing:  border-box;
}


html {
  scroll-behavior: smooth;
	
}

body  {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
   color: #2c3e50;
  background-color: #f8f9fa;
}

.navbar {

	  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   padding: 0.75rem 0;
  position  :sticky;
   top: 0;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
	}

.navbar-container {
    max-width: 1200px;
	margin: 0 auto;
    padding: 0 2rem;
  display: flex;
  justify-content: space-between;
	align-items: center;
}

.navbar-logo img {
    height: 64px; 
	   width: auto; 
	  filter: brightness(0) invert(1);
	
}

.nav-menu {
   display :       flex;
	list-style: none;
   gap: 2rem;
}

.nav-link {
   color: #ecf0f1;
  text-decoration: none;
     -moz-transition: all 0.3s ease;
	font-weight  :      500;
       font-size: 1rem;
   -webkit-border-radius: 4px;
   -moz-border-radius: 4px;
   transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 4px;
}

.nav-link:hover {
          color: #3498db;
  background-color: rgba(52, 152, 219, 0.1);
	
}

.hamburger {
    cursor: pointer;
    flex-direction     :    column;
  display: none;
}

.hamburger span    {

	  width: 25px;
                    -moz-border-radius :    2px;
    height: 3px;
   background-color: #ecf0f1;
    margin :5px 0;
  border-radius: 2px;
    -webkit-border-radius: 2px;
	 transition: all 0.3s ease;
     }

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
	}

.hamburger.active span:nth-child(2) {

	opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero

{
   display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 2rem; 
	align-items: center; 
	 max-width: 1200px; 
   margin: 0 auto; 
       padding: 4rem 2rem; 
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.hero-content h1 {
   font-size: 3rem;
  color: #1a1a2e;
    margin-bottom    :      1rem;
   line-height: 1.2;
}

.hero-content p  {
 font-size     :     1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-button		{
	display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	color   :       white;
         padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
     font-weight: 600;
   transition: all 0.3s ease;
  border: none;
   cursor   :       pointer;
}

.cta-button:hover {

	  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);

}

.hero-image {
   display: flex;
   justify-content: center;
    align-items: center;
}

.hero-image img {
 max-width: 100%;
	 height: auto;
	border-radius : 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-overview {
    background: white;
   padding :4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-content h2 {
  font-size:  2.5rem;
   color     : #1a1a2e;
        margin-bottom: 0.5rem;
   text-align: center;
}

.section-content > p {


   color: #666;
    font-size: 1.1rem;
   text-align: center;
	 margin-bottom   :2rem;
     }

/* Third-party styles */

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.service-card {
   background: #f8f9fa;
	    border-radius: 8px;
	    overflow: hidden;
	    transition: all 0.3s ease;
	    border: 1px solid #e0e0e0;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
  height: 250px;
    object-fit   : cover;
}

.service-card h3 {


    font-size:    1.5rem;
                    color: #1a1a2e;
	padding: 1.5rem 1.5rem 0.5rem;

}

.service-card p {
	padding: 0.5rem 1.5rem 1.5rem;
  color: #666; 
	
}

/* Development only */

.expertise
{
   background :   white;
   padding: 4rem 2rem;
}

.expertise-content {
        max-width: 1200px;
   margin:0 auto;
  display    :grid;
  grid-template-columns     :   1fr 1fr;
          gap: 2rem;
  align-items :      center;
}

.expertise-text h2 {
 font-size     :        2.5rem;
  color: #1a1a2e;
     margin-bottom: 1rem;
}  

.expertise-text p {
    color: #666;
  margin-bottom: 1rem;
   line-height: 1.8;
}

.expertise-content img {
   max-width: 100%; 
	    height: auto; 
	  border-radius     : 12px; 
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}  

.coaching-programs
	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 4rem 2rem;
  max-width: 1200px;
  margin :0 auto;
}

.coaching-programs h2 {
	font-size: 2.5rem;
    text-align :        center;
  margin-bottom: 2rem;
}

.programs-container {
	        display    :     grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 2rem;}

/* Framework override */

	/* Temporary fix */

.program-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
    padding: 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.program-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.program-item h3 {
  margin-bottom :      1rem;
  font-size: 1.5rem;
}

.program-item p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* Temporary fix */

.program-features
{
  display: flex;
    flex-wrap: wrap;
  gap: 0.5rem; 
	
}  

.feature {
  background: rgba(255, 255, 255, 0.2);
   padding: 0.5rem 1rem;
     border-radius: 20px;
   font-size: 0.9rem;
}
/* Temporary fix */


/* Component styles */
	/* TODO: optimize for mobile */


.approach {
    background: white;
   padding: 4rem 2rem;
    max-width: 1200px;
               margin: 0 auto;
}
/* Temporary fix */
.approach h2 {
      font-size: 2.5rem;
    color :   #1a1a2e;
   text-align: center;
  margin-bottom: 2rem;
}

.approach-grid {
    display  :   grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.approach-item  {
    border-radius  :   8px;
    background: #f8f9fa;
  text-align: center;
  padding: 2rem;
   transition: all 0.3s ease;
}  

.approach-item:hover {

	  transform: translateY(-5px);
    background: #ecf0f1;
	}

.approach-number


{
  display: inline-block;
    width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   border-radius :       50%;
  display: flex;
  align-items: center;
    justify-content: center;
  font-size: 2rem;
   font-weight: bold;
    margin-bottom :   1rem;
}

.approach-item h3 {
    font-size: 1.3rem;
  color    :#1a1a2e;
   margin-bottom    : 0.5rem;
}

.approach-item p {
   color: #666;
}

.testimonials		{
    background: white;
    padding: 4rem 2rem;
   max-width: 1200px;
               margin: 0 auto;
}

.testimonials h2 {
	  font-size: 2.5rem;
   color: #1a1a2e;
  text-align    :   center;
   margin-bottom: 2rem;
	}

/* State modifiers */

.testimonials-container {
   display   :        grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial {
   background: #f8f9fa;
  -o-transition: all 0.3s ease;
    padding     :    2rem;
        -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
    border-radius: 8px;
   border-left: 4px solid #667eea;
   transition: all 0.3s ease;
}

.testimonial:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* State modifiers */

.testimonial-text {
   color    :    #333;

	  margin-bottom: 1rem;

	    font-style: italic;
}

.testimonial-author {
  color: #667eea; 
  font-weight: 600; 
   font-size: 0.9rem;
}
/* Development only */

.cta-section {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
   color: white;
    padding  :       4rem 2rem;
  text-align: center;
}

.cta-container h2 {
       font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-container p {
   font-size: 1.2rem;
    margin-bottom: 2rem;
     opacity: 0.9;
}  

.cta-button-large {
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 1.2rem 2.5rem;
  border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-button-large:hover {

	  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
     }

.contact-section {
   background: white;
   padding: 4rem 2rem;
  max-width: 1200px;
    margin: 0 auto;

}

.contact-container {
   max-width: 600px;
  margin :    0 auto;
}

.contact-container h2 {
  font-size: 2.5rem;
      color: #1a1a2e;
       text-align: center;
     margin-bottom: 0.5rem;
}

.contact-intro {
   text-align: center;
  color: #666;
	margin-bottom: 2rem;
}

.contact-form {
    display: flex;
	flex-direction: column;
    gap: 1.5rem;
}

.form-group  {

	   flex-direction: column;
   display: flex;
     }

.form-group input,
.form-group select,
.form-group textarea 
 {
    padding: 1rem;
    border    :    2px solid #e0e0e0;
   border-radius: 8px;
    font-family: inherit;
     font-size  :        1rem;
   transition:     all 0.3s ease;
}

/* Layout styles */

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;

    border-color: #667eea;

  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);

}

.form-group textarea {
   resize: vertical;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 1rem 2rem;
   border: none;
	border-radius: 8px;
    font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
      transition: all 0.3s ease;
}

.submit-btn:hover   {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.footer {

  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
   padding: 3rem 2rem 1rem;

}

.footer-content {
     max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
  margin-bottom: 2rem;
     }

.footer-logo-section {
	 display:     flex;
  align-items: center;
}

.footer-logo {
    height: 86px;
  width: auto;
  filter: brightness(0) invert(1); 
	
}

.footer-section h3 {
  font-size    :   1.3rem;

   margin-bottom :  1rem;

   color: #ecf0f1;
}
	/* Build system output */
.footer-info p {
   margin  :     0.5rem 0;
    opacity: 0.8;


}

.footer-address {
    line-height    : 1.8;
}

.footer-navigation ul,
.footer-legal ul {
  list-style: none;
}

.footer-navigation li,
.footer-legal li {
    margin: 0.5rem 0;
}

.footer-navigation a,
.footer-legal a {

	      color:  #ecf0f1;

	text-decoration: none;

  transition: all 0.3s ease;


}



.footer-navigation a:hover,
.footer-legal a:hover {
	color: #667eea;
}


.footer-bottom {
         max-width: 1200px;
          margin: 0 auto;
    padding-top    :   2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align    :   center;
     opacity    :    0.7;
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a2e;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 1rem;
        display: block;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .section-content h2,
    .coaching-programs h2,
    .approach h2,
    .testimonials h2,
    .cta-container h2,
    .contact-container h2 {
        font-size: 1.8rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .approach-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .programs-container {
        grid-template-columns: 1fr;
    }

    .testimonials-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .navbar-container {
        padding: 0 1rem;
    }

    .navbar-logo img {
        height: 50px;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .section-content h2,
    .coaching-programs h2,
    .approach h2,
    .testimonials h2,
    .cta-container h2,
    .contact-container h2 {
        font-size: 1.5rem;
    }

    .cta-button,
    .cta-button-large {
        width: 100%;
        padding: 0.8rem 1rem;
        text-align: center;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .approach-item {
        padding: 1.5rem;
    }
}.services-hero
	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               color: white;
  padding: 3rem 2rem;
	 text-align   :      center;
  max-width:      1200px;
   margin: 0 auto;
}

.services-hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
	 font-weight:700;
}

.services-hero-content p {
    font-size: 1.2rem;
  opacity: 0.9;
    max-width: 700px;
    margin :0 auto;
}

.services-detailed {
   background  :     white;
  padding     :      4rem 2rem;
}

.services-container {
	 margin: 0 auto;
    max-width: 1200px;
  gap: 4rem;
	flex-direction: column;
   display: flex;
}

.service-detail-card {
	   display: grid;

		grid-template-columns     :1fr 1fr;

	    gap: 3rem;

	       align-items: center;

	   padding: 2rem;

	  background: #f8f9fa;

	   border-radius   :       12px;

	 transition: all 0.3s ease;

}

.service-detail-card:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-detail-card.alternate {
    grid-template-columns: 1fr 1fr;
   direction     : rtl;
}



.service-detail-card.alternate > * {
  direction: ltr;
}

.service-detail-image img {
   width: 100%;
  height: auto;
   border-radius: 8px;
  object-fit: cover;
}

.service-detail-content h2 {


    font-size     :2rem;
   color: #1a1a2e;
                    margin-bottom: 1rem;

	}

.service-description {

	  color: #666;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;}

.service-details h3 {
  font-size: 1.2rem;
    color:  #1a1a2e;
  margin-bottom: 1rem;
   margin-top: 1.5rem;
}

.service-list {

	   list-style: none;
   padding-left: 0;
     }

.service-list li {


    padding: 0.5rem 0 0.5rem 1.5rem;
  color: #555;
    position: relative; 
	
}

.service-list li:before {
  content: "✓";
	position: absolute;
      left: 0;
   color: #667eea;
  font-weight: bold;
}

.service-info {
    display: flex;
  gap: 2rem;
   margin-top: 2rem;
   padding-top: 1.5rem;
  border-top :      1px solid #e0e0e0;

}

.duration,
.participants		{
  font-size: 0.95rem;
  color: #555;
   font-weight: 500;
}  

.duration:before {
  content: "⏱ ";
	  color: #667eea;


}

.participants:before {
  content: "👥 ";
}

.service-packages {
	  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
         padding:   4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
	}

.service-packages h2 {
   font-size: 2.5rem;
	margin-bottom: 0.5rem;
   text-align: center;
    color: #1a1a2e;
}

.packages-intro {
  color: #666;
  font-size: 1.1rem;
	 text-align: center;
					margin-bottom     :2rem;
}

.packages-grid {
        display :       grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;


}

.package-card {
    background: white;
  border-radius: 12px;
   overflow: hidden;
  transition: all 0.3s ease;
   border: 2px solid #e0e0e0;
   display: flex;
   flex-direction: column;

}

.package-card:hover {

  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  border-color: #667eea;

}

.package-card.package-starter {

  border-top: 4px solid #3498db;
	}

.package-card.package-professional {
   border-top: 4px solid #667eea;
  transform: scale(1.02);
}

.package-card.package-enterprise {
   border-top: 4px solid #764ba2;
}

.package-header {
    padding: 1.5rem;
   border-bottom: 1px solid #e0e0e0;
  background: #f8f9fa;
}

.package-header h3 {
    font-size: 1.5rem;
   color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.package-description {
  font-size: 0.95rem;
    color: #666;
   margin: 0;
}

.package-content {


		padding    :      1.5rem;
    flex-grow: 1;
     }

.package-features {
                    list-style     :        none;
    padding: 0;
}

.package-features li  
  {
  padding: 0.7rem 0;
    color: #555;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.95rem;

}

.package-features li:last-child {
   border-bottom: none;
}

.package-features li:before {
  content: "✓ ";
   margin-right: 0.5rem;
    color: #667eea;
  font-weight   :  bold;


}

.package-button {
  display: block;
  margin: 1.5rem;
  padding: 0.9rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
                    text-decoration: none;
	 text-align: center;
  border-radius :     6px;
  font-weight: 600;
    transition    :      all 0.3s ease;
}

.package-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.service-benefits {
  background    :      white;
        padding: 4rem 2rem;
 max-width: 1200px;
   margin: 0 auto;
}

.service-benefits h2 {
       font-size: 2.5rem;
	color: #1a1a2e;
	text-align: center;
    margin-bottom: 2rem;
}

.benefits-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.benefit-item {
	text-align: center;
   padding:      2rem;
    background: #f8f9fa;
        -moz-border-radius: 8px;
  border-radius: 8px;
	 -o-transition: all 0.3s ease;
  -webkit-border-radius: 8px;
	 transition   :   all 0.3s ease;
}

.benefit-item:hover   {
                  background: #ecf0f1;
  transform: translateY(-5px);

	}

.benefit-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
   display: flex;
    align-items     : center;
   justify-content: center;
}

.benefit-icon svg	{

	 width: 40px;
  height: 40px;
    stroke: white;
               fill: white;
    stroke-width: 1;


}



.benefit-item h3 {
	font-size: 1.3rem;
         color: #1a1a2e;
  margin-bottom: 0.5rem;
}

.benefit-item p {

	   color: #666;
    line-height: 1.6;


}

.service-cta {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
  padding     :3rem 2rem;
    text-align: center;
}

.service-cta-content h2 {
   font-size: 2.3rem;

   margin-bottom: 1rem;
}

.service-cta-content p {
    font-size: 1.1rem;
  margin-bottom: 2rem;
   opacity: 0.9;
}

.cta-button-service {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color  :      white;
   padding: 1.1rem 2.5rem;
	border-radius: 8px;
  text-decoration     :        none;
   font-weight: 600;
   font-size: 1rem;
    transition: all 0.3s ease;
}

.cta-button-service:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.thankyou-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 4rem 2rem;
  min-height: calc(100vh - 250px);
  display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-container {
	background: white;
    border-radius: 12px;
    padding   :       3rem;
   max-width  :    700px;
   text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);


}

.thankyou-icon {
    width: 100px;
  height: 100px;
   margin: 0 auto 2rem;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
          border-radius  :50%;
    display     :   flex;
    align-items: center;
   justify-content     :  center;
}

.thankyou-icon svg {
  width: 60px;
      height: 60px;
  fill    :    white;
   stroke: white;
}

.thankyou-container h1 {
  font-size: 2.5rem;
	color: #1a1a2e;
   margin-bottom     :0.5rem;
}

.thankyou-container h2 {
  font-size: 1.8rem;
		color: #667eea;
	   margin-bottom: 1.5rem;
	    font-weight: 600;
}

.thankyou-message {
  font-size: 1.1rem;
  color: #555;
	margin-bottom: 1rem;
  line-height: 1.8; 

}

.thankyou-details {
	   font-size: 1rem;
	color: #666;
   margin-bottom    :   2rem;
         line-height: 1.7;


}

.thankyou-next-steps {
   background: #f8f9fa;
    padding: 2rem;
   border-radius: 8px;
    margin: 2rem 0;
}

.thankyou-next-steps h3 {
  font-size: 1.4rem;
	color: #1a1a2e;
  margin-bottom: 1.5rem;
}

.steps-container {
    display    :       grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap    :   1.5rem;
}

.step	{
    text-align: center;
}

.step-number {
   width: 50px;
   height: 50px;
  margin: 0 auto 0.8rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
   display: flex;
   align-items: center;
  justify-content: center;
    color: white;
	font-size: 1.5rem;
	font-weight: bold;
}

.step h4


{
         font-size: 1.1rem;
   color: #1a1a2e;
                    margin-bottom: 0.5rem; 
	

}

.step p {
    font-size: 0.9rem;
  color: #666;
}

.thankyou-contact-info {
   background  :    #f8f9fa;
   padding: 1.5rem;
  border-radius: 8px;
   margin: 2rem 0;
}

.thankyou-contact-info h3 {


    font-size: 1.2rem;
    color: #1a1a2e;
  margin-bottom: 1rem;
	}

.contact-details {
    text-align: left;
} 

.contact-details p {
        color: #555;
   margin: 0.5rem 0;
  font-size: 0.95rem;
}

.contact-details strong {
       color: #1a1a2e;
}

.thankyou-actions {


  display: flex;
          gap: 1rem;
         justify-content: center;
    margin: 2rem 0;
}

.button-primary,
.button-secondary  
  {
	padding: 0.9rem 1.8rem;
       -webkit-border-radius: 6px;
     text-decoration: none;
       font-size: 0.95rem;
     font-weight: 600;
      border-radius   :        6px;
     transition: all 0.3s ease;
}

.button-primary {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
     }

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
} 

.button-secondary {
  background: #ecf0f1;
   color: #1a1a2e;
    border: 2px solid #667eea;
}

.button-secondary:hover {
  background  : #667eea;
       color: white;
} 

.thankyou-footer {
   margin-top: 2rem;
    color: #666;
    line-height: 1.6;
   font-style: italic;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 1.8rem;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .service-detail-card.alternate {
        direction: ltr;
    }

    .service-info {
        flex-direction: column;
        gap: 1rem;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.package-professional {
        transform: scale(1);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem;
    }

    .thankyou-container h1 {
        font-size: 2rem;
    }

    .thankyou-container h2 {
        font-size: 1.5rem;
    }

    .steps-container {
        grid-template-columns: 1fr;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .service-detail-content h2 {
        font-size: 1.5rem;
    }

    .service-details h3 {
        font-size: 1.1rem;
    }

    .thankyou-container {
        padding: 1.5rem;
    }

    .thankyou-icon {
        width: 80px;
        height: 80px;
    }

    .thankyou-icon svg {
        width: 50px;
        height: 50px;
    }

    .thankyou-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
}.policySection {
  padding: 80px 2rem;
    background: white;
  min-height: calc(100vh - 400px);
}

.policyContainer	{
   max-width: 900px;
    margin: 0 auto;
  text-align: left;
}

.policyContainer h1     {
  font-size: 2.8rem;
  color: #1a1a2e;
   margin-bottom: 2rem;
	 font-weight: 700;
	 padding-bottom: 1rem;
                    border-bottom: 3px solid #667eea;
}

.policy-content {
   line-height: 1.8;
	}

.policyContainer h2 {
    font-size: 1.8rem;
   color: #1a1a2e;
               margin-top: 2.5rem;
    margin-bottom   :     1.2rem;
  font-weight:    600;
        padding-top: 1rem;

}

.policyContainer h2:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

.policyContainer p {
  color: #555;
    margin-bottom: 1.2rem;
   line-height: 1.8;
    font-size: 1rem;
}

.policy-content p:last-child {
    margin-bottom: 0;


}  

.policyContainer p + h2 {
   margin-top: 2rem;
}

.policy-content {
   background: #f8f9fa;
      padding    :2rem;
  border-radius    :        8px;
    border-left: 4px solid #667eea;
	
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
        min-height: calc(100vh - 350px);
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .policy-content {
        padding: 1.5rem;
    }
}@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        min-height: calc(100vh - 320px);
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
        line-height: 1.6;
    }

    .policy-content {
        padding: 1rem;
        border-left-width: 3px;
    }
}

@media print {
    .policySection {
        background: white;
        padding: 0;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1,
    .policyContainer h2 {
        color: #000;
        page-break-after: avoid;
    }

    .policy-content {
        background: none;
        border: none;
        padding: 0;
    }

    .policyContainer p {
        page-break-inside: avoid;
    }
}