* {
	 margin: 0;
  padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f5f5f5;
    --accent-color: #2d7a8a;
    --accent-light: #3d9aaa;
    --text-dark: #2c2c2c;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-dark);
  background-color: #ffffff;
	 line-height: 1.6;
}

.navigation-bar
	{

	  background-color: var(--primary-color);
  padding: 1.2rem 0;
   position   : sticky;
          top: 0;
   z-index   :1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container {
         max-width: 1200px;
      align-items: center;
  justify-content :        space-between;
    display: flex;
    padding: 0 20px;
   margin   :        0 auto;
}

.logo-section
	{
  flex-shrink: 0;
}

.logo-image {
    height    :    40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {


  display: flex;
	list-style    :        none;
  gap: 2rem;
    align-items :   center; 


}

.nav-links a {
   color: #ffffff;
    text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent-light);
}

.burger-menu
{

	       display    :  none;
                    flex-direction: column;
   background: none;
        border: none;
    cursor: pointer;
    gap: 6px;
     }

.burger-menu span {
   width:       25px;
  height  : 2.5px;
 background-color: #ffffff;
  transition: all 0.3s ease;
  border-radius  :       2px;
}

.hero-section {
   display   :    grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
   align-items: center;
   padding: 4rem 20px;
   max-width: 1200px;
    margin: 0 auto;
	min-height: 600px;
}

.hero-content h1 {
    font-size: 3rem;
   line-height: 1.2;
   margin-bottom: 1rem;
  color: var(--primary-color);
                    font-weight: 700;
}

.hero-subtitle
{
	font-size: 1.1rem;
  color: var(--text-light);
    margin-bottom: 2rem;
    line-height  :1.8;
}

.cta-button {
  display: inline-block;
    padding: 1rem 2rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
    font-weight: 600;
	text-decoration: none;
  cursor: pointer;
    transition     :    all 0.3s ease;
    text-align: center;
}

.primary-btn {

  background-color: var(--accent-color); 
    color: #ffffff;



}

.primary-btn:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 122, 138, 0.3);
}

.hero-image  {
    justify-content: center;
    align-items:  center;
	 display: flex;
}

.hero-img {
         width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);


}

.value-proposition {
  background-color: #f9f9f9;
  padding: 4rem 20px;
}

.value-container {
       max-width: 1200px;
   margin: 0 auto;
}

.value-container h2 {
   font-size: 2.5rem;
   margin-bottom: 3rem;
  text-align   : center;
  color: var(--primary-color);
}

.value-grid {
       display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	gap: 2rem;
}

.value-card {
  background-color: #ffffff;
    padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px); 
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-header {
         font-size: 1.2rem;
    font-weight     :    700;
  color: var(--accent-color);
	margin-bottom: 1rem;
}

.value-card p {
  color: var(--text-light);
  line-height     :   1.7;
}

.services-preview		{
  padding: 4rem 20px;
    max-width:      1200px;
    margin: 0 auto;
}

.services-preview h2     {
    font-size:     2.5rem;

    margin-bottom: 3rem;

   text-align: center;

  color: var(--primary-color);
}

.services-showcase {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.service-item {
  background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
      padding: 2.5rem;
      border-radius: 10px;
     border-left: 4px solid var(--accent-color);
      transition    :all 0.3s ease;
}

.service-item:hover {
  box-shadow: 0 8px 25px rgba(45, 122, 138, 0.15);
     transform: translateX(5px);
}

.service-title {
       font-size: 1.3rem;
    font-weight: 700;
  color: var(--accent-color);
          margin-bottom: 1rem;
}

.service-description {
  color: var(--text-light);
   line-height: 1.8;
} 

.explore-services-btn {
    display:      block;
    width: fit-content;
	 margin: 0 auto;
    padding     :    0.9rem 2rem;
  background-color: var(--accent-color);
   color: #ffffff;
          border  :       none;
    border-radius: 6px;
	text-decoration: none;
   font-weight: 600;
    cursor: pointer;
   transition    :       all 0.3s ease;


}

.explore-services-btn:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
     }

.transformation-image {
            position: relative;
          height   :400px;
         overflow: hidden;
    margin: 3rem 0;
	}

.transform-img {
   width: 100%;
    height: 100%;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
        bottom: 0;
  left: 0;
   right: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.9), transparent);
   padding    :       3rem 2rem;
	color: #ffffff;
    text-align: left;
}

.image-overlay h3 {


    font-size: 1.8rem;
   margin-bottom :      0.5rem;
}

.image-overlay p {
   font-size: 1.1rem;
	opacity: 0.9;
}

.methodology-section {

	  padding: 4rem 20px; 
		background-color: #fafafa; 
	}

.methodology-container {
  max-width: 1200px;
   margin: 0 auto; 

}

.methodology-container h2 {
       font-size    :  2.5rem;
   margin-bottom :       3rem;
   text-align: center;
  color: var(--primary-color);
     }


.methodology-steps {
		 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap    :   2rem;
} 

.step {
  background-color: #ffffff;
  padding: 2.5rem;
    border-radius:        10px;
   text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
}

.step:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(45, 122, 138, 0.15);
}

.step-number {
     font-size: 2.5rem;
    font-weight   :        700;
  color: var(--accent-color);
  margin-bottom:      1rem; 
	
}

.step-title {
        font-size: 1.3rem;
    font-weight: 700;
  color: var(--primary-color);
	margin-bottom: 1rem;
}

.step p {


  color: var(--text-light); 
		 line-height: 1.7;

}

.workplace-ritual {
   display   : grid;
    grid-template-columns    :       1fr 1fr;
	gap: 3rem;
    align-items:   center;
                    padding: 4rem 20px;
                    max-width: 1200px;
  margin: 0 auto; 
	
}

.workplace-img		{
  width: 100%; 
	 height: auto; 
   border-radius: 12px; 
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.workplace-content h3 {
          font-size: 2rem;
  color: var(--primary-color);
   margin-bottom    : 1rem;
}

.workplace-content p {
  color: var(--text-light);
   font-size: 1.05rem;
    line-height: 1.8;
}

.optimization-showcase {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items:  center;
      padding: 4rem 20px;
  max-width: 1200px;
   margin:   0 auto;
   background-color: #f9f9f9;
}

.optimize-img {
    width: 100%;

			 height: auto;

	   border-radius:      12px;

	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);

	   order: 2;


}

.optimization-text {
    order: 1;
}

.optimization-text h3 {

	      font-size  :      2rem;
  color: var(--primary-color);
    margin-bottom: 1rem;


}

.optimization-text p {
  color: var(--text-light);
  font-size: 1.05rem;
    line-height: 1.8;
  margin-bottom: 1.5rem;
}

.benefits-list {
    list-style  :       none;
}

.benefits-list li {
  padding :0.7rem 0;
   padding-left: 1.8rem;
   position: relative;
  color: var(--text-light);
}

.benefits-list li:before {
  content: "✓";
    position: absolute;
                    left: 0;
  color: var(--success-color);
    font-weight: bold;
	font-size: 1.2rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  padding: 4rem 20px;
  text-align   :       center;
   color: #ffffff;
}

.cta-wrapper
{
	 max-width: 800px;
 margin: 0 auto;
}

.cta-wrapper h2 {
	  font-size     :     2.3rem;
   margin-bottom   :    1rem;

}

.cta-wrapper p  
  {
		 line-height: 1.8;
               font-size: 1.1rem;
   margin-bottom :       2rem;
  opacity: 0.95;


}

.large-btn {
  padding: 1.2rem 2.5rem;
   font-size: 1.1rem;
   background-color: #ffffff;
  color: var(--accent-color);
  font-weight: 700;


}

.large-btn:hover {
  background-color     : #f5f5f5;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-section {
   padding: 4rem 20px;
   max-width     :     800px;
    margin: 0 auto;
}

.contact-container h2 {


    font-size: 2.3rem;
	 text-align: center;
  color: var(--primary-color);
    margin-bottom: 0.5rem;


}

.contact-subtitle {
   text-align: center;
  color: var(--text-light);
   margin-bottom: 2.5rem;
 font-size     :       1.05rem;
}

.contact-form {
                    background-color :       #f9f9f9;
        padding    :       2.5rem;
    border-radius: 10px;
  box-shadow: 0 4px 15px 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: var(--primary-color);
	font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea     {
    width: 100%;
   padding: 0.85rem;
  border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
  font-size: 0.95rem;
   transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(45, 122, 138, 0.1);
}

.submit-btn		{
  width: 100%;
                    padding  :1rem;
  background-color: var(--accent-color);
    color   :      #ffffff;
    border: none;
      border-radius: 6px;
   font-size: 1rem;
    font-weight: 700;
   cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {

	  background-color: var(--accent-light); 
	  transform: translateY(-2px); 
	  box-shadow: 0 8px 20px rgba(45, 122, 138, 0.3);
	}

.footer-section {
  background-color: var(--primary-color);
	color: #ffffff;
    padding: 3rem 20px 1rem;
    margin-top     :        4rem;
}

.footer-container {
    max-width: 1200px;
      margin: 0 auto;
}

.footer-main {
    display: grid;
  grid-template-columns    :        200px 1fr;
  gap :   3rem;
   margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);

}

.footer-logo
{
  height: 45px;
    width    :auto;
  filter: brightness(0) invert(1);
}

.footer-content {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap    : 2rem;
}

.footer-column h4 {

	    font-size: 1rem;
          margin-bottom: 1rem;
   font-weight  :  700; 
	


}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
	margin-bottom     :0.7rem;

}

.footer-column a {
	color: #cccccc;
    text-decoration: none;
	 transition: color 0.3s ease;
   font-size   :  0.95rem;
}

.footer-column a:hover {
  color: var(--accent-light);
}

.contact-info p {
  color     :     #cccccc;
    font-size     :0.95rem;
   margin-bottom: 0.8rem;
    line-height: 1.6; 

}

.footer-bottom {
	text-align   :     center;
    padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #999999;
	font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--primary-color);
        padding: 1rem 0;
        gap: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 1rem 20px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 20px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .value-container h2,
    .services-preview h2,
    .methodology-container h2 {
        font-size: 1.8rem;
    }

    .workplace-ritual,
    .optimization-showcase {
        grid-template-columns: 1fr;
        padding: 2rem 20px;
    }

    .optimize-img {
        order: 1;
    }

    .optimization-text {
        order: 2;
    }

    .transformation-image {
        height: 250px;
    }

    .image-overlay {
        padding: 2rem;
    }

    .image-overlay h3 {
        font-size: 1.3rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cta-wrapper h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.6rem;
    }

    .value-container h2,
    .services-preview h2 {
        font-size: 1.5rem;
    }

    .services-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .workplace-content h3,
    .optimization-text h3 {
        font-size: 1.4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%); 
	   color: #ffffff; 
	  padding: 4rem 20px; 
	       text-align   :    center; 
	    min-height: 300px; 
	   display   :  flex; 
	  align-items: center; 
	    justify-content: center;
}

.services-hero-content h1 {
   font-size: 3rem;
   margin-bottom: 1rem;
   font-weight     :    700;
}

.services-hero-content p {
  font-size: 1.2rem; 
	opacity: 0.95; 
    max-width: 700px; 
      margin: 0 auto; 
  line-height: 1.8;
}

.services-grid-section {
    padding: 4rem 20px;
    background-color: #ffffff;
}

.services-grid-container {
    max-width: 1200px;
	 margin: 0 auto;
}

.services-grid-container h2 {
   font-size: 2.5rem;
   text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.services-main-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
  margin-bottom: 3rem;


}

.service-card-large {
	background-color: #f9f9f9;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
  display :flex;
   flex-direction: column;
}

.service-card-large:hover {
	  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(45, 122, 138, 0.15);
	} 

.service-card-header

{
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  color: #ffffff;
   padding: 1.5rem;
}

.service-card-header h3 {
    font-size: 1.5rem;
  margin: 0;
   font-weight : 700;


}

.service-card-body {
	 padding: 2rem; 
    flex-grow: 1; 
    display: flex; 
	flex-direction :    column;
}

.service-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.service-card-body p {
  color: var(--text-light);
  line-height: 1.8;
   margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-features   {
    list-style: none;
   margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.6rem 0;
             padding-left: 1.8rem;
       position: relative;
     color: var(--text-dark);
     font-size: 0.95rem;
}

.service-features li:before {
  content: "→";
    position :     absolute;
      left: 0;
  color: var(--accent-color);
    font-weight: bold;
}

.price-section {
    display: flex;
    align-items: baseline;
   gap: 0.5rem;
   padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
}

.price {
    font-size: 2rem;
	  font-weight: 700;
	  color: var(--accent-color);
}

.price-period {
	  color: var(--text-light);
       font-size: 0.95rem;

     }

.service-comparison	{
     background-color    :      #f9f9f9;
     padding: 4rem 20px;}

.comparison-container {
  max-width: 1200px;
 margin: 0 auto;
}

.comparison-container h2 {
  font-size  :       2.5rem;
  text-align: center;
  color: var(--primary-color);
	margin-bottom:      3rem;
	
}

.comparison-table-wrapper {


  overflow-x: auto;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     }

.comparison-table


{
  width: 100%;
   border-collapse: collapse;
    background-color: #ffffff;
}

.comparison-table thead {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  color: #ffffff;
}

.comparison-table th {
          padding: 1.5rem;

  text-align :  left;

  font-weight: 700;

 font-size: 1rem;
}

.comparison-table td {
	 padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-dark);
}

.comparison-table tbody tr:hover {
  background-color: #f5f5f5;

}

.comparison-table .check {
  color: var(--success-color);
   font-weight: bold;
  font-size: 1.3rem;
}

.comparison-table .cross {
   color: #999999;
  font-weight: bold;
   font-size: 1.3rem;
}

.faqs-section {

   padding: 4rem 20px;
               background-color: #ffffff;
	}

.faqs-container {
         max-width: 900px;
  margin  :0 auto; 

}

.faqs-container h2 {
 font-size: 2.5rem;
	text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.faqs-grid {

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;


}

.faq-item {
    background-color: #f9f9f9;
    border-radius: 10px;
   overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition     :all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(45, 122, 138, 0.15);
}

.faq-question {
    background-color: #f0f8fa;
  padding: 1.5rem;
	cursor: pointer;
  border-left: 4px solid var(--accent-color);
    transition: all 0.3s ease;
}

.faq-question h4 {
  color: var(--accent-color);
                    font-size: 1.1rem;
    margin: 0;
    font-weight: 700;
}

.faq-item:hover .faq-question	{
  background-color: var(--accent-color);
}

.faq-item:hover .faq-question h4 {
                    color: #ffffff;
}

.faq-answer		{
  padding: 1.5rem;

  color: var(--text-light);

   line-height    :      1.8;
}  

.faq-answer p {
    margin: 0;
}

.testimonials-section {
	background-color: #f9f9f9;
    padding: 4rem 20px;
}

.testimonials-container {
   max-width     :     1200px;
    margin: 0 auto;
}

.testimonials-container h2 {
    font-size: 2.5rem;
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem; 
	
}

.testimonial-card {
  background-color: #ffffff;
	padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
	 transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px); 
	  box-shadow: 0 8px 30px rgba(45, 122, 138, 0.15);
}

.testimonial-text p {
	  color: var(--text-light);
   line-height: 1.8;
    margin-bottom: 1.5rem;
	font-style: italic;}

.testimonial-author {
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

.author-name {
   font-weight: 700;
  color: var(--primary-color);
	 font-size   :0.95rem;
}

.author-role {
  color: var(--accent-color);
  font-size   :  0.85rem;
}

.cta-section-services {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
  padding: 4rem 20px;
  text-align: center;
  color: #ffffff;
}

.cta-wrapper-services {
  max-width: 800px;
  margin: 0 auto;
}

.cta-wrapper-services h2

{

	   font-size: 2.3rem;
     margin-bottom: 1rem; 
}

.cta-wrapper-services p {
    font-size: 1.1rem;
   opacity  :      0.95;
               line-height: 1.8;
    margin-bottom: 2rem;
}

.thankyou-hero {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
    color  :       #ffffff;
                    padding:      4rem 20px;
     text-align: center;
 min-height: 400px;
  display: flex;
    align-items: center;
    justify-content: center;
}

.thankyou-container {


  max-width: 600px;
     }

.success-icon {
    color: #ffffff;
   margin-bottom: 2rem;
	 display: flex;
  justify-content: center;
          -moz-animation :    scaleIn 0.6s ease-out;
		animation: scaleIn 0.6s ease-out;
  -webkit-animation  :       scaleIn 0.6s ease-out;
}

.success-icon svg		{
  width: 80px;
    height: 80px;
    stroke: currentColor;
    fill: none;
  stroke-width: 1.5;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-hero h1 {
          font-size: 2.8rem;
   margin-bottom: 1rem;
  font-weight: 700;
}

.thankyou-subtitle {
  font-size: 1.2rem;
   opacity: 0.95;
				 line-height:      1.8; 

}

.next-steps-section {
    padding: 4rem 20px;
    background-color: #ffffff;
}

.next-steps-container {

                    max-width: 900px;
   margin   : 0 auto;


}


.next-steps-container h2 {
  font-size: 2.5rem;
  text-align: center;
  color: var(--primary-color);
    margin-bottom   :      3rem;
}

.steps-timeline {
    position: relative;
	display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-step {

   display: grid;
  grid-template-columns: 60px 1fr;
  gap: 2rem;
   align-items: flex-start;
	}

.step-marker {
		width     :60px;
   				 height: 60px;
      border-radius: 50%;
     background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-light) 100%);
       color: #ffffff;
     display: flex;
       align-items   :    center;
     justify-content: center;
       font-weight: 700;
     font-size: 1.5rem;
      flex-shrink:       0;
     }

.step-content h3 {
  color: var(--accent-color); 
   font-size: 1.3rem; 
    margin-bottom:        0.5rem; 
					font-weight :      700;
}

.step-content p {
  color: var(--text-light);
   line-height: 1.8;
    margin :      0;
	
}

.timeline-connector {
  margin-left: 30px;
   width: 2px;
	 height: 40px;
  background: linear-gradient(to bottom, var(--accent-color), transparent);
}

.expectations-section {
   background-color: #f9f9f9;
  padding: 4rem 20px;
}

.expectations-container {
  max-width: 1200px;
  margin :       0 auto; 

}

.expectations-container h2 {
  font-size: 2.5rem;
	text-align: center;
  color: var(--primary-color);
    margin-bottom: 3rem;
}

.expectations-grid  {


    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;


}  

.expectation-card {
	  background-color: #ffffff;
    padding: 2.5rem 2rem;
     border-radius    :10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition  :  all 0.3s ease;

}

.expectation-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 35px rgba(45, 122, 138, 0.15);
}

.expectation-icon {
  color: var(--accent-color);
    margin-bottom: 1rem;
               display: flex;
         justify-content: center;
}

.expectation-icon svg {
   	 width: 40px;
        height: 40px;
	}

.expectation-card h3
{
  color: var(--primary-color);

    font-size: 1.2rem;

  margin-bottom: 0.8rem;

  font-weight: 700;
}

.expectation-card p {
  color: var(--text-light);
	line-height: 1.7;
    margin: 0;}

.contact-note-section {
        padding: 4rem 20px;
   background-color: #ffffff; 
	
}

.contact-note-container {
   max-width: 700px;
   margin: 0 auto;
   background-color: #f0f8fa;
   padding :  2.5rem;
    border-radius: 10px;
  border-left: 4px solid var(--accent-color);
}  

.contact-note-container h2 {
  color: var(--accent-color);
    font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.note-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2rem;


}

.contact-details {


    display: flex;
   flex-direction: column;
    gap   :       1rem;
}


.detail-item {
  color: var(--text-dark);
       font-size: 1rem;
   	 line-height: 1.6;
}

.detail-item strong {
  color: var(--accent-color);
}


.related-services-section {
    background-color: #f9f9f9;
  padding: 4rem 20px;
}

.related-services-container {
	max-width: 1000px;
    margin: 0 auto;
}

.related-services-container h2     {
  font-size: 2.3rem;
    text-align: center;
  color: var(--primary-color);
    margin-bottom: 3rem;
}

.related-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
       gap: 2rem;
}

.related-card    {
 background-color: #ffffff;
					padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
   transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(45, 122, 138, 0.15);
}

.related-card h3 {
  color: var(--accent-color);
   font-size: 1.2rem;
    margin-bottom: 1rem;
   font-weight: 700;
}

.related-card p {
  color: var(--text-light);
  line-height: 1.7;
   margin-bottom: 1.5rem; 
	
}

.related-link {
  display: inline-block;
  color: var(--accent-color);
   text-decoration: none;
   font-weight: 600;
   padding: 0.6rem 1.5rem;
  border: 2px solid var(--accent-color);
  border-radius: 6px;
  transition:        all 0.3s ease;


} 

.related-link:hover {
  background-color: var(--accent-color);
    color: #ffffff;
}

.back-to-main {
  background-color: #ffffff;
    padding: 3rem 20px;
   text-align :  center;
}

.back-to-main-container
{
  max-width: 1200px;
   margin    :    0 auto;
}

.back-button {
    display: inline-block;
    padding     :        1rem 2.5rem;
  background-color: var(--accent-color);
	color     :      #ffffff;
	text-decoration: none;
     border-radius: 6px;
               font-weight: 600;
	transition: all 0.3s ease;
  font-size: 1rem;
}

.back-button:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(45, 122, 138, 0.3); 
	
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .services-grid-container h2,
    .comparison-container h2,
    .faqs-container h2,
    .testimonials-container h2,
    .expectations-container h2,
    .related-services-container h2 {
        font-size: 1.8rem;
    }

    .services-main-grid {
        grid-template-columns: 1fr;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
        font-size: 0.9rem;
    }

    .faqs-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        grid-template-columns: 50px 1fr;
        gap: 1.5rem;
    }

    .step-marker {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .timeline-connector {
        margin-left: 25px;
    }

    .expectations-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-hero h1 {
        font-size: 2rem;
    }

    .thankyou-subtitle {
        font-size: 1rem;
    }

    .contact-note-container {
        padding: 2rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .cta-wrapper-services h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem 20px;
        min-height: 250px;
    }

    .services-hero-content h1 {
        font-size: 1.6rem;
    }

    .service-card-large {
        margin-bottom: 1rem;
    }

    .service-card-img {
        height: 150px;
    }

    .price {
        font-size: 1.5rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 0.8rem;
    }

    .faqs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .testimonial-text p {
        font-size: 0.95rem;
    }

    .timeline-step {
        grid-template-columns: 45px 1fr;
        gap: 1rem;
    }

    .step-marker {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .expectations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .expectation-card {
        padding: 1.5rem 1rem;
    }

    .expectation-card h3 {
        font-size: 1.1rem;
    }

    .expectation-card p {
        font-size: 0.95rem;
    }

    .contact-note-container {
        padding: 1.5rem;
    }

    .detail-item {
        font-size: 0.95rem;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}.policy-section {
  padding: 80px 2rem;
               background-color  :       #f9f9f9;
    min-height     :        600px;


}

.policy-container {
   max-width: 900px;
  margin: 0 auto;
   text-align     :        left;
}

.policy-container h1 {
   	 font-size :   3rem;
  color: var(--primary-color);
    margin-bottom: 2rem;
   font-weight: 700;
    line-height: 1.2;
     }

.policy-container h2 {
   font-size: 1.8rem; 
	  color: var(--accent-color); 
	        margin-top: 2.5rem; 
	   margin-bottom: 1.2rem; 
	   font-weight   :   700; 
	  border-bottom: 2px solid var(--accent-color); 
	   padding-bottom: 0.8rem;
}

/* Generated styles */


.policy-container p     {
     color: var(--text-light);
  margin-bottom: 1.5rem;
               line-height    :1.85;
   font-size: 1.05rem;
   text-align: justify;




}

.policy-container p:first-of-type {
  font-size: 1.1rem;
  color: var(--text-dark);
     font-weight: 500;

}
@media (max-width: 1024px) {
    .policy-section {
        padding: 70px 2rem;
    }

    .policy-container {
        max-width: 800px;
    }

    .policy-container h1 {
        font-size: 2.5rem;
        margin-bottom: 1.8rem;
    }

    .policy-container h2 {
        font-size: 1.6rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policy-container p {
        font-size: 1.02rem;
        margin-bottom: 1.3rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1.5rem;
        min-height: auto;
    }

    .policy-container {
        max-width: 100%;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 1.8rem;
        margin-bottom: 0.9rem;
    }

    .policy-container p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        text-align: left;
        line-height: 1.75;
    }
}

@media (max-width: 640px) {
    .policy-section {
        padding: 50px 1rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
        padding-bottom: 0.6rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.65;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 1rem;
    }

    .policy-container h1 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .policy-container h2 {
        font-size: 1.1rem;
        margin-top: 1.3rem;
        margin-bottom: 0.7rem;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 0.9rem;
        line-height: 1.6;
    }
}.policy-container h2::before {
  content: "";
          display: block;
  height: 80px;
   margin-top: -80px;
   visibility : hidden;
}@media print {
    .policy-section {
        background-color: #ffffff;
        padding: 0;
    }

    .policy-container {
        max-width: 100%;
    }

    .policy-container h1,
    .policy-container h2 {
        page-break-after: avoid;
    }

    .policy-container p {
        page-break-inside: avoid;
    }
}