* {
    margin: 0;
  padding: 0;
   box-sizing: border-box;
}  

html     {
 scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color     : #2c3e50;
   background-color: #fff;
}

img {
       max-width: 100%;
                    height: auto;
         display: block;}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {

  list-style: none;}

button{
  background: none;
  border: none;
   cursor: pointer;
   font-family: inherit;

}

input, textarea, select {
 font-family    :   inherit;

}

.nav-main {
  background-color: #fff;
         border-bottom: 1px solid #e0e0e0;
    position: sticky;
  top :       0;
    z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}


.nav-container {
    max-width: 1200px;
  margin: 0 auto;
       padding:     0 20px;
    display:    flex;
    justify-content  :    space-between;
   align-items: center;
  height: 70px;
	}

.logo-section 
 {
  flex: 0 0 auto;
}

.nav-logo {
   height: 74px;
   width: auto;
        display: block;
}

.nav-links {
	 display: flex;
	gap: 40px;
  align-items: center;
}

.nav-links a {
   transition: color 0.3s ease;
          color: #2c3e50;
    font-weight: 500;
   position: relative;
    font-size   :   16px;
}

.nav-links a:hover {
    color: #3498db;
}

.nav-links a::after     {


  content: '';
  position: absolute;
  bottom: -5px;
    left   :     0;
      width: 0;
   height: 2px;
   background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-links a:hover::after 
 {
    width: 100%;
}

.burger-menu   {
                       display: none;
   flex-direction: column;
   justify-content: center;
   width: 30px;
    height: 30px;
    gap: 5px;
     }

.burger-menu span {
    transition: all 0.3s ease;
  background-color: #2c3e50;
  width: 100%;
   border-radius:     2px;
    height: 3px;
	
}

.burger-menu.active span:nth-child(1) 
 {

	  transform: rotate(45deg) translate(8px, 8px);
     }

.burger-menu.active span:nth-child(2) {
  opacity:       0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section
{
   max-width: 1200px;
  margin: 0 auto;
    padding: 60px 20px;
	display :       grid;
  grid-template-columns  :     1fr 1fr;
    gap: 40px;
  align-items: center;
}

.hero-content h1 {
          font-size: 48px;
    font-weight: 700;
    line-height :    1.2;
                    margin-bottom:20px;
   color    :    #1a252f;
}

.hero-content p {
  font-size: 18px;
  color: #555;
   margin-bottom:      30px;
    line-height: 1.8;
}  

.cta-button {
   display: inline-block;
  background-color: #3498db;
   color: #fff;
  padding: 14px 32px;
    border-radius   :   4px;
   font-weight   :    600;
    font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
} 

.cta-button:hover
{
   background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
	
}

.hero-image {
	border-radius: 8px;
       overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
   width: 100%;
  height: auto;

}

.features-block   {

  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
       padding: 60px 20px; 

	}

.features-grid {
  max-width: 1200px;
	margin   :0 auto;
   display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap    :     30px;
}

.feature-card {
    background: #fff;
   padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12); 
	
}

.feature-card h3 {
       font-size : 20px;
   font-weight: 600;
          margin-bottom: 15px;
  color: #1a252f;
}

.feature-card p {
  font-size: 15px;
  color: #666;
	line-height: 1.7;
}



.expertise-showcase {
    max-width: 1200px;
  margin: 0 auto;
   padding: 60px 20px;
  display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 50px;
	align-items: center;
}

.expertise-showcase h2 {
    font-size: 36px;
   font-weight: 700;
   margin-bottom: 20px;
    color: #1a252f;


}

.expertise-showcase > div:first-child > p {
  font-size: 16px;
     color: #666;
     margin-bottom: 30px;
   	 line-height: 1.8;
}

.expertise-list {
   list-style: disc; 
  margin-left: 20px;
     }

.expertise-list li
	{
	font-size: 16px;
  color: #2c3e50;
   margin-bottom : 15px;
  line-height: 1.6;
}

.expertise-image {
  border-radius: 8px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.expertise-image img
{
    width    :        100%;
  height: auto;
}

.coaching-methods {
  background-color    :#f9fafb;
  padding: 60px 20px;
}

.coaching-methods h2 {
  font-size: 36px;
    font-weight:     700;
  margin-bottom    :    50px;
   text-align: center;
   color:    #1a252f;
}

.methods-container {
   max-width   :    1200px;
	 margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(3, 1fr);
          gap: 30px;
}

.method-item {
  background    :  #fff;
    border-radius  :8px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.method-item:hover {
  transform: translateY(-5px);
}

.method-item h3   {
       font-size: 20px;
    font-weight: 600;
	padding: 20px 20px 10px;
  color: #1a252f; 
	
}

.method-item p {
    font-size: 15px;
    color: #666;
   padding: 0 20px 20px;
  line-height: 1.7;
}

.method-item img  
  {
  width :       100%;
   height: 250px;
    object-fit: cover;
}

.services-preview {
	max-width: 1200px; 
 margin: 0 auto; 
  padding: 60px 20px;
}

.services-preview h2	{
  text-align    :      center;
    margin-bottom: 50px;
	 font-weight    : 700;
   font-size: 36px;
    color: #1a252f;
}

.services-grid {
	display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-item {
  background    : #fff;
          border  :    1px solid #e0e0e0;
  padding: 30px;
     border-radius: 8px;
       transition: all 0.3s ease;
}

.service-item:hover


{
        border-color: #3498db;
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.15);
}

.service-item h3 {
	font-size: 22px;
   font-weight: 600;
    margin-bottom: 15px;
   color: #1a252f;
}

.service-item p {
  font-size     :   15px;
    color: #666;
         margin-bottom: 20px;
         line-height: 1.7;
}

.service-price {
  display: block;

	  font-size: 18px;

	  font-weight: 700;

	    color    :       #3498db;
}

.testimonials-section    {
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
	padding: 60px 20px;
}

.testimonials-section h2 {
	       font-size: 36px; 
	   font-weight: 700; 
	  margin-bottom: 50px; 
	  text-align: center; 
	  color: #1a252f;

}

.testimonials-container {
     max-width: 1200px;
      margin: 0 auto;
	display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 30px;
}

.testimonial {
   background: #fff;
   padding: 30px;
    border-radius: 8px;
   border-left: 4px solid #3498db;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.testimonial p {
  font-style:      italic;
	 margin-bottom: 20px;
   line-height: 1.8;
         color: #555;
  font-size: 15px;
}


.testimonial-author {
    display: block;
	  font-size :        14px;
	  font-weight  :       600;
		color: #2c3e50; 
	
}

.cta-section {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);

	color: #fff;

   padding: 60px 20px;

   text-align: center;
}

.cta-section h2 {
    font-size: 36px;
   font-weight: 700;
  margin-bottom: 20px; 

	}


.cta-section p {
	 font-size:    18px;
    margin-bottom: 30px;
    line-height: 1.8;
         opacity: 0.95;
}

.cta-button-large {
      display: inline-block;
    background-color  :      #fff;
	 color: #3498db;
    padding  :       16px 36px;
   border-radius :  4px;
   font-weight: 700;
   font-size: 16px;
    transition  :all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.cta-button-large:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

.contact-section {
  max-width: 1200px;
 margin: 0 auto;
  padding: 60px 20px;

}

.contact-section h2 {
  font-size  :     36px;
    font-weight: 700;
   margin-bottom   :50px;
  text-align: center;
  color   :   #1a252f;
}

.contact-container{
  grid-template-columns: 2fr 1fr;
    display: grid;
   gap: 50px;
}

.contact-form {


	 display: flex;
	flex-direction: column;
  gap: 25px;

}

.form-group {
    display   :       flex;
  flex-direction: column;
}

.form-group label {

	  font-weight: 600;
  color: #2c3e50;
    font-size: 14px;
    margin-bottom: 8px;}

.form-group input,
.form-group textarea,
.form-group select {
   border-radius  :4px;
    border: 1px solid #ddd;
    font-size: 15px;
  transition: border-color 0.3s ease;
  padding: 12px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
          outline: none;
    border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-button {
	 background-color: #3498db;
    color  :      #fff;
   padding     :14px 32px;
	border-radius: 4px;
  font-weight  :      600;
         font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer; 

} 

.submit-button:hover {


  background-color: #2980b9;
  transform: translateY(-2px);


}

.contact-info {
    background:    #f9fafb;
   padding: 30px;
    border-radius: 8px;
   height: fit-content;
}

.contact-info h3     {
  font-size: 20px;
                    font-weight: 600;
  margin-bottom: 20px;
   color: #1a252f;
}

.contact-info p {


   margin-bottom: 20px;
    color: #666;
   font-size :   15px;
		 line-height: 1.8;
}

.contact-info a{
   color    :     #3498db;
       font-weight: 600;
}

.footer-main {
	   padding: 50px 20px 20px;
   background-color: #1a252f;
  color: #ecf0f1;

}

.footer-wrapper {
       max-width    :   1200px;
    margin: 0 auto;
   margin-bottom: 30px;
    display: grid;
	 grid-template-columns: 150px 1fr;
   gap   : 50px; 

}

.footer-logo-section {
	flex: 0 0 auto;
}

.footer-logo  
  {
    height: 96px;
    width: auto;
  display: block;
  filter: brightness(0) invert(1);


}

.footer-content {
    display :  grid;
  grid-template-columns: repeat(3, 1fr);
	gap   :   40px;
}

.footer-column h4		{
    font-size: 16px;
	font-weight: 600;
    margin-bottom: 15px;
  color: #fff;
}

.footer-column ul {
                    list-style: none;
}

.footer-column ul li {


	margin-bottom: 10px;

}



.footer-column a {


	color: #bdc3c7;
  transition: color 0.3s ease;
    font-size :      14px;
}

.footer-column a:hover {
                    color: #fff;
} 

.footer-column p    {
   font-size: 14px;

	   color: #bdc3c7;

	   line-height: 1.8; 
	
} 

.footer-bottom {
    border-top: 1px solid #34495e; 
	    padding-top :  20px; 
	   text-align     :  center; 
	          color: #95a5a6; 
	   font-size    :     13px;
}

.cookies-alert {
   position: fixed;
   bottom: 0;
	 left: 0;
    right: 0;
  background-color: #2c3e50;
  color: #ecf0f1;
   padding: 20px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
  display: none;
}

.cookies-alert.show {
  display: block;
   animation :slideUp 0.3s ease;
}@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.cookies-content {
  max-width: 1200px;
	 margin: 0 auto;
	display: flex;
    justify-content: space-between;
	 align-items: center;
  gap: 30px;
}  

.cookies-content h3
	{
    font-size:   16px;
  font-weight: 600;
  margin-bottom: 5px;
	}

.cookies-content p {
   font-size: 14px;

	  color:     #bdc3c7;

	  margin: 0;
}

.cookies-buttons    {
    display    :        flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept,
.cookie-reject,
.cookie-settings {
   padding: 8px 16px;
  border-radius: 4px;
  font-size: 13px;
    font-weight: 600;
    cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept		{
   background-color: #27ae60;
   color: #fff;
}

.cookie-accept:hover {
         background-color: #229954;
}  

.cookie-reject 
 {
   background-color: #e74c3c;
   color: #fff;
}

.cookie-reject:hover {
   background-color: #c0392b;
}

.cookie-settings {
    background-color: #3498db;
  color: #fff;
}

.cookie-settings:hover {
  background-color   :    #2980b9;
}

.cookies-settings-modal {
    position: fixed;
  top: 0;
    left: 0;
  right: 0;
         bottom     :   0;
    z-index: 1000;
   display: none;
}

.cookies-settings-modal[hidden] {
   display: none !important;
}

.modal-overlay {
    position: absolute;
  top: 0;
    left: 0;
	right: 0;
    bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
    background-color: #fff;
     padding: 40px;
  border-radius : 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 400px;
  width: 90%;
	z-index: 1001;
}

.modal-content h3 {
  font-size     :      20px;
	font-weight: 600;
      margin-bottom: 25px;
         color: #2c3e50;
}

.cookie-option {
					display:  flex;
   align-items  :        center;
  margin-bottom: 20px;
	 gap    :        12px; 

}

.cookie-option input[type="checkbox"] {
   width  :18px;
    height: 18px;
   cursor: pointer;
}

.cookie-option label {
   font-size: 14px;
   color: #2c3e50;
   cursor: pointer;

}

.modal-buttons {
      display: flex;
    gap:    10px;
  margin-top: 30px;
}

.modal-save,
.modal-close {
   flex: 1;
   padding: 10px;
  border-radius: 4px;
    font-size: 14px;
   font-weight: 600;
	 cursor: pointer;
    transition :    all 0.3s ease;
}

.modal-save {
    background-color    :     #27ae60;
  color: #fff;
}

.modal-save:hover {
    background-color: #229954;
}

.modal-close    {
    background-color: #ecf0f1;
   color   :   #2c3e50;
}

.modal-close:hover{
   background-color :   #d5dbdb;
}@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-links.active {
        max-height: 300px;
    }

    .nav-links a {
        padding: 12px 0;
        border-bottom: 1px solid #e0e0e0;
    }

    .burger-menu {
        display: flex;
    }

    .hero-section,
    .expertise-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .features-grid,
    .methods-container,
    .testimonials-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .cookies-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookies-buttons {
        width: 100%;
        flex-direction: column;
    }

    .modal-content {
        width: 85%;
        padding: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 15px;
    }

    .cta-button {
        padding: 12px 24px;
        font-size: 14px;
    }

    .contact-section h2,
    .services-preview h2 {
        font-size: 28px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
    }
}.services-hero  {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color  :   #fff;
    padding: 80px 20px;
   text-align: center;
}

.services-hero-content h1 {
    font-size: 48px;
    font-weight: 700;
  margin-bottom    :  20px;
}

.services-hero-content p {

   font-size:18px;
   margin: 0;
   opacity: 0.9;
    line-height: 1.8;
}  

.services-detailed {
   padding: 80px 20px;
		background-color: #fff;
}

/* State modifiers */

.services-detailed-container {
   max-width: 1200px;
  margin: 0 auto;
   display: grid;
     grid-template-columns     :  1fr;
   gap: 60px;


}

.service-detailed-card {
   display: grid;
	 grid-template-columns: 1fr 1fr;
   gap: 50px;
    align-items: center;
	padding: 40px;
               -webkit-border-radius: 8px;
    border-radius: 8px;
   background-color: #f9fafb;
}



.service-detailed-card.alt {
  grid-template-columns: 1fr 1fr;
}

.service-detailed-card.alt .service-card-image {
         order: 2;
}

.service-detailed-card.alt .service-card-content {
    order: 1;


}



.service-card-image {
    border-radius :    8px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-card-image img {
               width: 100%;
	height: 100%;
    object-fit: cover;
}

.service-card-content h2 {
    font-weight     :      700;
  margin-bottom: 20px;
    font-size: 32px;
    color: #1a252f;
}

.service-card-content p {
  font-size: 16px;
   color :#555;
  margin-bottom: 25px;
   line-height: 1.8;


}

.service-details-list h3 {

	    font-weight: 600;
   font-size: 16px;
	color: #2c3e50;
    margin-bottom: 12px;


}

.service-details-list ul {
  margin-bottom: 25px;
                    margin-left: 20px;
   list-style: disc;
}

/* FIXME: IE11 compatibility */



/* Colors and backgrounds */


.service-details-list li	{
   font-size: 15px;
  color: #666;
          margin-bottom: 10px;
    line-height    :1.6;


}

.service-pricing {
  background-color: #fff;
     padding: 20px;
      border-left  :    4px solid #3498db;
     border-radius: 4px;
          margin-bottom: 25px;
       display: flex;
       justify-content: space-between;
     align-items: center;

}

.service-pricing .price {
    font-size: 24px;
      font-weight: 700;
  color: #3498db;
}

.service-pricing .duration	{
  font-size: 14px;
    color: #999;
}

.service-cta {
  display: inline-block;
  background-color: #3498db;
  color: #fff;
   padding: 12px 28px;
 border-radius: 4px;
    font-weight: 600;
  font-size: 15px;
   transition: all 0.3s ease;
   text-decoration: none;
}

.service-cta:hover {
     background-color: #2980b9;
  transform: translateY(-2px); 

}

.services-comparison
{


  max-width: 1200px;
          margin: 0 auto;
    padding: 60px 20px;
	}

.services-comparison h2 {
  font-size: 36px;
    font-weight    :      700;
   margin-bottom: 40px;
  text-align: center;
    color: #1a252f; 

}

.comparison-table {
   background-color: #f9fafb;
  border-radius: 8px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow-x: auto;
}

.comparison-table table {
   border-collapse   :       collapse;
    width  : 100%;
}

.comparison-table thead {
    background-color: #2c3e50;
	color: #fff;
}

.comparison-table th {
  padding: 20px;
			text-align    :left;
   font-weight: 600;
      font-size:      14px;
}

.comparison-table td {
   padding: 18px 20px;

    border-bottom: 1px solid #e0e0e0;

         font-size: 15px;

    color: #555;
}

.comparison-table tbody tr:hover
	{
   background-color: #e8eef5;
}  

.comparison-table tbody tr:last-child td {
	border-bottom:none;
}

.services-faq {
  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
  padding: 60px 20px;

}

/* Component styles */


/* Third-party styles */

.services-faq h2     {
	font-size: 36px;
   font-weight: 700;
    margin-bottom:       50px;
    text-align    :     center;
  color: #1a252f;
}
/* Experimental feature */

.faq-container {
	max-width: 800px;

    margin :      0 auto;

   display: grid;

   grid-template-columns  :     1fr;

   gap     :     20px;
}

.faq-item  
  {
  background: #fff;
	    padding: 25px;
	   border-radius: 8px;
	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
	    cursor :      pointer;
	  transition: all 0.3s ease;
} 

.faq-item:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Layout styles */

.faq-question 
 {
  font-size: 16px;
    font-weight: 600;
    color: #1a252f;
    margin: 0;
   display: flex;
    justify-content: space-between;
    align-items    :  center;
}

.faq-question::after {
  content: '+';
	font-size: 24px;
    color: #3498db;
    transition: transform 0.3s ease;
}
/* Performance critical */


.faq-item.active .faq-question::after {

	  transform: rotate(45deg);

}

.faq-answer {
    font-size  : 15px;
  color: #666;
   margin-top: 15px;
   line-height: 1.8;
   display:none;
}

.faq-item.active .faq-answer {
    display: block;
  animation: slideDown 0.3s ease;
	
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.services-cta {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: #fff;
 padding: 60px 20px;
  text-align: center;
}

.services-cta h2 {
  font-size: 36px;

  font-weight: 700;

	 margin-bottom: 20px;
}

.services-cta p    {
   font-size    :       18px;
       margin-bottom: 30px;
       line-height: 1.8;
}

.thankyou-section {
	min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 100%);
  padding: 60px 20px;
   display: flex;
   align-items: center;
		 justify-content: center;
}

.thankyou-container {
   width: 100%;
   max-width: 900px;
}

.thankyou-card {
    background:#fff;
  border-radius:    12px;
  padding: 60px 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    text-align:   center;
	margin-bottom: 40px;
} 

.success-icon {
    color: #27ae60;
    margin-bottom: 30px;
	 display: inline-block; 
	
}  

.success-icon svg {
    width: 80px;
  height: 80px;
}

.thankyou-card h1 {
    font-size: 42px; 
 font-weight: 700; 
   color: #1a252f; 
    margin-bottom: 10px;
}

.thankyou-subtitle {
   font-size: 20px;
	 color: #555;
    margin-bottom: 30px;
   font-weight: 500;
}

.thankyou-message {
   background-color: #f9fafb;
   padding: 30px;
   border-radius: 8px;
  margin-bottom: 30px; 
	
}

.thankyou-message p {
	font-size: 15px;
   color: #666;
  margin-bottom: 15px;
   line-height: 1.8;
}

.thankyou-message p:last-child {
   margin-bottom: 0;
}


.contact-phone {
  font-weight: 600;
   color: #3498db;
               font-size: 18px;
          margin-bottom: 0 !important;


}

.contact-phone a {
	color: #3498db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-phone a:hover {
   color: #2980b9;
	
}

.thankyou-actions {
	display: flex;
    gap: 20px;
	 justify-content: center;
  margin-top: 30px;
    flex-wrap: wrap;
}

.button-primary,
.button-secondary {
  font-size:      15px;
  transition: all 0.3s ease;
  font-weight: 600;
	padding: 14px 32px;
	text-decoration: none;
  border-radius: 4px;
  display: inline-block;
}

.button-primary		{
       background-color: #3498db;
    color: #fff;

}

.button-primary:hover {
  -moz-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  background-color:      #2980b9;
  transform: translateY(-2px);
  -webkit-transform: translateY(-2px);
}

.button-secondary {
  background-color: #ecf0f1;
       color: #2c3e50;
   border: 2px solid #3498db; 
}

.button-secondary:hover {

   background-color: #3498db;
    color: #fff;}

.next-steps {

	   background: #fff;
    padding: 40px;
  border-radius: 12px;
  margin-bottom    :     30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     }

.next-steps h2 {

	    font-size: 28px;
  font-weight: 700;
  color: #1a252f;
  margin-bottom   :        30px;
    text-align: center;


}



.steps-grid		{
   display: grid; 
  grid-template-columns: repeat(3, 1fr); 
   gap: 30px;
}

.step-item {
  text-align: center;
}

.step-number {
   width: 50px;
   height: 50px;
    background-color: #3498db;
	color: #fff;
    border-radius: 50%;
    display    :   flex;
   align-items    :    center;
   justify-content: center;
   font-size: 24px;
  font-weight: 700;
  margin   :        0 auto 15px;
}


.step-item h3


{
   font-size   : 16px;
    font-weight: 600;
  color: #1a252f;
    margin-bottom: 10px;
}  

.step-item p {
   font-size: 14px;
   color :      #666;
  line-height: 1.6;
          margin: 0;
}

.why-choose    {
	    background: #fff;
   padding: 40px;
    border-radius :12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     }

.why-choose h2 {

	    font-size  :        28px;
                    font-weight: 700;
	color: #1a252f;
    margin-bottom    :    30px;
    text-align   : center;
}

.features-list {
   display :      grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.feature


{
	text-align: center;
}

.feature h3
{
	font-size: 18px;
    font-weight: 600;
    color     :    #1a252f;
   margin-bottom: 10px;
}

.feature p 
 {
    font-size: 14px;
   color: #666;
   line-height: 1.6;
    margin: 0;
}

.faq-section-thankyou {

	  background: linear-gradient(135deg, #ecf0f1 0%, #d5dbdb 100%);
    padding :       60px 20px;}

.faq-section-thankyou h2
	{
     font-size: 36px;
    font-weight: 700;
  margin-bottom: 50px;
               text-align: center;
    color: #1a252f;


}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 32px;
    }

    .service-detailed-card {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px;
    }

    .service-detailed-card.alt .service-card-image {
        order: 1;
    }

    .service-detailed-card.alt .service-card-content {
        order: 2;
    }

    .service-card-content h2 {
        font-size: 24px;
    }

    .steps-grid,
    .features-list {
        grid-template-columns: 1fr;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }

    .thankyou-card {
        padding: 40px 20px;
    }

    .thankyou-card h1 {
        font-size: 32px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
        text-align: center;
    }
}@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 24px;
    }

    .service-card-content h2 {
        font-size: 20px;
    }

    .thankyou-card h1 {
        font-size: 26px;
    }

    .next-steps h2,
    .why-choose h2 {
        font-size: 22px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
}.policy-section {
    padding: 80px 2rem;
  background: #f8f9fa;
  min-height: calc(100vh - 300px);
}

.policy-container {
    margin    :       0 auto;
    text-align: left;
   max-width: 800px; 

}

.policy-container h1 {
    font-size: 2.8rem;
   color: #1a252f;
   margin-bottom :      2rem;
    font-weight: 700;
                    text-align: center;
}

.policy-container h2   {
  font-size: 1.8rem;
	   color: #2c3e50;
	          margin-bottom: 1.2rem;
	    margin-top: 2.5rem;
	   font-weight: 700;
	    padding-bottom: 0.5rem;
	  border-bottom: 2px solid #e0e0e0;
} 

.policy-container p {
  text-align: justify;
  margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.8;
   font-size: 1rem;
}

.policy-container strong {
  color: #1a252f;
    font-weight: 600;
}

.policy-container p:first-of-type {
  margin-top: 1.5rem;}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1.5rem;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .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;
    }

    .policy-container p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
    }
}