* {
  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: #ffffff; 

}

.navbar     {
               background-color: #f8f9fa; 
	   padding  : 1rem 0; 
	  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); 
	  position: sticky; 
	  top: 0; 
	    z-index  :     1000;
}

.nav-container {
  max-width: 1200px;
    margin :      0 auto;
   display: flex;
   justify-content: space-between;
  align-items: center;
  padding   : 0 2rem;
}

.logo-section	{
	    flex :  0 0 auto;
}

.logo {
    display  :     block;
    width   : auto;
	height: 74px;
}

.nav-burger


{
  cursor: pointer;
      background: none;
      flex-direction: column;
     display: none;
       border: none;
      padding: 0.5rem;
}

.nav-burger span {
 width: 25px;
    height: 3px;
   background-color: #2c3e50;
    margin: 5px 0;
  transition: 0.3s;
}

.nav-burger.active span:nth-child(1)		{
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-burger.active span:nth-child(2)


{
    opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {

	  display: flex;
        list-style  :     none;
   gap: 3rem;
     }


.nav-link {
  text-decoration:    none;
    color: #2c3e50;
   font-weight   :        500;
  transition :     color 0.3s ease;
    position: relative;
}

.nav-link::after {
  content: '';
	 position: absolute;
  bottom :       -5px;
          left: 0;
   width     :0;
    height: 2px;
          background-color: #3498db;
  transition: width 0.3s ease;
}

.nav-link:hover {
  color: #3498db; 
	
}

.nav-link:hover::after {
   width: 100%;
}@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #f8f9fa;
        flex-direction: column;
        gap: 1rem;
        padding: 2rem;
        display: none;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-container {
        padding: 0 1rem;
    }
}.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 {
   margin-bottom: 1.5rem;
  font-size: 3rem;
   font-weight     :       700;
  color: #2c3e50;
  line-height: 1.2;
}

.hero-subtitle {
    color: #555;
    margin-bottom     :        2rem;
  line-height: 1.8;
        font-size: 1.1rem;
}

.cta-button {
   display     :       inline-block;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
    padding: 1rem 2.5rem;
               text-decoration: none;
  border-radius: 8px;
	font-weight: 600;
	transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}



.cta-button:hover {

	  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.4);
}

.hero-image img {
     width: 100%;

	  height    :   auto;

	    border-radius:   12px;

	    object-fit: cover;}

.services-overview {
  background-color: #f8f9fa;
               padding: 4rem 2rem; 

}

.services-container		{
   max-width: 1200px;
    margin: 0 auto;
}

.services-overview h2 {
   font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.services-grid    {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card   {
   background: white;
         padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
}

.service-card:hover{

	  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);

}

.service-card h3 {
	font-size: 1.5rem;
   margin-bottom: 1rem;
   color: #2c3e50;
} 

.service-card p {
    color: #666;
    line-height: 1.8;
}

.financial-literacy	{
  padding: 4rem 2rem;
	max-width    :     1200px;
   margin     :   0 auto;
}

.literacy-wrapper {
   display: grid;
  align-items: center;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
}

.literacy-image img     {
  -webkit-border-radius: 12px;
	width: 100%;
  height: auto;
  border-radius:      12px;
		object-fit: cover;
}

.literacy-content h2 {
    font-size     :  2.2rem;

   margin-bottom: 1.5rem;

    color: #2c3e50;
}

.literacy-content p {

	   margin-bottom: 1.5rem;
   color: #666;
  line-height: 1.8;

}

.literacy-list {
  list-style: none;
  padding: 0;
}

.literacy-list li {
     padding: 0.8rem 0;
    color     : #555;
  padding-left: 1.5rem;
         position: relative;
}

.literacy-list li::before {
  content: '▸'; 
  position   :   absolute; 
	 left: 0; 
    color: #3498db; 
          font-weight: bold;
}

.coaching-program {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
	padding: 4rem 2rem;
}

.coaching-container {
    max-width:        1200px;
	margin: 0 auto;
}

.coaching-program h2 {
  font-size: 2.5rem; 
	  text-align: center; 
	  margin-bottom: 3rem; 
	       color : white;
}

.program-timeline {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.timeline-item   {
	  background: rgba(255, 255, 255, 0.1); 
	   padding: 2rem; 
	    border-radius: 10px; 
	  backdrop-filter: blur(10px); 
	  border: 1px solid rgba(255, 255, 255, 0.2);


}

.timeline-item h3 {
    font-size: 1.3rem;
  margin-bottom :       1rem;
}

.timeline-item p {
        line-height: 1.7;
   opacity: 0.95;
}

.investment-strategy {
    padding: 4rem 2rem;
    max-width: 1200px;
   margin: 0 auto;
}

.investment-wrapper
{
    display: grid; 
    grid-template-columns: 1fr 1fr; 
  gap: 3rem; 
   align-items: center;
}

.investment-content h2 {
    font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: #2c3e50;
}

.investment-content p {
 color: #666;
  margin-bottom:    2rem;
  line-height: 1.8;
}  

.secondary-button {
  display: inline-block; 
   background-color: #34495e; 
   color: white; 
    padding: 1rem 2rem; 
      text-decoration :      none; 
    border-radius: 8px; 
  font-weight: 600; 
   transition: all 0.3s ease;
}

.secondary-button:hover {
  background-color: #2c3e50;
  transform: translateX(5px);
}

.investment-image img {
                    width:    100%;
   height: auto;
    border-radius:    12px;
    object-fit: cover;
}

.consultation-cta {
   background-color: #ecf0f1;
   padding: 3rem 2rem;
        text-align: center;
}

.cta-container {
   max-width: 1000px;
  margin: 0 auto;
}

.consultation-cta h2 {
  font-size: 2.2rem;
   margin-bottom: 1.5rem;
  color: #2c3e50;
     }

.consultation-cta p {

   font-size: 1.1rem;
    color: #666;
  margin-bottom: 2rem;
  line-height: 1.8;
     }

.primary-button {

  display  : inline-block;
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
   color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
    font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.primary-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.planning-section {
	    padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;}

.planning-container h2 {
	font-size: 2.5rem;
               text-align: center;
  margin-bottom: 3rem;
   color:      #2c3e50;
}

.planning-grid
{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap   :    2rem;
}  

.planning-item {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    padding: 2rem;
    border-radius: 10px;
               transition: all 0.3s ease;
  border-top: 3px solid #3498db;

}

.planning-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.15);
}

.planning-item h3 {
    font-size: 1.4rem;
  margin-bottom: 1rem;
     color: #2c3e50;
	}

.planning-item p {
          color: #666;
  line-height: 1.8;


}

.office-section {
   padding: 4rem 2rem;
	    background-color   :       #f8f9fa;
	    max-width     :1200px;
	  margin: 0 auto;
}

.office-wrapper {
      display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
 align-items: center;
}

.office-image img {
    width: 100%;
  height: auto;
	border-radius: 12px;
    object-fit: cover;
}

.office-content h2 {
   font-size: 2.2rem;
	 margin-bottom: 1.5rem;
       color  :#2c3e50; 

}

.office-content p {
  color: #666;
   margin-bottom:    1rem;
	 line-height: 1.8;
}

.contact-section {
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
}

.contact-container {

	    max-width: 800px;
  margin: 0 auto;
}

.contact-section h2 {
	          font-size: 2.5rem;
    text-align: center;
  margin-bottom: 2.5rem;
   color: #2c3e50; 

     }

.contact-form {
    background   :   white;
    padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
       margin-bottom: 1.5rem;
}

.form-group label {
    color: #2c3e50;
   display: block;
  margin-bottom: 0.5rem;
  font-weight     :     600;
}

.form-group input,
.form-group select,
.form-group textarea    {
    width :     100%;
   padding: 0.8rem;
    border: 2px solid #ecf0f1;
    border-radius: 6px;
   font-family: inherit;
  font-size: 1rem;
   transition: all 0.3s ease;
}

.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-button {
	width   :        100%;
   padding: 1rem;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color :      white;
      border: none;
  border-radius: 6px;
          font-weight: 600;
  font-size  :    1.1rem;
      cursor: pointer;
   transition: all 0.3s ease;
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.footer-section {
   background-color: #2c3e50;
		color: white;
               padding: 3rem 2rem 1.5rem;
}

.footer-container    {
    max-width: 1200px;
    margin   : 0 auto;
    display: grid;
   grid-template-columns: 1fr 2fr 1.5fr;
    gap: 3rem;
        margin-bottom: 2rem;
}

.footer-logo-img {
    height     :96px;
    width: auto;
   display: block;
  filter: brightness(0) invert(1);
	
}

.footer-address h3,
.footer-contact h3,
.footer-links h3 {
	font-size: 1.1rem;
   margin-bottom   :      1rem;
   color    :    #ecf0f1;
}

.footer-address p,
.footer-contact p {


    line-height: 1.8;
  opacity :      0.9;

     }

.footer-links ul {
   list-style: none;


}

.footer-links li {


   margin-bottom: 0.8rem;
     }

.footer-links a {
          color     :      #ecf0f1;
    text-decoration: none;
   transition: color 0.3s ease; 
	
}

.footer-links a:hover {


		color: #3498db;


}

.footer-bottom {
     text-align     :       center;
    padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   opacity: 0.8; 
	
}

.cookie-alert {
    position: fixed;
    bottom: 0;
   right: 0;
                    background-color: #2c3e50;
  color: white;
  padding: 1.5rem;
    border-radius: 8px 8px 0 0;
   max-width: 400px;
	 z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
                    margin: 1rem;
}

.cookie-content p {
               line-height: 1.6;
   margin-bottom: 1.5rem;
	font-size    :0.95rem;
} 

.cookie-buttons {
     display: flex;
  flex-direction: column;
   gap: 0.8rem;
}

.cookie-btn-accept,
.cookie-btn-decline,
.cookie-btn-settings {
    padding: 0.7rem 1.2rem;
               border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 0.95rem;
	
}

.cookie-btn-accept {
    background-color: #27ae60;
    color: white;
}

.cookie-btn-accept:hover {
   background-color: #229954;
}

.cookie-btn-decline {
					background-color: #e74c3c;

	    color: white; 
	
}

.cookie-btn-decline:hover


{

	   background-color: #c0392b;
	}

.cookie-btn-settings {
  color: white;
    background-color: #3498db;
}

.cookie-btn-settings:hover {
      background-color: #2980b9;


} 

.cookie-settings {
   position: fixed;

	                    bottom: 1rem;

	    right: 1rem;

	    background-color: white;

	    color: #2c3e50;

	  padding: 2rem;

	    border-radius: 8px;

	        max-width: 450px;

	    z-index: 1000;

	  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.cookie-settings-content h3{

	                    margin-bottom  :    1.5rem;
   font-size: 1.3rem;
  color: #2c3e50;}

.cookie-option {

               margin-bottom: 1rem;


}

.cookie-option label {
  display     :    flex;
   align-items: center;
    cursor: pointer;
    font-size: 0.95rem;
}

.cookie-option input[type="checkbox"] {
               margin-right: 0.8rem;
  cursor: pointer;
    width: 18px;
	 height: 18px;
}

.settings-buttons {
  display: flex;
	gap: 0.8rem;
  margin-top:   1.5rem;}

.cookie-btn-save,
.cookie-btn-close {


    flex: 1;
  padding: 0.7rem 1rem;
    border: none;
   border-radius: 6px;
    cursor: pointer;
	 font-weight: 600;
   transition  :    all 0.3s ease;}

.cookie-btn-save {
   background-color: #27ae60;
	 color: white;
}

.cookie-btn-save:hover	{

  background-color    :   #229954;}

.cookie-btn-close {
  background-color: #ecf0f1;
  color: #2c3e50;
}

.cookie-btn-close:hover {
	background-color: #bdc3c7;
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .literacy-wrapper,
    .investment-wrapper,
    .office-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo-img {
        margin: 0 auto;
    }

    .cookie-alert {
        max-width: 90%;
        left: 5%;
        right: 5%;
    }

    .cookie-settings {
        max-width: 90%;
        left: 5%;
        right: 5%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .services-overview h2,
    .coaching-program h2,
    .planning-container h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .cookie-alert {
        border-radius: 0;
        margin: 0;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   color: white;
  padding: 5rem 2rem;
   text-align: center;
}

.services-hero-content {
  max-width: 900px;
        margin: 0 auto;
	
}

.services-hero h1 {
     line-height: 1.2;
   font-size: 3rem;
  font-weight:     700;
    margin-bottom: 1.5rem;
}

.services-hero p {
  line-height : 1.8;
        font-size: 1.2rem;
       opacity: 0.95; 

     }

.service-wrapper {
     max-width: 1200px;
  margin: 0 auto;
	 align-items: center;
  padding: 4rem 2rem;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
    display: grid;
}

.service-wrapper-reverse {
    max-width: 1200px;
   margin: 0 auto;
	 display: grid;
  grid-template-columns: 1fr 1fr;
    gap :     3rem;
   align-items: center;
	padding: 4rem 2rem; 
	
}

.service-image-left img,
.service-image-right img {
    width     :  100%;
 height :auto;
    border-radius: 12px;
   object-fit: cover;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
	
}

.service-content-right h2,
.service-content-left h2 {
  font-size: 2.2rem;
     line-height: 1.3;
       margin-bottom: 1.5rem;
       color: #2c3e50;

}

.service-content-right p,
.service-content-left p {
  color: #666;

   line-height: 1.8;

	margin-bottom: 1.5rem;

  font-size: 1.05rem;
	
}

.service-benefits {
    margin: 2rem 0;
}

.service-benefits h3 {
   font-size: 1.2rem;

  color: #2c3e50;

   margin-bottom: 1rem;

   font-weight: 600;
}

.benefits-list {

  list-style: none;
    padding: 0;
     }


.benefits-list li {
               padding: 0.8rem 0;
          color: #555;
  padding-left: 1.8rem;
   position: relative;
        line-height: 1.7;
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
    left: 0;
    color: #27ae60;
  font-weight: bold;
   font-size: 1.1rem;
}

.service-price {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
  padding: 1.5rem;
 border-radius: 10px;
   margin-top: 2rem;
                    display     :   inline-block;
   text-align: center;
	
	}

.price-label {
  display: block;
  color: #7f8c8d;
   font-size     : 0.9rem;
  margin-bottom: 0.3rem;
}

.price-amount {


    display  : block;

	   font-size: 2rem;

	       font-weight: 700;

	          color    :        #2c3e50;
}

.price-unit {
  display: block;
    color :   #7f8c8d;
    font-size: 0.9rem;
    margin-top :       0.3rem;
} 

.services-comparison   {
  padding: 4rem 2rem;
   background-color: #f8f9fa;
}

.comparison-container
{
   max-width: 1200px;
   margin: 0 auto;
}

.services-comparison h2 {
   font-size: 2.5rem;
  text-align: center;
   margin-bottom: 3rem;
   color: #2c3e50;
}

.comparison-table {
    background: white;
     border-radius: 10px;
      overflow   :        hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.table-header {


       display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr 1fr 1fr;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color  :       white;
   font-weight    :    600;}

.table-cell {
  padding: 1.2rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
	
}

.table-cell:last-child {


   border-right: none; 



}

.table-row


{
  display: grid;
   grid-template-columns: 1.5fr 1fr 1.2fr 1fr 1fr;
	border-bottom: 1px solid #ecf0f1;
          transition: background-color 0.3s ease;
}


.table-row:hover {
    background-color: #f8f9fa;
}

.table-row:last-child    {
                    border-bottom: none;
}

.table-row .table-cell {
    padding: 1.2rem;
    border-right: 1px solid #ecf0f1;
   color: #555;
}

.table-row .table-cell:last-child {
               border-right: none;
}

.service-name {
   font-weight: 600;

	  color: #2c3e50;

}

.services-faq {
	padding: 4rem 2rem;
}

.faq-container {

    max-width: 1100px;
   margin: 0 auto;
     }

.services-faq h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
   color: #2c3e50;
}

.faq-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}


.faq-item     {
  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    padding: 2rem;
               border-radius: 10px;
  border-left: 4px solid #3498db;
    transition: all 0.3s ease;
}

.faq-item:hover{
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.15);
   border-left-color: #e74c3c;
}

.faq-item h3 {
    font-size: 1.1rem;
    color    :        #2c3e50;
    margin-bottom: 1rem;
          font-weight: 600;
}

.faq-item p {
    color: #666;
    line-height  : 1.7;
    font-size: 0.95rem;
}

.services-cta {

	  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
   padding:        3rem 2rem;
  text-align: center;}

.cta-services-container {
    max-width: 900px;
	margin: 0 auto;
}

.services-cta h2 {


    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services-cta p {

	    font-size    :    1.1rem;
                    margin-bottom     :2rem;
	 opacity: 0.95;
  line-height: 1.8;
     }

.cta-services-button {
 display     :    inline-block;
   background: white;
   color    : #e74c3c;
    padding: 1.2rem 3rem;
 text-decoration: none;
  border-radius     :    8px;
   font-weight: 600;
   font-size: 1.1rem;
   transition: all 0.3s ease;


}

.cta-services-button:hover {

  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.thankyou-section {


  min-height: 60vh;
	  display: flex;
	    align-items: center;
	 justify-content: center;
	  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
	 padding: 3rem 2rem;

}

.thankyou-container {
    max-width:     700px;
	text-align: center;
  background: white;
                    padding: 3rem;
  border-radius  : 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
	
}

.thankyou-icon-wrapper {
      margin-bottom:      2rem;
	}

.thankyou-icon {
    width: 100px;
    height: 100px;
  margin   :     0 auto;
  background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
	border-radius: 50%;
  display: flex;
  align-items: center;
   justify-content     : center;
    position: relative;
  box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

.thankyou-icon::before {
  content: '✓';
          color: white;
      font-size: 3rem;
	font-weight: bold;
}

.thankyou-section h1 {
                    font-size   :    2.5rem;
   color: #2c3e50;
   margin-bottom: 0.5rem;
}

.thankyou-subtitle {
  color  : #7f8c8d;
  margin-bottom: 2rem;
   font-size:     1.2rem; 

}

.thankyou-content {
   text-align: left;
    margin: 2rem 0;
}

.thankyou-content p {


    color: #666;
	 line-height :       1.8;
  margin-bottom: 1.5rem;}

.thankyou-info-box {
  background: linear-gradient(135deg, #ecf0f1 0%, #bdc3c7 100%);
    padding: 2rem;
   border-radius: 10px;
          margin: 2rem 0;
}

.thankyou-info-box h2 {
      font-size: 1.5rem;
   color: #2c3e50;
	margin-bottom: 1.5rem;
  text-align: center; 

}

.info-steps
{
        gap: 1.5rem;
  display: grid;
    grid-template-columns: 1fr;
}

.step		{
  grid-template-columns: 60px 1fr;
       display: grid;
		align-items: flex-start;
    gap: 1.5rem;
}

.step-number 
 {
     width: 60px;
    height: 60px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
   border-radius: 50%;
  display: flex;
	align-items: center;
  justify-content  :center;
   font-weight: 700;
	font-size: 1.5rem;}

.step-content h3 {
   margin-bottom: 0.5rem;
   color: #2c3e50;
 font-weight: 600;
  font-size: 1.1rem;
}


.step-content p {
  color: #555;
  line-height: 1.6;
   font-size: 0.95rem;
}

.thankyou-contact-info	{
  background: linear-gradient(135deg, #e8f4f8 0%, #d4e9f7 100%);
	padding: 2rem;
     border-radius: 10px;
   margin: 2rem 0;
    border-left: 4px solid #3498db;
}

.thankyou-contact-info h2 {
    font-size: 1.4rem;
  color: #2c3e50;
    margin-bottom:  1rem;
    text-align: center;
}

.thankyou-contact-info p {
  text-align: center;
    color: #555;
  margin-bottom: 0.5rem;
}

.contact-phone {
	font-size    :1.5rem;
   font-weight     :     700;
     color: #e74c3c;
    margin: 1rem 0 !important;
}

.contact-hours {
    font-size :     0.9rem;
    color: #7f8c8d;
  font-style: italic;
}

.thankyou-buttons {
   grid-template-columns: 1fr 1fr;
    display     : grid;
  margin-top: 2rem;
    gap  :1rem;
} 

.thankyou-button-primary,
.thankyou-button-secondary     {
    padding: 1rem 1.5rem;
    text-decoration: none;
    border-radius:       8px;
    font-weight     :       600;
 transition: all 0.3s ease;
   display: inline-block;
    text-align: center;
}

.thankyou-button-primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: white;
}

.thankyou-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.3);
}

.thankyou-button-secondary {
  background: #ecf0f1;
  color: #2c3e50;
  border: 2px solid #3498db;
}

.thankyou-button-secondary:hover {
    background   :#3498db;
  color: white;
}

.next-steps-section {
    padding: 4rem 2rem;
}


.next-steps-container {
  max-width     :1200px;
  margin   :     0 auto;
}

.next-steps-section h2 {
               font-size: 2.2rem;
   text-align: center;
    margin-bottom: 3rem;
	color: #2c3e50;
}

.next-steps-grid {
	 display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
                       gap: 2rem;
}

.next-step-card {

  background: linear-gradient(135deg, #f8f9fa 0%, #ecf0f1 100%);
    padding: 2rem;
  border-radius: 10px;
  transition: all 0.3s ease;
    border-top: 3px solid #3498db;

}

.next-step-card:hover  {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(52, 152, 219, 0.15);
}

.next-step-card h3 {
    margin-bottom: 1rem;
   color: #2c3e50;
    font-size   :       1.3rem;
    font-weight: 600;
}

.next-step-card p {


    color: #666;
  line-height: 1.7;
       margin-bottom: 1.5rem;
     }



.next-step-card a {
	    display: inline-block;
  color: #3498db;
	text-decoration: none;
  font-weight :        600;
   transition: all 0.3s ease;
    position:   relative;
     }

.next-step-card a::after {
  content: '';
   position: absolute;
	bottom: -3px;
  left: 0;
    width: 0;
   height: 2px;
  background-color: #3498db;
	 transition: width 0.3s ease;
}

.next-step-card a:hover::after  
  {
   width: 100%;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .services-hero p {
        font-size: 1rem;
    }

    .service-wrapper,
    .service-wrapper-reverse {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }

    .table-cell,
    .table-row .table-cell {
        border-right: none;
        border-bottom: 1px solid #ecf0f1;
        padding: 0.8rem;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        padding: 2rem 1.5rem;
    }

    .thankyou-buttons {
        grid-template-columns: 1fr;
    }

    .info-steps {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.5rem;
    }

    .service-content-right h2,
    .service-content-left h2 {
        font-size: 1.6rem;
    }

    .services-comparison h2,
    .services-faq h2 {
        font-size: 1.8rem;
    }

    .thankyou-section h1 {
        font-size: 2rem;
    }

    .thankyou-icon {
        width: 80px;
        height: 80px;
    }

    .thankyou-icon::before {
        font-size: 2.5rem;
    }
}.policySection {
   min-height:       70vh;
    background :    #f8f9fa;
  padding: 80px 2rem;

}

.policyContainer {
   max-width: 900px;
   margin: 0 auto;
   text-align: left;
}

.policyContainer h1 {
          font-size: 3rem;

  color: #2c3e50;

   margin-bottom: 2rem;

               font-weight  :  700;

  line-height: 1.2;
}

.policyContainer h2 {
  font-size:        1.8rem; 
	   color: #2c3e50; 
	    margin-top: 2.5rem; 
	  margin-bottom: 1.2rem; 
	    font-weight   :        600; 
	    padding-bottom: 0.8rem; 
	  border-bottom: 2px solid #3498db;
}

.policyContainer p {
	   color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.8;
	 font-size: 1.05rem;
	text-align: justify;}

.policyContainer p:first-of-type {
    margin-top: 1rem;
     font-size: 1.1rem;
}

.policyContainer h2:first-of-type {
      margin-top: 0;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
        min-height: auto;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 50px 1rem;
    }

    .policyContainer h1 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        text-align: left;
    }
}

@media print {
    .navbar,
    .footer-section {
        display: none;
    }

    .policySection {
        padding: 0;
        background: white;
    }

    .policyContainer h1,
    .policyContainer h2 {
        page-break-after: avoid;
    }

    .policyContainer p {
        page-break-inside: avoid;
    }
}