* {

   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: #2c3e50;
   background-color: #ffffff;
}

.site-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);


}

.navigation-bar {
   padding: 0; 

}

.nav-container {
   max-width:      1200px;
	margin     :      0 auto;
  display   :       flex;
		justify-content: space-between;
    align-items: center;
  padding: 15px 20px;
}

.logo-section {
    flex-shrink: 0;
	}

.site-logo {
  height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-links {
   list-style: none;
   display: flex;
  gap: 40px;
    align-items: center;
	
}

.nav-link {
  color: white;
               text-decoration   :    none;
   font-weight: 500;
  font-size: 16px;
		 transition    :        opacity 0.3s ease;
	position: relative;
}

.nav-link:after {
   bottom: -5px;
   height: 2px;
    background: white;
   transition: width 0.3s ease;
  content: '';
    position: absolute;
  left: 0;
       width: 0;

}



.nav-link:hover:after {
    width :100%; 
	
}

.burger-menu {
  display :none;
   flex-direction: column;
    background: none;
   border: none;
  cursor   :   pointer;
  gap: 6px;
}

.burger-line   {
  width: 25px;
    height: 3px;
  background: white;
  border-radius: 3px;
    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(8px, -8px);
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        gap: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
    }

    .nav-links.show {
        max-height: 400px;
        padding: 20px 0;
    }

    .nav-link {
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }

    .nav-link:after {
        display: none;
    }
}.hero-section {
  display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 40px;
	align-items: center;
  max-width: 1200px;
  margin: 0 auto;
   padding: 80px 20px;
}

.hero-content h1    {

   font-size: 48px;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #2c3e50;
   font-weight: 700;
     }

.hero-subtitle {
	 font-size: 18px;
    color: #555;
  margin-bottom: 30px;
	 line-height: 1.6;
}

.cta-button 
 {
	               display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 16px 40px;
    border-radius: 50px;
   text-decoration: none;
  font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.hero-image 
 {
    overflow: hidden;
    border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-img {
   width: 100%;
    height: auto;
    display: block;
}@media (max-width: 768px) {
    .hero-section {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }
}.services-overview {
  background  :      #f8f9fa;
    padding :       80px 20px;
}

.section-header
{
	text-align: center;
    max-width: 600px;
                    margin: 0 auto 60px;
	
	}

.section-header h2		{
	font-size     : 40px;
   font-weight: 700;
   margin-bottom: 15px;
         color  :     #2c3e50;
}

.section-header p     {
   font-size: 18px;
        color: #666;
}

.services-grid {

	    max-width: 1200px;
        gap:   30px;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
    display: grid;
	


} 

.service-card {
  background:    white;
    border-radius    :  15px;
	overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

}

.service-image  {
   height   :    250px;
    overflow: hidden;

}

.service-img {
   width: 100%;
   height :   100%;
               object-fit: cover;
    transition: transform 0.3s ease; 
	
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 22px;
    font-weight : 600;
	 padding: 25px 20px 10px;
  color: #2c3e50;
}

.service-card p {
	padding: 0 20px 25px;
   color: #666;
     line-height: 1.6;
    font-size: 14px;
}@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .services-overview {
        padding: 50px 20px;
    }
}.coaching-section {
   max-width: 1200px;
   margin: 0 auto;
    padding: 80px 20px;
}

.coaching-container {
    display: grid;
  grid-template-columns  :     1fr 1fr;
   gap: 60px;
    align-items: center;
}

.coaching-text h2 {
  font-size    :     36px;
   font-weight: 700;
   margin-bottom: 20px;
	 color: #2c3e50;
}

.coaching-text p {
  font-size: 16px;
    color: #555;
   margin-bottom: 30px;
   line-height: 1.8;
}

.coaching-benefits  {
   list-style: none;
}

.coaching-benefits li {
	 padding-left: 30px;
  padding: 12px 0;
               color: #2c3e50;
    font-size: 16px;
    position  :     relative;
}  

.coaching-benefits li:before {
	  content: '✓';
         position: absolute;
  left: 0;
   color :  #667eea;
   font-weight: bold;
    font-size: 18px;
}

.coaching-image {
		border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
	}

.coaching-img {
    width    :     100%;
    height: auto;
    display: block;

}@media (max-width: 768px) {
    .coaching-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .coaching-text h2 {
        font-size: 28px;
    }

    .coaching-section {
        padding: 50px 20px;
    }
}.cta-section {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         padding: 60px 20px;
    margin: 60px 0;
     }

.cta-container {
  max-width: 700px;
         margin: 0 auto;
   text-align: center;
}

.cta-container h2 {
  font-size    :     40px;
    font-weight: 700;
    color: white;
 margin-bottom     :       15px;
}



.cta-container p {

    font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
   margin-bottom   :   30px;}

.cta-button-secondary {
  display: inline-block; 
	   background:   white; 
	   color: #667eea; 
	    padding: 16px 40px; 
	          border-radius: 50px; 
	               text-decoration: none; 
	  font-weight: 600; 
	  transition    :   transform 0.3s ease, box-shadow 0.3s ease; 
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary:hover {
	  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);}

.contact-section {
       max-width  :      800px;
  margin: 0 auto;
     padding: 80px 20px;


     }

.contact-container h2 {
  font-size: 40px;
   font-weight: 700;
    margin-bottom: 15px;
  color: #2c3e50;
   text-align: center;
}

.contact-intro {
    text-align: center; 
       font-size     :16px; 
    color: #666; 
   margin-bottom: 40px;
}

.contact-form {
   background: #f8f9fa;
 padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-group {
          margin-bottom     :       25px;
}

.form-group label {
  display: block;
		 font-weight: 600;
  margin-bottom: 8px;
	color: #2c3e50;
   font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding    :       12px 15px;
      border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
   font-family: inherit;
   transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus


{
	outline: none;
    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
  resize   :vertical;
  min-height: 120px;
}

.submit-button {
   width: 100%; 
	  padding: 14px 30px; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	  color: white; 
	  border   :  none; 
	         border-radius: 8px; 
	    font-size: 16px; 
	  font-weight: 600; 
	    cursor     : pointer; 
	    transition: transform 0.3s ease, box-shadow 0.3s ease; 
	  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.submit-button:active {
  transform: translateY(0); 

} @media (max-width: 768px) {
    .contact-section {
        padding: 50px 20px;
    }

    .contact-container h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px;
    }
}.site-footer {
	 background: #2c3e50;
    color: white;
 padding: 60px 20px 20px;
 margin-top    :       80px; 

}

.footer-container {
   max-width: 1200px;
  margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap : 40px;
    margin-bottom: 40px;
}

.footer-column {
  display    :      flex;
  flex-direction: column;
          gap: 15px;

}

.footer-column h4 {
   font-size: 16px;
     font-weight: 700;
  margin-bottom: 10px;
    color: white;
}

.footer-logo {
    height: 45px;
	  width: auto;
	  filter: brightness(0) invert(1);
	   margin-bottom: 10px;
}

.footer-links
{
                    list-style    :    none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
        font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.contact-info {
    font-size: 14px;
    line-height    :   1.8;
  color: rgba(255, 255, 255, 0.8);
}

.contact-info p {
               margin: 0;
}

.contact-info .phone {
  color: #667eea;
  margin-top: 10px;
  font-weight: 600;
	
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);

    padding-top: 30px;

  text-align: center;

   font-size: 13px;

  color: rgba(255, 255, 255, 0.6);
	
}@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
    }

    .site-footer {
        padding: 40px 20px 20px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	  padding: 100px 20px;

	    text-align: center;

	    color: white;
}

.services-hero-content h1 {
	  margin-bottom: 15px;
    line-height: 1.2;
         font-size: 48px;
    font-weight: 700;

}

.services-hero-content p  {
  font-size: 18px;
    opacity  :   0.95;
    max-width: 600px;
   margin: 0 auto; 
	
}@media (max-width: 768px) {
    .services-hero {
        padding: 60px 20px;
    }

    .services-hero-content h1 {
        font-size: 32px;
    }

    .services-hero-content p {
        font-size: 16px;
    }
}.services-detailed {
	max-width: 1200px;
      padding: 80px 20px;
  margin    :      0 auto;
}

.services-container {
   display: flex;
       flex-direction: column;
     gap: 80px;
}

.service-detail-card {
    display: grid;
   align-items: center;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
	
}

.service-detail-card.reverse {
   direction: rtl;
} 

.service-detail-card.reverse > * {
	direction: ltr;
}

.service-detail-image {
   border-radius: 15px;
	overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}  

.detail-img {
    width: 100%;
       height    :        auto;
     display: block;
}

.service-detail-content h2 {
   font-size: 36px;
    font-weight: 700;
   margin-bottom: 20px;
    color: #2c3e50; 

}

.service-detail-content > p {
     font-size: 16px;
    color   :  #555;
    margin-bottom: 25px;
  line-height: 1.8;


}

.service-features {
   list-style:        none;
   margin-bottom: 25px;
}

.service-features li {
               font-size: 15px;

  color: #2c3e50;

   padding: 10px 0;

  padding-left: 30px;

    position: relative;
}


.service-features li:before {
  content: '✓';
	position  :     absolute;
       left  :       0;
    color: #667eea;
  font-weight: bold;
	font-size: 18px;
}

.service-duration {
   font-size: 14px;
       color: #888;
  font-style: italic;
  margin-bottom: 20px;
}

.service-cta {
	display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color    :   white;
   padding: 12px 30px;
    border-radius: 50px;
    text-decoration  :      none;
    font-weight: 600;
 font-size: 14px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.service-cta:hover {
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}@media (max-width: 1024px) {
    .service-detail-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-detail-card.reverse {
        direction: ltr;
    }

    .services-container {
        gap: 60px;
    }

    .services-detailed {
        padding: 50px 20px;
    }
}

@media (max-width: 768px) {
    .service-detail-content h2 {
        font-size: 24px;
    }

    .service-detail-content > p {
        font-size: 14px;
    }
}.why-choose-us {
	    background: #f8f9fa;
  padding: 80px 20px;
	}



.why-container {
               max-width    :     1200px;
      margin: 0 auto;
}

.why-choose-us h2 {
    font-size   :        40px;
   font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
  color    :#2c3e50;
}  

.reasons-grid {
    display   :  grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 30px;
}

.reason-card {
    background: white;
   padding: 40px;
  border-radius    :  15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.reason-number {
  font-size: 48px;
  font-weight: 700;
  color:   #667eea;
    margin-bottom     :       15px;
}

.reason-card h3 {
	font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
    color: #2c3e50;
}

.reason-card p {
	    line-height: 1.6;
     font-size: 14px;
     color: #666;


}@media (max-width: 1024px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-us h2 {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .why-choose-us {
        padding: 50px 20px;
    }
}.pricing-section {
  max-width: 1200px;
  margin: 0 auto;
    padding     : 80px 20px;
}  

.pricing-container {
   text-align: center;
}

.pricing-container h2 {
   font-size   :40px;
    font-weight: 700;
   margin-bottom  : 15px;
  color: #2c3e50;
}

.pricing-intro {

  font-size: 18px;
  color: #666;
	margin-bottom: 60px;
}

.pricing-grid
	{
  grid-template-columns: repeat(3, 1fr);
   gap: 30px;
    display: grid;
}

.pricing-card {
	 background: white;
  border: 2px solid #e0e0e0;
    border-radius: 15px;
  padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.pricing-card:hover {
  transform: translateY(-5px);
   border-color :       #667eea;
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured {
  border-color: #667eea;
  box-shadow: 0 10px 40px rgba(102, 126, 234, 0.15);
  transform: scale(1.05);
}

.featured-badge		{


    position: absolute;
  top: -15px;
   left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  padding: 5px 20px;
   border-radius: 20px;
    font-size: 12px;
     font-weight: 600;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 700;
  margin-bottom: 15px;
    color: #2c3e50;
  margin-top: 10px;
}

.price    {
   font-size: 42px;
    font-weight: 700;
   color: #667eea;
   margin-bottom  :     5px;
}

.price-description {
   font-size: 14px;
   color: #999;
   margin-bottom    :  30px; 
	
}

.pricing-features {
	 list-style: none;
  margin-bottom   :  30px;
    text-align:   left;
}

.pricing-features li {


               font-size: 14px;
       color: #555;
       padding: 10px 0;
       border-bottom :1px solid #f0f0f0;


}

.pricing-features li:last-child {
   border-bottom: none;
}@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-container h2 {
        font-size: 28px;
    }

    .pricing-section {
        padding: 50px 20px;
    }

    .price {
        font-size: 32px;
    }
}.cta-section-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 20px;
    margin: 60px 0 0 0;
}

.cta-container-services {
    max-width:700px;
	text-align: center;
   margin: 0 auto;
}

.cta-container-services h2 {
   font-size: 40px;
   font-weight: 700;
    color: white;
         margin-bottom: 15px;
}

.cta-container-services p {
    font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
   margin-bottom: 30px;
}


.thankyou-section {
   min-height: 80vh; 
  display: flex; 
   align-items: center; 
    justify-content: center; 
  padding   :    60px 20px; 
    background   :       #f8f9fa;
}

.thankyou-container    {
   max-width: 600px;
  background   :     white;
  border-radius: 20px;
   padding: 60px 40px;
   text-align: center;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.success-icon


{
	 width: 80px;
   height: 80px;
		 margin:        0 auto 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
       border-radius   :      50%;
	 display: flex;
  align-items: center;
   justify-content: center;
  position: relative;
}

.checkmark {
    width: 40px;
    height: 40px;
    position: relative;
}

.checkmark:after {
  content: '✓';
    color: white;
  font-size: 48px;
  font-weight: bold;
   line-height: 40px;
}



.thankyou-container h1 {
    font-size: 40px;
               font-weight    :      700;
   margin-bottom: 15px;
  color: #2c3e50;


	}

.thankyou-message {
  font-size: 18px;
  color: #667eea;
  font-weight: 600;
	margin-bottom: 30px;
	
}

.thankyou-content  {
   text-align: left;
  margin: 40px 0;
    padding: 30px;
	 background: #f8f9fa;
    border-radius: 12px;
}

.thankyou-content p {
	font-size: 15px;

	    color :   #555;

		margin-bottom: 15px;

	    line-height: 1.6;
}

.next-steps  {
  list-style: none;
  margin: 20px 0;
  padding-left: 0;
}

.next-steps li {
   font-size: 15px;
      color: #2c3e50;
  padding: 10px 0;
   padding-left:   30px;
		position: relative;
}

.next-steps li:before		{
  content: '→';
   position: absolute;
	left: 0;
  color: #667eea;
	font-weight    :        bold;
	}

.contact-reference {
    -moz-border-radius: 8px;
   padding: 20px;
  -webkit-border-radius: 8px;
  background  :  white;
  border-radius: 8px;
    border: 2px dashed #667eea;
    margin     :     20px 0;
}

.reference-number {
  font-size: 18px;
  font-weight   :    700;
    color: #667eea;
  font-family: 'Courier New', monospace;
   margin : 0;
   letter-spacing: 2px;

}

.thankyou-actions {
     display: grid;
  grid-template-columns: 1fr 1fr;
	gap  :     15px;
    margin: 40px 0;}

.button-primary {
    display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding: 14px 30px;
   border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4); 
	
}

.button-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.6);
}

.button-secondary    {
   display  : inline-block;
		text-decoration: none;
       font-weight: 600;
    border: 2px solid #667eea;
    border-radius: 8px;
   background   : white;
   color: #667eea;
  transition: all 0.3s ease;
   padding: 14px 30px;
	
}

.button-secondary:hover {
	  background: #667eea;
  color: white;
  transform: translateY(-2px);
	
}

.faq-preview {
    background: #f8f9fa;
  padding: 30px;
				 border-radius: 12px;
    margin-top: 40px;
  text-align: left;
}

.faq-preview h3
{
    margin-bottom: 25px;
   font-size: 20px;
    text-align: center;
   font-weight: 700;
   color: #2c3e50;
}

.faq-items {
  gap: 20px;
  display: flex;
   flex-direction: column;
}

.faq-item h4 {
   font-size: 15px;
   font-weight     : 600;
	 color: #667eea;
  margin-bottom: 8px;
}  

.faq-item p		{
   font-size: 14px;
	color: #666;
   line-height    :       1.6;
    margin: 0;


}@media (max-width: 768px) {
    .thankyou-container {
        padding: 40px 20px;
    }

    .thankyou-container h1 {
        font-size: 28px;
    }

    .thankyou-actions {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 20px;
    }

    .faq-preview {
        padding: 20px;
    }
}.policy-section {
   padding     :  80px 2rem;
   background: #f8f9fa;
        min-height: 70vh;
}

.policy-container {


  max-width:800px;
   margin: 0 auto;
   text-align:  left;


}

.policy-container h1 {
   color  :#2c3e50;
    line-height: 1.2;
    font-weight: 700;
    font-size     :    3rem;
    margin-bottom: 40px;
}

.policy-container h2 {
  font-size  :  1.8rem;
   font-weight: 700;
  color: #2c3e50;
   margin-bottom: 15px;
  margin-top: 30px;
    position: relative;
   padding-bottom: 10px;
}

.policy-container h2:before {
  content: '';
   position: absolute;
  bottom: 0;
   left:   0;
    width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
   border-radius: 2px;
}

.policy-container p {
   font-size: 1rem;
   margin-bottom: 1.5rem;
    color: #555;
  text-align: justify;
  line-height: 1.8;
}

.policy-container p:last-of-type {
          margin-bottom: 0;
}

.policy-container > p:first-of-type  
  {


   font-size: 1.1rem;
   color: #666;


}

.policy-container a {
	color:   #667eea;
         text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.policy-container a:hover {
      color: #764ba2; 
          text-decoration: underline;
}@media (max-width: 1024px) {
    .policy-section {
        padding: 70px 1.5rem;
    }

    .policy-container h1 {
        font-size: 2.5rem;
    }

    .policy-container h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .policy-section {
        padding: 60px 1rem;
        min-height: auto;
    }

    .policy-container {
        max-width: 100%;
    }

    .policy-container h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policy-container h2 {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 12px;
    }

    .policy-container p {
        font-size: 0.95rem;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 50px 0.75rem;
    }

    .policy-container h1 {
        font-size: 1.6rem;
        margin-bottom: 25px;
    }

    .policy-container h2 {
        font-size: 1.2rem;
        margin-top: 20px;
    }

    .policy-container p {
        font-size: 0.9rem;
    }
}

@media print {
    .site-header,
    .site-footer {
        display: none;
    }

    .policy-section {
        background: white;
        padding: 0;
    }

    .policy-container h1,
    .policy-container h2 {
        page-break-after: avoid;
    }

    .policy-container p {
        page-break-inside: avoid;
    }
}