* {
   margin: 0;
   padding: 0;
  box-sizing  :     border-box; 

}

html    {
   scroll-behavior: smooth;
}

body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

	  line-height: 1.6;

	    color: #1a1a1a;

		 background: #ffffff;}

:root {
  --primary-color: #2c3e50;
  --accent-color: #3498db;
  --accent-dark: #2980b9;
  --light-bg: #ecf0f1;
  --border-color: #bdc3c7;
  --text-light: #7f8c8d;
  --success-color: #27ae60;
}

.navbar-container {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	padding: 1rem 0;
    position: sticky;
    top: 0;
  z-index    :   1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);


}

.navbar-wrapper {
   	max-width: 1200px;
     margin: 0 auto;
       padding: 0 2rem;
       display   :      flex;
   	justify-content: space-between;
            align-items: center; 



}

.navbar-brand  {
  align-items   :       center;
       display: flex;
}

.navbar-logo {
	height     :45px;
   width: auto;
  filter: brightness(0) invert(1);
    transition  :        transform 0.3s ease;
}

.navbar-logo:hover {
  transform: scale(1.05);
}

.burger-menu {
   display: none;
    flex-direction: column;
  background: none;
  border: none;
    cursor: pointer;
	 gap: 6px;
  padding: 8px;
}

.burger-line {

 width: 28px;
   height: 3px;
   background: white;
    border-radius     : 2px;
   transition: all 0.3s ease;

}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.burger-menu.active .burger-line:nth-child(2) {
	opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px); 

}

.nav-links {
		display: flex;
    list-style :        none;
   gap    :  2rem;
   align-items: center;
     }

.nav-links a {
  color: white;
	    text-decoration: none;
		 font-weight: 500;
	  font-size :0.95rem;
	   transition: all 0.3s ease;
	   padding: 8px 12px;
	   border-radius: 4px;
}



.nav-links a:hover	{
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.nav-cta {
  background     :      #e74c3c !important;
   color  :        white !important;
}

.nav-cta:hover {
    background: #c0392b !important;


}

.hero-section {
   max-width: 1200px;
   margin: 0 auto;
  padding: 4rem 2rem;
    display: grid;
   grid-template-columns   :  1fr 1fr;
    gap: 3rem;
  align-items: center;
}

.hero-content h1 {
         font-size     :  2.8rem;
	color: #2c3e50;
	 margin-bottom: 1rem;
   line-height: 1.2;
    font-weight: 700;
}

.hero-subtitle {
   font-size    :      1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
        display: flex;
   gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary,
.cta-booking-btn {
    padding: 14px 32px;
    border-radius: 6px;
         text-decoration: none;
   font-weight: 600;
    font-size: 1rem;
   cursor: pointer;
		transition: all 0.3s ease;
	 border  :   none;
  display: inline-block;
  text-align: center;
}


.cta-primary{
  background: #3498db;
  color: white;
}

.cta-primary:hover {
	 background: #2980b9;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.cta-secondary {
   background: transparent;
   color     :     #2c3e50;
   border     :2px solid #2c3e50;
}

.cta-secondary:hover {
  background: #2c3e50;
    color: white;
  transform: translateY(-3px); 

}


.hero-image img {
  width    :  100%;
   height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.services-overview {
  background: #f8f9fa;
          padding: 4rem 2rem;
    text-align: center;
}

.services-overview h2 {
   font-size    :     2.2rem;
        color: #2c3e50;
   margin-bottom: 0.5rem;
     font-weight: 700; 

}

.section-intro {
  color: var(--text-light);
	font-size: 1.05rem;
   margin-bottom: 3rem;
}

.services-grid{
  max-width   : 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 2rem;
}

.service-card {
   background: white;
   padding     :     2rem;
  border-radius: 8px;
  text-align: center;
    transition     :  all 0.3s ease;
	border: 1px solid #ecf0f1;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
   border-color: #3498db;
}

.service-icon {
  width: 70px;
	   height: 70px;
	   margin: 0 auto 1.5rem;
	  display   :        flex;
	    align-items: center;
	  justify-content: center;
	  background: #ecf0f1;
	  border-radius: 50%;
		transition: all 0.3s ease;
}

.service-card:hover .service-icon {
   background   : #3498db;
     transform: rotate(10deg) scale(1.1);
}

.service-icon img
{
   width: 40px;
  height: 40px;
  -moz-filter: invert(0.4);
  filter: invert(0.4);
}

.service-card:hover .service-icon img {
  filter: brightness(0) invert(1);
}

.service-card h3
{
   font-size: 1.3rem;
	color: #2c3e50;
   margin-bottom   :        1rem;
   font-weight: 600;

}

.service-card p {
  color: var(--text-light);
  font-size   :   0.95rem;
  line-height: 1.6;
}

.approach-section {
   max-width:1200px;
  margin: 0 auto;
   padding:    4rem 2rem;


}

.approach-section h2 {
    font-size: 2.2rem;
   color   :       #2c3e50;
   margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.approach-content {
   display: grid;
               grid-template-columns: 1fr 1fr;
    gap     :        3rem;
    align-items    :       center;
}

.approach-image img {
    width  :    100%;
      height: auto;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15); 
	
}

.approach-text h3 {
	 font-size: 1.8rem;
   color: #2c3e50;
  margin-bottom: 1rem;
    font-weight: 600;
}

.approach-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
    line-height: 1.8;
}

.approach-list {
	list-style    : none;
  display: flex;
  flex-direction: column;
   gap: 1rem;
}

.approach-list li {
         padding-left    :   2rem;
   position: relative;
    color: #2c3e50;
    font-weight: 500;
}

.approach-list li:before {
  content: "✓";

	  position: absolute;

	   left: 0;

	               color: #27ae60;

	  font-weight:bold;

	      font-size   : 1.2rem;
}

.transformation-section {
  background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
    padding: 4rem 2rem;
    text-align: center;
}

.transformation-section h2 {
   font-size: 2.2rem;
  color: #2c3e50;
   margin-bottom: 0.5rem;
  font-weight    :   700;
}

.cases-grid {
	 max-width: 1000px; 
	  margin     :       3rem auto 0; 
	        display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
	  gap: 2rem;

}


.case-card {
	  background: white;
   border-radius: 8px;
   overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
   border: 1px solid #ecf0f1;}


.case-card:hover  
  {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.case-card img {
    width: 100%;
     object-fit: cover;
     height: 200px;
}

.case-card h4 {
   font-size     :        1.3rem;
	color: #2c3e50;
   padding: 1.5rem 1.5rem 0.5rem;
    font-weight: 600;
}

.case-card p {
  color: var(--text-light);
  padding: 0.5rem 1.5rem 1.5rem;
    font-size     :0.95rem;
  line-height: 1.6;
}

.cta-booking-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
  padding     :        4rem 2rem;
   text-align: center;
}

.cta-booking-wrapper {
  max-width: 600px;
    margin     :    0 auto;
}

.cta-booking-wrapper h2		{
  font-size     :      2rem;
	margin-bottom: 1rem;
    font-weight     :    700;
}

.cta-booking-wrapper p {
    opacity: 0.95;

                    margin-bottom: 2rem;

   font-size: 1.1rem;
}

.cta-booking-btn {
  color  :    #3498db;
   background: white;
    font-weight: 700;
}

.cta-booking-btn:hover {
    background: #ecf0f1;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
	
}

.contact-section {
   max-width: 900px;
    margin: 0 auto;
   padding: 4rem 2rem;
    text-align: center;
}

.contact-section h2 {
  font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
  font-weight: 700;
}

.contact-form

{
		 background: #f8f9fa;
    padding: 2.5rem;
   border-radius: 10px;
  border: 1px solid #ecf0f1;
   margin-top: 2rem;
    display   :       grid;
   gap: 1.5rem;
}

.form-group


{
	 text-align: left;
    display: flex;
    flex-direction:       column;
	
}

.form-group label {
   font-weight: 600;
	color: #2c3e50;
   margin-bottom: 0.5rem;
   font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;

	border: 2px solid #ecf0f1;

    border-radius: 6px;

	 font-size: 1rem;

    font-family: inherit;

	 transition: all 0.3s ease;

	 background: white;

   color: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);

}

.form-group textarea {
   resize: vertical;
    min-height: 120px;
}

.form-submit {
  background: #3498db;
   color: white;
   padding: 14px 32px;
   border:      none;
  border-radius: 6px;
   font-size: 1rem;
  font-weight: 700;
   cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem; 

}

.form-submit:hover {
    background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.main-footer {
  background: #2c3e50;
	   color: white;
	   padding: 3rem 2rem 1.5rem;
		margin-top: 3rem;
}

.footer-content {
  max-width: 1200px;

		margin: 0 auto;

	  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	        gap: 2.5rem;

	  margin-bottom: 2rem;
}

.footer-section h4  
  {
          font-size: 1.1rem;
   margin-bottom: 1rem;
         font-weight: 700;
}

.footer-logo {
  height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {
                    list-style: none;
     display    :       flex;
   flex-direction:   column;
   gap: 0.8rem;


}

.footer-links a {
   color: #bdc3c7;
   text-decoration     :       none;
   transition: all 0.3s ease;
	font-size: 0.95rem;
}

.footer-links a:hover 
 {
	color: white;
    padding-left: 5px;
}

.footer-section p {
   color: #bdc3c7;
      margin-bottom: 0.5rem;
   	font-size: 0.95rem;
      line-height :      1.6;
}

.footer-section a {
 color  : white;
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover		{
   color     :  #3498db;
}

.footer-bottom {

	  max-width: 1200px;
  margin: 0 auto;
	padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
    color :#7f8c8d;
  font-size: 0.9rem;


     }@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #2c3e50;
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .nav-links.active {
    max-height: 300px;
  }

  .nav-links li {
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero-section {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
  }

  .approach-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .cases-grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem;
  }

  .contact-section {
    padding: 2rem 1.5rem;
  }

  .hero-content h1,
  .approach-section h2,
  .transformation-section h2,
  .contact-section h2,
  .services-overview h2 {
    font-size: 1.8rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links a:hover {
    padding-left: 0;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .navbar-wrapper {
    padding: 0 1rem;
  }

  .services-grid {
    gap: 1.5rem;
  }

  .cta-primary,
  .cta-secondary,
  .cta-booking-btn {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
}.services-header {
	  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
        color   :       white;
         padding: 5rem 2rem;
   text-align     :       center;


}

.services-header-content h1 {
  font-size: 2.8rem;
  margin-bottom   :      1rem;
  font-weight: 700;
   line-height: 1.2;
}

.services-header-content p {
	opacity: 0.95;

	  font-size: 1.15rem;

	   margin: 0 auto;

	   max-width: 600px;
}

.services-detailed {
   max-width: 1200px;
   margin: 0 auto;
                    padding: 4rem 2rem;

}

.service-detail-block {
  display :    grid;
    grid-template-columns: 1fr 1fr;
  gap :   3rem;
  align-items: center;
   margin-bottom: 5rem;
}



.service-detail-reverse 
 {
   grid-template-columns: 1fr 1fr;
}

.service-detail-reverse .service-detail-image {


  order: -1;} 

.service-detail-content h2 {
				 font-size: 2rem;
      color: #2c3e50;
     margin-bottom: 1rem;
      font-weight  :   700;
}

.service-intro {
   font-size: 1.05rem;
   color: #7f8c8d;
  margin-bottom: 1.5rem;
   line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.3rem;
  color: #2c3e50;
   margin: 1.5rem 0 1rem;
	font-weight: 600;
}

.service-detail-content p {
   line-height: 1.8;
  font-size: 0.95rem;
    margin-bottom: 1rem;
   color: #555;
}

.service-benefits {
   list-style     :        none;

    margin: 1rem 0;

   padding-left: 0;
}

.service-benefits li {
  padding: 0.8rem 0 0.8rem 2rem;
   position: relative;
   color: #2c3e50;
   font-weight: 500;
	line-height :    1.6;
}

/* Responsive design */


.service-benefits li:before {
  content: "▸";
  position: absolute;
         left: 0;
  color: #3498db;
    font-size: 1.5rem;
    font-weight: bold; 

}

.service-detail-image img {
  width     :    100%;
     height: auto;
        border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
   transition: transform 0.3s ease;
}  

.service-detail-image img:hover {
  transform: scale(1.03);
}
	/* Typography */

/* Layout styles */
/* Development only */


.pricing-section {
   background: #f8f9fa;
    padding: 4rem 2rem;
    text-align  :        center;

}

.pricing-section h2 {
  font-size: 2.2rem;
  color  :  #2c3e50;
        margin-bottom: 0.5rem;
  font-weight    :   700;
}

.pricing-grid {


  max-width: 1000px;
    margin: 3rem auto 0;
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	 gap: 2rem;


}

.pricing-card  {
    background: white;
  padding: 2.5rem;
   border-radius: 10px;
    border: 2px solid #ecf0f1;
	transition: all 0.3s ease;
   text-align: center;
          position:       relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.pricing-featured {
       border-color: #3498db;
  background: linear-gradient(to bottom, #f8f9fa, #ffffff);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(52, 152, 219, 0.15);

}

.pricing-featured:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 20px 50px rgba(52, 152, 219, 0.25);
}

.pricing-card h3 {
	   font-size : 1.5rem;
  color: #2c3e50;
	 margin-bottom: 0.5rem;
  font-weight: 700;


}

.pricing-description {
    color: #7f8c8d;
    font-size:      0.9rem;
    margin-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
	margin: 1.5rem 0;
   text-align: left;

}

.pricing-features li {
   padding: 0.7rem 0 0.7rem 1.8rem;
   position :        relative;
	color: #555;
  font-size: 0.95rem;
    line-height: 1.5;
}

/* Hack for old browsers */

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
   color   :#27ae60;
	font-weight: bold;
    font-size     :    1.1rem;
	}

.pricing-cta   {
    color: #3498db;
        font-weight :    600;
    margin-top: 1.5rem;
   font-size: 1rem;
}

.pricing-note {
   color : #7f8c8d;
   font-size: 0.95rem;
  margin-top: 2rem;
}

.faq-section {
    max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.faq-section h2 {
   font-size: 2.2rem;
  color: #2c3e50;
    margin-bottom: 2rem;
   text-align: center;
	font-weight: 700;
}

.faq-item
	{
  background: white;
    padding: 1.8rem;
   margin-bottom: 1.5rem;
    border-radius: 8px;
   border-left: 4px solid #3498db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  transform: translateX(5px);
	


}

.faq-question {
  font-size: 1.1rem; 
   color    :      #2c3e50; 
                    margin: 0 0 0.8rem; 
    font-weight: 600; 
	cursor: pointer; 
	user-select: none;
}

.faq-answer {
   color: #555;
		 line-height: 1.8;
	    margin: 0;
	  font-size: 0.95rem;


}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  padding     :4rem 2rem;
         text-align:       center;
}

.cta-section h2 {
	          font-size  :  2rem;
   margin-bottom: 1rem;
       font-weight: 700;
     }

.cta-section p {
  font-size: 1.1rem;
   margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button


{
    display: inline-block;
   background: white;
     color: #3498db;
    padding: 14px 32px;
     border-radius: 6px;
  text-decoration: none;
   font-weight: 700;
	transition: all 0.3s ease;
    font-size :    1rem;
}

.cta-button:hover  
  {
  background: #ecf0f1;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.thankyou-section {
  min-height: 70vh;
  display: flex;
   align-items   :center;
  justify-content    :center;
    padding :3rem 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
}

/* Browser compatibility */

.thankyou-wrapper {
    max-width: 700px;
   text-align: center;
     animation: fadeInScale 0.6s ease-out;
}
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}.thankyou-icon {
  width: 100px;
   height: 100px;
  margin: 0 auto 2rem;
    display : flex;
	align-items: center;
  justify-content    :       center;
  background: #27ae60;
	 border-radius: 50%;
       animation: bounceIn 0.8s ease-out;
}@keyframes bounceIn {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}.thankyou-icon img {
  width: 60px;
    height    :   60px;
  filter: brightness(0) invert(1);


}

.thankyou-section h1
	{
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom  :        1rem;
  font-weight: 700;
}

.thankyou-main {
   font-size: 1.1rem;
   color: #555;
    margin-bottom: 2.5rem;
  line-height: 1.7;
}

.thankyou-content {
    background: white;
         padding: 2.5rem;
   border-radius: 10px;
    margin-bottom: 2.5rem;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}


.thankyou-content h2 {
    font-size :  1.5rem;
         color: #2c3e50;
	margin-bottom: 2rem;
	 text-align: center;
	 font-weight: 600;
}

.next-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
} 

.step   {


  text-align: center;}

.step-number {
	 width: 50px;
   height: 50px;
  margin:     0 auto 1rem;
   background: #3498db;
    color: white;
    border-radius: 50%;
    display: flex;
               align-items: center;
  justify-content: center;
    font-size: 1.5rem;
  font-weight: 700;

}

.step h3 {
   font-size: 1rem;
    color   :#2c3e50;
   margin-bottom: 0.5rem;
                    font-weight: 600;
}

.step p {

    font-size    :      0.9rem;
    color    :     #7f8c8d;
    line-height: 1.5;
	}

.thankyou-info {
    background: white;
   padding: 2rem;
   border-radius: 10px;
   margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.thankyou-info h2 {
   font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.3rem;
    color: #2c3e50; 

}

.thankyou-info p {
    color: #555;

    font-size: 0.95rem;

  margin-bottom: 0.5rem;

}

.thankyou-info a {
        color: #3498db;
     text-decoration: none;
   font-weight: 600;

}

.thankyou-info a:hover		{
     text-decoration: underline;
}

.info-note {

    color: #7f8c8d;
       font-size     :   0.85rem;
  font-style: italic;}

.thankyou-actions

{
    flex-wrap: wrap;
					display    :flex;
  margin-bottom: 2rem;
	justify-content: center;
	 gap:       1rem;


}

.action-button {
  padding: 12px 28px;
                    border-radius  :      6px;
  text-decoration: none;
  font-weight: 600;
    font-size: 0.95rem;
    transition     :all 0.3s ease;
	display   : inline-block;
}

.action-primary     {
	background: #3498db;
	 color: white;
}

.action-primary:hover {
       background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.3);
}



.action-secondary {
	background: white; 
   color: #2c3e50; 
   border: 2px solid #2c3e50;
	
}

.action-secondary:hover {
  background:      #2c3e50;
    color: white;
  transform: translateY(-2px);
	
}

.thankyou-footer {
  color: #555;
    font-size   :  1rem;
    line-height: 1.6;
  font-weight: 500;
}

.additional-info {
  max-width: 1200px;
    margin: 0 auto;
  padding: 3rem 2rem;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.info-card
	{
	 background: white;

	    padding: 2rem;

	    border-radius    : 10px;

	  border: 1px solid #ecf0f1;

	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);

	   transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.info-card h3 {
    font-size: 1.2rem;
  color: #2c3e50;
    margin-bottom: 1rem;
  font-weight: 600;
}

.info-list {
  list-style: none;
    padding: 0;
}

.info-list li {
    padding  :     0.8rem 0 0.8rem 1.8rem;
    position: relative;
   color: #555;
	 font-size: 0.95rem;
    line-height: 1.6;
}

.info-list li:before    {
  content: "•";
  position: absolute;
  left: 0;
    color: #3498db;
  font-weight: bold;
   font-size: 1.2rem;
}@media (max-width: 768px) {
  .services-header-content h1 {
    font-size: 2rem;
  }

  .service-detail-block {
    grid-template-columns: 1fr;
    margin-bottom: 3rem;
  }

  .service-detail-reverse .service-detail-image {
    order: 0;
  }

  .service-detail-content h2 {
    font-size: 1.6rem;
  }

  .pricing-card {
    padding: 1.8rem;
  }

  .pricing-featured {
    transform: scale(1);
  }

  .pricing-featured:hover {
    transform: translateY(-8px) scale(1);
  }

  .faq-section {
    padding: 2rem 1.5rem;
  }

  .cta-section {
    padding: 2.5rem 1.5rem;
  }

  .thankyou-wrapper {
    padding: 1rem;
  }

  .thankyou-section h1 {
    font-size: 1.8rem;
  }

  .next-steps {
    grid-template-columns: 1fr;
  }

  .thankyou-actions {
    flex-direction: column;
    gap: 0.8rem;
  }

  .action-button {
    width: 100%;
    text-align: center;
  }

  .additional-info {
    grid-template-columns: 1fr;
    padding: 2rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .services-header {
    padding: 3rem 1.5rem;
  }

  .services-header-content h1 {
    font-size: 1.5rem;
  }

  .service-detail-content h2 {
    font-size: 1.3rem;
  }

  .service-detail-content h3 {
    font-size: 1.1rem;
  }

  .pricing-grid {
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .faq-item {
    padding: 1.2rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .cta-button {
    width: 100%;
  }
}.policySection

{
  padding: 80px 2rem;
  background:       #f8f9fa;
}

.policyContainer {
      max-width     :     800px;
	 text-align: left;
   margin: 0 auto;
}

.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;
  }
}