* {
  box-sizing: border-box;

	    margin: 0;

	   padding: 0;
}

body {
     font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
        line-height: 1.6;
  color: #2c3e50;
  background-color: #f8f9fa;
     }

html {
   scroll-behavior: smooth;
}

.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 4px 20px rgba(102, 126, 234, 0.15);
  position    :      sticky;
  top: 0;
					z-index: 1000;
}

.nav-container {
    max-width: 1200px;
   margin: 0 auto;
               padding: 0 20px;
                    display: flex;
  justify-content: space-between;
   align-items: center;
  height: 70px;
}

.nav-logo img {
	   height: 45px;
          width: auto;
  filter: brightness(0) invert(1);
	
     }

.nav-menu {

  display  :     flex;
  list-style: none;
                    gap: 40px;
  align-items   :        center;
}

.nav-link   {
   color: white;
   text-decoration: none;
  font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-link:after {
  content: '';
   position: absolute;
     left: 0;
   bottom: 0;
	 background: white;
  transition: width 0.3s ease;
	 width   :0;
  height: 2px;
}

.nav-link:hover:after		{
      width: 100%;
}

.burger-menu {
   display: none;
   flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
  gap: 5px;
}

.burger-menu span {
  width: 25px;
    height: 3px;
  background:    white;
  border-radius: 2px;
   transition: all 0.3s ease;
}

.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-section {
   display: grid;
      grid-template-columns: 1fr 1fr;
     gap: 60px;
       align-items: center;
      padding: 100px 20px;
      max-width :   1200px;
       margin: 0 auto;
     background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.hero-content h1	{
      font-size   :   48px;
    line-height: 1.2;
         margin-bottom: 25px;
   color: #2c3e50;
  font-weight: 700;
}

.hero-subtitle {
   font-size: 18px;
  color: #555;
  margin-bottom: 35px;
   line-height: 1.8;
}

.hero-visual img {
    width : 100%;
   height: auto;
   border-radius    :      15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-button{

   display: inline-block;
   padding: 16px 40px;
  border-radius: 8px;
    text-decoration: none;
	font-weight: 600;
  font-size: 16px;
          transition   :   all 0.3s ease;
  border: none;
   cursor: pointer;

}

.cta-button.primary {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);


}

.cta-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.cta-button.secondary     {
  background: white;
  color: #667eea;
   border: 2px solid #667eea;
}

.cta-button.secondary:hover {
    background: #667eea;
  color: white;
}

.intro-section {
         padding: 80px 20px; 
    max-width: 1200px; 
    margin: 0 auto;
}

.section-container {
    max-width: 1200px;
  margin: 0 auto;
}

.intro-section h2
	{
   font-size: 42px;
   margin-bottom: 25px;
    text-align: center;
  color: #2c3e50;
   font-weight: 700;
}

.intro-section > .section-container > p {
    text-align: center;
  font-size: 18px;
	color: #555;
	 margin-bottom: 60px;
   max-width: 800px;
       margin-left: auto;
	margin-right: auto;
     line-height: 1.8;
}

.features-grid {
   display   :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.feature-card {
   background: white;
   padding: 35px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
   border-left: 4px solid #667eea;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
    color     :#2c3e50;
  font-size: 22px;
    margin-bottom: 15px;
	 font-weight    :      600;
	
}

.feature-card p{
  font-size: 15px;
    color: #666;
  line-height: 1.7;
}  

.programs-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
}

.programs-section h2 {
    font-size: 42px;
  margin-bottom: 60px;
   text-align: center;
   color: #2c3e50;
   font-weight: 700;
}

.programs-grid {
		 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 35px;
    max-width: 1200px;
  margin: 0 auto;
}

.program-card {

	  background: white;
   border-radius :        12px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
     }

.program-card:hover  {
  transform: translateY(-8px); 
	  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.program-card img {
   width: 100%;
   height: 220px;
   object-fit: cover;
}

.program-card h3 {
   font-size: 20px;
               padding: 25px 25px 15px;
 color: #2c3e50;
	font-weight:600; 

}

.program-card p {
  padding: 0 25px 20px;
  color: #666;
  font-size  :   15px;
   line-height: 1.6;
}

.program-details {

  display: flex;
    gap: 15px;
  padding: 20px 25px 25px;
  border-top: 1px solid #eee;
    flex-wrap: wrap;}

.detail-item {
  display: inline-block;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
        padding: 8px 16px;
   border-radius: 20px;
    font-size: 13px;
   color   :    #667eea;
   font-weight: 500;
}

.webinar-section {
  padding: 80px 20px;

	  max-width: 1200px;

	    margin: 0 auto;
}

.webinar-section h2 {
					font-size  :    42px;
	margin-bottom: 20px;
   text-align: center;
  color: #2c3e50;
   font-weight: 700;
}

.section-intro {
  text-align: center;
   font-size: 18px;
      color: #555;
    margin-bottom: 50px;
   line-height: 1.8;
}

.webinar-grid {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
}

.webinar-item {
  background: white;
    padding: 40px;
          border-radius: 12px;
				 border:2px solid #e8e8e8;
   transition: all 0.3s ease;
   text-align: center;
}

.webinar-item:hover {
  border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.webinar-item h4	{

  font-size: 20px;
	 margin-bottom: 15px;
  color: #2c3e50;
    font-weight: 600;
	}

.webinar-item p    {
   color: #666;
  line-height: 1.7;
  font-size: 15px;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
   text-align: center; 
	
}

.cta-content {

	  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  font-size: 40px;
    color: white;
   margin-bottom   :    20px;
  font-weight: 700;
}

.cta-section p {
   font-size: 18px;
     color: rgba(255, 255, 255, 0.9);
     margin-bottom: 35px;
       line-height: 1.8;
}

.contact-section {

	 padding   :  80px 20px;
   max-width: 1200px;
   margin: 0 auto;


}

.contact-section h2 {
       font-size: 42px;
		 margin-bottom: 20px;
   text-align  :center;
   color: #2c3e50;
    font-weight: 700;}

.contact-form {
  max-width: 600px;
		margin     :        50px auto 0;
		background: white;
		padding: 45px;
	  border-radius :     12px;
	  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-group {
   margin-bottom: 25px;
}

.contact-form input,
.contact-form textarea,
.contact-form select  {
    width: 100%;
   padding    :      14px 18px;
  border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 15px;
   font-family: inherit;
  transition: all 0.3s ease;
}



.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {

	  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
	}

.submit-button {
    width: 100%;
	padding: 16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color  : white;
    border: none;
  border-radius: 8px;
    font-size: 16px;
   font-weight: 600;
      cursor: pointer;
  transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.footer {
   color: white;
  background: #2c3e50;
   padding  :      60px 20px 20px;
} 

.footer-container     {
   max-width :     1200px;
	margin-bottom: 40px;
               align-items: start;
  display: grid;
  gap: 60px;
          grid-template-columns: 1fr 2fr;
  margin: 0 auto;
}

.footer-logo-img {
   height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
         margin-bottom: 20px;
}

.footer-content {
   display: grid; 
	  grid-template-columns: repeat(3, 1fr); 
	   gap: 40px;
}

.footer-section h4 {
	font-size: 18px;
    margin-bottom :      15px;
  font-weight: 600;}

.footer-section p {
    font-size: 14px;
   line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
    margin-bottom: 10px; 
	
}

.phone-info {
    margin-top: 15px !important;
  color: #667eea;
  font-weight: 600;
}

.footer-links {
    list-style: none; 
	
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
    text-decoration     :    none;
  transition   :       color 0.3s ease;
    font-size: 14px;
}

.footer-links a:hover {
  color   :        #667eea;
}

.footer-bottom {
      text-align:  center;
               padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        gap: 20px;
        padding: 30px 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .intro-section h2,
    .programs-section h2,
    .webinar-section h2,
    .contact-section h2 {
        font-size: 32px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .programs-grid,
    .webinar-grid,
    .features-grid {
        gap: 25px;
    }

    .cta-section h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 14px;
    }

    .intro-section,
    .programs-section,
    .webinar-section,
    .contact-section {
        padding: 50px 15px;
    }

    .feature-card,
    .program-card,
    .webinar-item {
        padding: 25px 20px;
    }

    .contact-form {
        padding: 25px 15px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 20px;
  text-align: center;
  color   :  white;
}

.services-hero-content h1 {
   font-size: 48px;
  margin-bottom: 20px;
    font-weight: 700;
	line-height: 1.2;
}

.services-hero-content p {
   font-size: 20px;
  opacity: 0.95;
  line-height: 1.6;
}

.services-intro {
         padding: 60px 20px;
  background: white;
}

.intro-text {
	    font-size: 18px;
    text-align: center;
    color     : #555;
  max-width: 800px;
   margin: 0 auto;
 line-height: 1.8;
}

.services-grid-section {
   padding: 80px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%); 
	
}

.services-grid-section h2 {
   font-size: 42px;
  margin-bottom  :  50px;
    text-align:   center;
  color: #2c3e50;
   font-weight: 700;
}

.services-categories {
  display     : grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 25px;
    max-width: 1200px;
   margin: 0 auto;
}

.category-item {
    background: white;
    padding: 30px 25px;
  border-radius: 12px;
	text-align     :     center;
    cursor: pointer;
	 transition: all 0.3s ease;
   border: 2px solid transparent;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
} 

.category-item:hover {
   border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.2);
  transform: translateY(-5px);
}

.category-item h3 {
    font-size: 18px;
    color :       #2c3e50;
    font-weight: 600;
          margin: 0; 

}

.detailed-services {
    padding: 80px 20px;
   max-width: 1200px;
  margin: 0 auto;
}

.detailed-services h2 {
   font-size: 42px;
    margin-bottom: 60px;
  text-align: center;
   color: #2c3e50;
   font-weight :    700;
}

.service-detail-block {
    margin-bottom: 60px;
  background: white;
   border-radius: 12px;
	 overflow     :  hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-detail-block.alternate {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
}

.detail-header {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color:       white;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
  align-items: center; 
	
} 

.detail-header h3 {
     margin: 0;
   font-size   :  28px;
   font-weight: 600;
} 

.detail-badge {
  background: rgba(255, 255, 255, 0.2);

	   padding: 8px 16px;

	   border-radius: 20px;

	 font-size: 13px;

	  font-weight: 600;

	   white-space: nowrap;
}

.detail-content    {
  grid-template-columns :   1fr 1fr;
	display: grid;
   gap: 40px;
    padding: 40px;
    align-items: start;
}

.detail-content img {
       width: 100%;
  height    :   auto;
   border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.detail-text h4


{
    font-size: 18px;
               color: #2c3e50;
  margin: 25px 0 15px;
        font-weight :600;
}

.detail-text p {
	  color: #555; 
  line-height: 1.8; 
  font-size : 15px; 
	margin-bottom:     20px;

}

.service-benefits
	{
   list-style: none;
	padding: 0;
	margin: 15px 0 25px;
}

.service-benefits li


{
   padding: 10px 0 10px 30px;
  position: relative;
	color     :       #555;
    font-size: 15px;
   line-height: 1.6;
}

.service-benefits li:before {

	  content: '✓';
      position  :  absolute;
   left: 0;
    color: #667eea;
   font-weight:      bold;
  font-size: 16px;
     }

.service-price{
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  padding: 15px 20px;
  border-radius: 8px;
    color: #667eea;
      font-weight: 600;
   font-size: 16px;
   margin-top: 20px !important;
}

.events-section {
   padding: 80px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
	
}

.events-section .section-container {
	 max-width: 1200px;
          margin: 0 auto; 
	
}

.events-section h2 {
  font-size: 42px;
  margin-bottom    :20px;
   text-align: center;
  color  :        #2c3e50;
	 font-weight: 700;


}

.events-section .section-intro{
    text-align: center;
    font-size: 18px;
   color: #555;
    margin-bottom: 50px;
					line-height: 1.8;
}

.events-grid {
    display     :     grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 30px;
}

.event-card


{
    background  :        white;
    padding: 35px;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
   border-left: 4px solid #667eea;
}

.event-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
	
}

.event-card h4 {
  font-size: 20px;
      color: #2c3e50;
    margin-bottom: 12px;
    font-weight    :      600; 

}

.event-date {
   color: #667eea;
    font-weight: 600;
	font-size  :14px;
  margin-bottom: 12px;
	
}

.event-desc     {
	color: #666;
   font-size: 15px;
  line-height: 1.6;
   margin-bottom: 15px;
}

.event-type {
    display: inline-block;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.15) 0%, rgba(118, 75, 162, 0.15) 100%);
    color: #667eea;
     padding     :   8px 16px;
   border-radius: 6px;
	font-size: 13px;
    font-weight: 600;
}

.event-type.paid {
  background: linear-gradient(135deg, rgba(232, 200, 100, 0.15) 0%, rgba(240, 180, 80, 0.15) 100%);
    color: #d4691e;
}

.comparison-section {
    padding: 80px 20px;
}

.comparison-section h2 {
   font-size :   42px;
   margin-bottom: 50px;
         text-align: center;
    color: #2c3e50;
  font-weight: 700;
}

.comparison-table {
  overflow-x: auto;
      margin   :0 auto;
  max-width   :   1200px;
}

.comparison-table table {
   width: 100%;
                    border-collapse: collapse;
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius :    12px;
    overflow: hidden;
}

.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	   color:white;
}

.comparison-table th     {
    padding: 20px;
  text-align: left;
    font-weight: 600;
        font-size: 15px; 
	
}

.comparison-table td {
    padding   :  18px 20px;
    border-bottom: 1px solid #e8e8e8;
  font-size: 14px;
  color: #555;
}

.comparison-table tbody tr:hover {
  background: rgba(102, 126, 234, 0.05);
}

.comparison-table tbody tr:last-child td {
      border-bottom: none;}

.guarantee-section 
 {

   padding: 80px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.guarantee-section h2 {
  font-size    :       42px;
    margin-bottom: 50px;
    text-align: center;
       color: #2c3e50;
  font-weight: 700;



}

.guarantee-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  max-width   :  1200px;
    margin: 0 auto;
}


.guarantee-item {
   background: white;
    padding: 35px;
               border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
	
}

.guarantee-item h4 {

    font-size: 19px;

  color: #2c3e50;

    margin-bottom   :15px;

  font-weight: 600;




}

.guarantee-item p {
         color: #666;
  font-size: 14px;
	line-height: 1.7;
}

.services-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
    padding: 80px 20px; 
                    margin-top   :       60px;
}

.thank-you-section {
    padding: 60px 20px;
  min-height: calc(100vh - 200px);
    display: flex;
  align-items: center; 
	
}

.thank-you-content {
    text-align: center;
   max-width: 700px;
  margin: 0 auto;

}

.success-icon {
   width: 100px;
        height: 100px;
 border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   font-size: 56px;
    display: flex;
    align-items: center;
      justify-content: center;
   margin: 0 auto 30px;
  font-weight: bold;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
	
}

.thank-you-section h1 {

	    font-size: 48px;
    color  :      #2c3e50;
	margin-bottom: 10px;
  font-weight: 700;

}

.thank-you-section h2

{
    font-size: 28px;
       color: #667eea;
          margin-bottom: 35px;
    font-weight: 600;
}

.thank-you-message 
 {

  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
    padding: 30px;
  border-radius: 12px;
        margin-bottom: 40px;
   border-left: 4px solid #667eea;
	}

.thank-you-message p {
   color: #555;
		font-size: 16px;
   line-height: 1.8;
  margin-bottom :   15px;
}

.thank-you-message p:last-child  {


	margin-bottom: 0;


}

.thank-you-message strong {
   color: #667eea;
   font-weight: 600;
}  

.next-steps {
   text-align: left;

  margin-bottom: 50px;
}

.next-steps h3 {
  font-size: 24px;
   color: #2c3e50;
    margin-bottom: 30px;
    text-align    :      center;
    font-weight: 600;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 25px;
}

.step {
    display: grid;
   grid-template-columns :    60px 1fr;
    gap: 20px;
   align-items: start;
    padding:       25px;
  background   : white;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.step-number {
        width: 60px;
	   height: 60px;
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	    color :        white;
	    border-radius: 50%;
		 display: flex;
	   align-items: center;
	  justify-content: center;
	   font-weight: bold;
		font-size: 24px;
	   flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    color    :     #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
   color: #666;
    font-size: 14px;
  line-height: 1.6;
   margin: 0;
}

.helpful-info    {
        margin-bottom: 50px;
}

.helpful-info h3 {
	   font-size: 24px;
    color: #2c3e50;
   margin-bottom: 30px;
  font-weight: 600;


}

.info-boxes {
    display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
	  gap     :      25px; 
	
}

.info-box {

	  background: white;
    padding  : 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
   border-top :      3px solid #667eea;


}

.info-box h4 {
  margin-bottom: 12px;
	  font-weight: 600;
	    color: #2c3e50;
	   font-size: 18px;
}


.info-box p    {
    color: #666;
  font-size    :   14px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.info-box p:last-child {
   margin-bottom: 0;
}

.contact-phone {
   color: #667eea !important;
   font-weight: 600;
  font-size: 16px !important;
	
}

.info-link {


   display: inline-block;
   color   :#667eea;
      text-decoration: none;
	font-weight: 600;
               margin-top    :10px;
       transition: all 0.3s ease;
	}

.info-link:hover {
  color:      #764ba2;
  transform: translateX(5px);
}

.redirect-timer {
         padding: 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
   border-radius: 8px;
          margin-bottom: 30px;
   color: #667eea;
    font-size:14px;
	 font-weight: 600;
}

.button-group {
        gap: 20px;
  display: flex;
  flex-wrap   :wrap;
  justify-content  :      center;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 36px;
    }

    .detail-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .detail-content {
        grid-template-columns: 1fr;
        padding: 30px 20px;
        gap: 25px;
    }

    .detail-header h3 {
        font-size: 22px;
    }

    .comparison-table {
        font-size: 13px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }

    .thank-you-section {
        padding: 40px 20px;
    }

    .thank-you-section h1 {
        font-size: 36px;
    }

    .thank-you-section h2 {
        font-size: 22px;
    }

    .step {
        grid-template-columns: 1fr;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .button-group {
        flex-direction: column;
    }

    .button-group .cta-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 28px;
    }

    .detailed-services h2,
    .guarantee-section h2,
    .comparison-section h2 {
        font-size: 28px;
    }

    .detail-header {
        padding: 20px;
    }

    .detail-content {
        padding: 20px;
    }

    .thank-you-content {
        padding: 0 10px;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        font-size: 44px;
        margin-bottom: 20px;
    }

    .steps-list {
        grid-template-columns: 1fr;
    }
}.policy-section {
       padding: 80px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
  min-height: calc(100vh - 200px);
     }

.policy-container {
   max-width: 900px;
  margin: 0 auto;
  background: white;
    padding: 60px 50px;
   border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.policy-container h1 {
  font-size:  44px; 
  color: #2c3e50; 
  margin-bottom: 40px; 
    font-weight: 700; 
    line-height: 1.2;

}

.policy-container h2 {
                    font-size: 24px;
  color: #667eea;
   margin-top: 35px;
       margin-bottom: 18px;
    font-weight: 600;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(102, 126, 234, 0.2);
}

.policy-container p {
   color: #555;
  margin-bottom: 16px;
  line-height: 1.8;
  font-size: 16px;
}

.policy-container strong {
	  color: #2c3e50;
    font-weight: 600;

     }

.policy-container ul {
  list-style: none;
  padding: 0;
   margin-bottom: 20px;
}

.policy-container li {
    padding: 10px 0 10px 30px;
   position: relative;
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

.policy-container li:before {
 color: #667eea;
  content: '•';
    left  :     0;
    font-weight: bold;
  position: absolute;
  font-size: 20px;
}

.policy-container h2:first-of-type {
    margin-top: 0;
}  

.policy-container p:last-child 
 {
   margin-bottom: 0;


}@media (max-width: 768px) {
    .policy-section {
        padding: 60px 15px;
    }

    .policy-container {
        padding: 40px 30px;
        border-radius: 10px;
    }

    .policy-container h1 {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .policy-container h2 {
        font-size: 20px;
        margin-top: 28px;
        margin-bottom: 15px;
    }

    .policy-container p {
        font-size: 15px;
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .policy-section {
        padding: 40px 12px;
    }

    .policy-container {
        padding: 30px 20px;
        border-radius: 8px;
    }

    .policy-container h1 {
        font-size: 26px;
        margin-bottom: 25px;
    }

    .policy-container h2 {
        font-size: 18px;
        margin-top: 20px;
        margin-bottom: 12px;
    }

    .policy-container p {
        font-size: 14px;
        margin-bottom: 12px;
        line-height: 1.7;
    }

    .policy-container li {
        padding: 8px 0 8px 25px;
        font-size: 14px;
    }
}