* {
    margin: 0;
   padding: 0;
  box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --accent-color: #3498db;
    --secondary-accent: #e74c3c;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --border-color: #bdc3c7;
    --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

html {
   scroll-behavior    :      smooth;
}

body {


  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height     : 1.6;
  color: var(--text-dark);
  background-color: var(--white);

}

.navbar {
    position: sticky;

   top :   0;

  background-color: var(--white);

  box-shadow: var(--shadow);

	z-index: 1000;

  padding: 1rem 0;
}

.nav-container  {
    max-width: 1200px;
    margin: 0 auto;
   padding: 0 2rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
}

.nav-logo-section {
  display: flex;
         align-items: center;
}

.nav-logo  
  {
   height: 74px;
  width: auto;
}

.nav-menu 
 {
   display :   flex;
   list-style: none;
   gap    : 2rem;
} 

.nav-link {

 text-decoration: none;
  color: var(--text-dark);
    font-weight: 500;
  transition: var(--transition);
  position     :relative;
}

.nav-link::after {


  content: '';
    position: absolute;
  bottom: -4px;
    left: 0;
  width: 0;
   height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.burger-menu {
  display: none;
  flex-direction:       column;
   cursor: pointer;
	background: none;
    border: none;
  gap: 6px; 
	
}

.burger-menu span {
   width: 25px;
   height: 3px;
  background-color: var(--text-dark);
    border-radius: 2px;
  transition: var(--transition);
}

.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(8px, -8px);
}

.hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, #34495e 100%);
  color: var(--white);
    padding: 6rem 2rem;
   display: flex;
	align-items: center;
  justify-content: space-between;
   gap: 4rem;
}

.hero-content {
  flex     :      1;
  animation: slideInLeft 0.8s ease;
}

.hero-content h1


{
    margin-bottom: 1.5rem;
     font-size: 3.5rem;
  line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
	opacity    : 0.95;
}

.hero-image {
	flex: 1;
    animation     :  slideInRight 0.8s ease;
	
}

.hero-image img {
   width: 100%;
    height: auto;
   border-radius: 10px;
  box-shadow: var(--shadow);
}

.cta-button {
   display: inline-block;
  background-color: var(--accent-color);
  color: var(--white);
    padding: 1rem 2rem;
   border-radius: 5px;
  text-decoration  :none;
    font-weight: 600;
  transition: var(--transition);
  border: 2px solid var(--accent-color);
}

.cta-button:hover {
   background-color: transparent;
  color: var(--accent-color);
}

.section-wrapper {
    max-width: 1200px;
   margin: 0 auto;
    padding: 0 2rem;
}

.benefits-section {
  padding: 5rem 2rem;
  background-color: var(--light-bg);
}

.benefits-section h2 {
  font-size  :2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  color: var(--text-dark);
	}

.benefits-grid {
     display   :      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
	}

.benefit-card {
  background: var(--white);
    padding: 2rem;
	 border-radius: 8px;
  box-shadow: var(--shadow);
  transition: var(--transition);

}

.benefit-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-card h3 {
  color: var(--accent-color);
    margin-bottom: 1rem;
   font-size: 1.5rem;
}

.benefit-card p {
  color: var(--text-light);
    line-height: 1.8;
}


.coaching-section{
  padding: 5rem 2rem;
}

.coaching-section h2 {
 font-size: 2.5rem;
   margin-bottom: 3rem;
    text-align: center;
  color: var(--text-dark);
}

.coaching-content {
    display: grid;
  grid-template-columns :      1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.coaching-image img   {
	  width: 100%;
	height: auto;
    border-radius: 10px;
  box-shadow: var(--shadow);

}

.coaching-text h3 {
  font-size: 1.8rem;
  color: var(--accent-color);
    margin-bottom: 1rem;
}

.coaching-text p {
  color: var(--text-light);
    margin-bottom: 1rem;
   line-height: 1.8;
}

.workshop-section {
  padding: 5rem 2rem;
  background-color: var(--light-bg);
}

.workshop-section h2 {
  font-size: 2.5rem;
    margin-bottom: 3rem;
  text-align: center;
  color: var(--text-dark);
}

.workshop-content {
   display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
    align-items: center;
}

.workshop-text h3    {
    font-size: 1.8rem;
  color: var(--secondary-accent);
   margin-bottom: 1rem;
}

.workshop-text p {
  color: var(--text-light);
   margin-bottom: 1rem;
   line-height: 1.8;
}

.workshop-image img {
    width  :      100%;
    height: auto;
       border-radius: 10px;
  box-shadow: var(--shadow);
}

.investment-section {
  padding: 5rem 2rem;
}

.investment-section h2 {
   font-size: 2.5rem;
  margin-bottom: 3rem;
    text-align: center;
  color: var(--text-dark);
}

.investment-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
   align-items: center;
}

.investment-image img {
    width: 100%;
   height   :auto;
	border-radius: 10px;
  box-shadow: var(--shadow);
}

.investment-text h3
	{
   font-size: 1.8rem;
  color: var(--accent-color);
 margin-bottom: 1rem;
}

.investment-text p {
  color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.planning-section {
   padding: 5rem 2rem;
  background-color: var(--light-bg);
}

.planning-section h2 {
  font-size: 2.5rem;
   margin-bottom: 3rem;
   text-align: center;
  color: var(--text-dark);

}

.planning-grid {
       display    :  grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap :     2rem;
}

.planning-card {
  background: var(--white);
  padding: 2rem;
         border-radius: 8px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary-accent);
  transition: var(--transition);
}

.planning-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.planning-card h3 {
  color: var(--secondary-accent);
   margin-bottom: 1rem;
    font-size: 1.5rem;
}

.planning-card p {
  color: var(--text-light);
         line-height: 1.8;
}

.training-section {
  padding: 5rem 2rem;
}

.training-section h2{


  font-size: 2.5rem;
  margin-bottom: 3rem;
    text-align: center;
  color: var(--text-dark); 

	}

.training-content {


   display: grid;
       grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;}

.training-image img {
    width: 100%;
    height: auto;
				 border-radius: 10px;
  box-shadow: var(--shadow);
}  

.training-text h3 {
  font-size  :       1.8rem;
     color: var(--accent-color);
       margin-bottom: 1rem;
}

.training-text p {
  color: var(--text-light);
   margin-bottom: 1rem;
   line-height: 1.8;
}

.webinar-section {
       padding: 5rem 2rem; 
	  background-color: var(--light-bg);}

.webinar-section h2 {
  font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
  color: var(--text-dark);
}

.webinar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem; 
	
}

.webinar-item {
  background: var(--white);
    padding: 2rem;
   border-radius: 8px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--accent-color);
  transition: var(--transition);
}


.webinar-item:hover  {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.webinar-item h3 {
     color: var(--primary-color);
   margin-bottom: 1rem;
         font-size: 1.3rem;


}

.webinar-item p {
  color: var(--text-light);
    line-height: 1.8;
}

.cta-section {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
  color: var(--white);
    text-align: center; 

}

.cta-section h2 {
    font-size: 2.5rem; 
	  margin-bottom: 1.5rem;
}

.cta-section p  {
    font-size: 1.1rem;

	    margin-bottom: 2rem;

	   max-width: 600px;

	    margin-left: auto;

	   margin-right: auto;

	  opacity: 0.95;
}

.cta-button-large {

	    display   :    inline-block;
  background-color: var(--white);
  color: var(--accent-color);
  padding: 1.2rem 2.5rem;
    border-radius: 5px;
   text-decoration: none;
	 font-weight: 700;
  font-size: 1.1rem;
  transition: var(--transition);
  border: 2px solid var(--white);}

.cta-button-large:hover {
  background-color: transparent;
  color: var(--white);
}

.contact-section {
  padding     :   5rem 2rem;
  background-color: var(--light-bg);
}

.contact-section h2 {
    font-size: 2.5rem;
     margin-bottom: 3rem;
   	text-align: center;
     color: var(--text-dark);
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
   padding: 2.5rem;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.form-group {
  flex-direction: column;
    margin-bottom: 1.5rem;
    display: flex;
}

.form-group label {
    margin-bottom: 0.5rem;
   font-weight: 600;
  color: var(--text-dark);
	}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.8rem;
  border: 1px solid var(--border-color);
  border-radius: 5px;
    font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-btn {
  background-color: var(--accent-color);
  color: var(--white);
    padding: 1rem 2rem;
    border:none;
  border-radius: 5px;
      font-size: 1rem;
	font-weight: 700;
    cursor: pointer;
  transition: var(--transition);
    width    : 100%;
}

.submit-btn:hover {
   background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
}

.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 3rem 2rem 1rem;
}

.footer-content {
   max-width: 1200px;
    margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr 1fr;
               gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo-img {
  height: 96px;
   width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-info h3,
.footer-links h3{
   margin-bottom: 1rem;
                    font-size: 1.3rem;
}

.footer-info p {
   margin-bottom: 0.5rem;
    line-height: 1.8;
}

.footer-info .address	{
  color: rgba(255, 255, 255, 0.8);
}

.footer-info .phone {

  color: rgba(255, 255, 255, 0.8);

}

.footer-links ul {
    list-style  :        none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
  display: block;
    margin-bottom:        0.5rem;
}

.footer-links a:hover {
  color: var(--accent-color);}

.footer-bottom {
   text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  color: rgba(255, 255, 255, 0.7);
}@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        max-height: 0;
        overflow: hidden;
        transition: var(--transition);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-link {
        padding: 0.8rem 2rem;
    }

    .nav-logo {
        height: 50px;
    }

    .hero {
        flex-direction: column;
        padding: 3rem 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .coaching-content,
    .workshop-content,
    .investment-content,
    .training-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .benefits-grid,
    .planning-grid,
    .webinar-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem;
    }
}@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }

    .benefits-section h2,
    .coaching-section h2,
    .workshop-section h2,
    .investment-section h2,
    .planning-section h2,
    .training-section h2,
    .webinar-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .nav-container {
        padding: 0 1rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-button-large {
        padding: 1rem 2rem;
    }
}.services-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: var(--white);
 padding  :    4rem 2rem;
  text-align: center;
   animation: slideInLeft 0.8s ease;
}

.services-hero .hero-content h1 {
        font-size: 3rem;
   	 margin-bottom: 1rem;
      line-height: 1.2;
}

.services-hero .hero-content p {
   font-size: 1.1rem;
       opacity: 0.95;
   max-width: 700px;
    margin: 0 auto;
}

.services-overview {
   padding: 3rem 2rem;
  background-color: var(--light-bg);
}

.services-overview h2 {
  font-size  :  2.5rem;
    margin-bottom: 2rem;
    text-align: center;
  color: var(--text-dark);
}

.services-tabs {
   display: flex;
  justify-content: center;
  gap: 1rem;
       flex-wrap: wrap;
   margin-bottom: 2rem;
}

.tab-button {
   padding: 0.8rem 1.8rem;
  border: 2px solid var(--accent-color);
  background-color: var(--white);
  color: var(--accent-color);
    font-weight :600;
   cursor :      pointer;
    border-radius: 5px;
  transition: var(--transition);
  font-size :   0.95rem;
}

.tab-button:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

.tab-button.active {
  background-color: var(--accent-color);
  color: var(--white);
}

.services-detail {
    padding:      5rem 2rem;
   display: none;
}

.services-detail.active {
  display: block;
    animation: fadeIn 0.5s ease;
}@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}.service-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 2rem;
}

.service-card {
  background: var(--white);

	  border-radius: 10px;

	  overflow: hidden;

	  box-shadow: var(--shadow);

	  transition: var(--transition);

	    display: flex;

	  flex-direction: column;
}

.service-card:hover

{
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	
}

.service-image {
    width  :   100%;
    height: 280px;
  overflow: hidden;
}

.service-image img {
   width: 100%;
  height: 100%;
   object-fit: cover;
  transition: var(--transition);

}

.service-card:hover .service-image img {
  transform: scale(1.05);
}

.service-info {

	  padding: 2rem;
   flex: 1;
  display   :flex;
   flex-direction: column;
	}



.service-info h3 {
  color: var(--accent-color);
  font-size: 1.5rem;
   margin-bottom: 1rem;
}

.service-info p  
  {
  color: var(--text-light);
        margin-bottom: 1.5rem;
  line-height: 1.8;
   flex: 1;
}

.service-features {
    list-style: none;
	margin-bottom: 1.5rem;
}

.service-features li {
  color: var(--text-dark);
	padding: 0.5rem 0;
  padding-left :     1.5rem;
   position: relative;
}

.service-features li::before {
  content: '✓';
    position: absolute;
    left: 0;
  color: var(--secondary-accent);
  font-weight: bold;
}

.service-price {
    display: block;
 font-size: 1.3rem;
	font-weight: 700;
  color: var(--secondary-accent);
        text-align: right;
}

.services-faq {
		padding: 5rem 2rem;
  background-color: var(--light-bg);
}

.services-faq h2 {
  font-size: 2.5rem;
    margin-bottom: 3rem;
  text-align: center;
  color: var(--text-dark);
}

.faq-container {
   max-width: 900px; 
   margin: 0 auto; 
    display: grid; 
    gap: 1.5rem;
}

.faq-item {
  background: var(--white);
    padding   :2rem;
    border-radius: 8px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--accent-color);
   cursor: pointer;
  transition: var(--transition);
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.faq-item h3 {
  color: var(--text-dark);
   font-size: 1.2rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.faq-item p {
  color: var(--text-light); 
    line-height: 1.8; 
   margin    :  0;
}

.services-cta {
   padding: 4rem 2rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
  color: var(--white);
    text-align: center;
}

.services-cta h2   {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.services-cta p {
   font-size: 1rem;
   margin-bottom: 2rem;
    opacity: 0.95;
         max-width: 600px;
    margin-left: auto;
  margin-right: auto;
}

.thankyou-container {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #f0f4f8 0%, #e8f1f7 100%);
   min-height: 70vh;
  display: flex;
  align-items: center;
   justify-content: center;
}

.thankyou-content {
 max-width: 700px;
  background: var(--white);
   padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   text-align: center;
  animation: slideInUp 0.6s ease;
}@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.success-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
   background-color: #2ecc71;
  color: var(--white);
   font-size: 3rem;
   border-radius: 50%;
	 display: flex;
    align-items: center;
    justify-content: center;
	margin-bottom: 1.5rem;
  font-weight    :    bold;
}  

.thankyou-content h1 {
     font-size: 2.5rem;
  color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.success-message {
  font-size: 1.1rem;
  color: var(--text-light);
    margin-bottom     :  2rem;
}

.confirmation-box {
  background-color: var(--light-bg);
  padding: 2rem;
  border-radius: 10px;
   margin-bottom: 2rem;
   text-align: left;
}

.confirmation-box h2 {
    font-size: 1.5rem;
  color: var(--accent-color);
   margin-bottom: 1.5rem;
}

.info-grid {

    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 1rem;
    margin-bottom: 1.5rem;}

.info-item {
    flex-direction: column;
    display: flex;
}

.info-label     {

		 font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
     }

.info-value {

	  color: var(--text-light);
     }

.message-box	{
  border-top: 1px solid var(--border-color);
  padding-top: 1rem;
   margin-top: 1rem;
}

.message-text {
  background-color: var(--white);
	 padding: 1rem;
         border-radius   : 5px;
  color: var(--text-dark);
  text-align: left;
	 line-height: 1.6;
}

.next-steps {
 background-color: #f8f9fa;
   padding     :  2rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  text-align: left;
}

.next-steps h3 {
  color: var(--text-dark);
   font-size: 1.3rem;
    margin-bottom: 1.5rem;
  text-align: center;
}

.steps-list    {
    list-style     :    none;
}

.steps-list li	{
  display  :      flex;
   gap: 1.5rem;
  margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.steps-list li:last-child {
      border-bottom: none;
  margin-bottom: 0;
}

.step-number
	{
    display: flex;
  align-items: center;
  justify-content: center;
    width: 40px;
    height: 40px;
  background-color: var(--accent-color);
  color: var(--white);
   border-radius: 50%;
   font-weight: bold;
    flex-shrink    :       0;
}

.step-content h4 {
  margin  :   0 0 0.3rem 0;
  color: var(--text-dark);
}

.step-content p {
	margin    :   0;
  color: var(--text-light);
  font-size: 0.9rem;


} 

.action-buttons {
     display: flex;
   gap: 1rem;
   margin-bottom: 2rem;
   justify-content: center; 

	}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
			border-radius: 5px;
	text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
    display: inline-block;
}

.btn-primary {

	  background-color: var(--accent-color); 
  color: var(--white);
}  

.btn-primary:hover {
	 background-color: #2980b9;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}

.btn-secondary:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

.contact-box {
     background-color: var(--light-bg);
    padding   :   1.5rem;
   border-radius: 8px;
  border-left: 4px solid var(--secondary-accent);
	}

.contact-box h3     {
  color: var(--text-dark);
  margin-bottom: 0.5rem;
   font-size: 1.1rem;
}

.contact-box p {
    margin: 0.3rem 0;
  color: var(--text-light);
}

.contact-box a {
  color: var(--accent-color);
  text-decoration     :        none;
  font-weight: 600;
  transition: var(--transition);


}

.contact-box a:hover {
   	text-decoration: underline;
}@media (max-width: 768px) {
    .services-hero .hero-content h1 {
        font-size: 1.8rem;
    }

    .services-overview h2 {
        font-size: 1.8rem;
    }

    .services-tabs {
        gap: 0.5rem;
    }

    .tab-button {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .thankyou-content {
        padding: 2rem 1.5rem;
    }

    .steps-list li {
        gap: 1rem;
    }

    .services-cta h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem 1rem;
    }

    .thankyou-container {
        padding: 2rem 1rem;
        min-height: auto;
    }

    .success-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .confirmation-box,
    .next-steps,
    .contact-box {
        padding: 1rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}.policySection {
   padding: 80px 2rem;
  background-color: var(--light-bg);
	min-height: 70vh;
}

.policyContainer {
	max-width: 900px;
    margin  :       0 auto;
  text-align:left;
  background: var(--white);
   padding: 3rem;
   border-radius: 10px;
  box-shadow: var(--shadow);
}

.policyContainer h1 {
               font-size: 3rem;
  color: var(--text-dark);
   margin-bottom: 2rem;
    font-weight: 700;
}

.policyContainer h2 {
               font-size     :1.8rem;
  color: var(--accent-color);
				 margin-top: 2.5rem;
   margin-bottom: 1.5rem;
   font-weight: 600;
  border-bottom: 2px solid var(--border-color);
    padding-bottom: 0.8rem;
}

.policyContainer p {
     color: var(--text-light);
    margin-bottom: 1.5rem;
  line-height: 1.8;
    font-size: 1rem;


}

.policyContainer p:last-of-type {
  margin-bottom :   0;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 2rem 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 0.5rem;
    }

    .policyContainer {
        padding: 1.5rem;
        border-radius: 5px;
    }

    .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.9rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }
}