* {
  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: #f8f9fa;

     }



.header-main {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  position: sticky;
   top: 0;
    z-index:    1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}  

.navbar-container {
   max-width: 1200px;
   margin: 0 auto;
    padding  :   0 20px;
}

.nav-wrapper {
  display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-link {
   display: flex;
  align-items: center;
}

.logo-image {
   height: 45px;
	width: auto;
  filter: brightness(0) invert(1);
}

.burger-menu {
             display    :     none;
 flex-direction: column;
    background: none;
     border: none;
    cursor: pointer;
  padding: 10px;

}

.burger-line 
 {
   width   :        25px;
    height: 3px;
                    background-color:  white;
     margin: 5px 0;
  transition :       all 0.3s ease;
}

.nav-menu {
	    display: flex;
  list-style: none;
    gap: 30px;


}

.nav-item a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s ease;
				 font-size: 16px;
}

.nav-item a:hover {
    opacity: 0.8;
}

.hero-section {
    display  :grid;
       grid-template-columns :       1fr 1fr;
  align-items: center;
   gap    : 50px;
  max-width: 1200px;
  margin: 0 auto;
	 padding: 80px 20px;
   min-height: 600px;
}



.hero-content h1 {
  font-size: 52px;
    line-height: 1.2;
  margin-bottom: 20px;
   color: #2c3e50;
  font-weight: 700;


}

.hero-subtitle {

  font-size: 18px;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.8;
	}

.cta-button {
	display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
      font-weight: 600;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border     :none;
  cursor: pointer;
   font-size: 16px;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.hero-image img {
    width   :   100%;
          height: auto;
                    border-radius: 15px;
  object-fit: cover;
}

.services-preview {
    padding: 80px 20px;
  background-color: white;
}

.services-container {
	max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
  font-size: 42px;
  margin-bottom: 15px;
			color: #2c3e50;
   font-weight   :   700;
}

.services-header p {
  font-size :        18px;
    color: #666;
}

.services-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
 gap: 30px;
	}

.service-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  padding: 40px 30px;
    border-radius: 12px;
                    transition:        all 0.3s ease;
  border-left: 4px solid #667eea;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 600;
}

.service-card p {


    color: #555;
   line-height: 1.8;
	 font-size: 15px;

}

.features-section {
	padding: 80px 20px;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);}

.features-wrapper {
  max-width: 1200px;
      margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 40px;
}

.feature-item {
               flex-direction: column;
  display: flex;
  gap: 20px;
}

.feature-item img {
  width: 100%;
	   height: 280px;
	   object-fit: cover;
	                    border-radius    :      12px;
}

.feature-text h3 {
	  font-size: 24px;
	color: #2c3e50;
    margin-bottom: 10px;
  font-weight: 600;
}

.feature-text p {
	 color: #666;
    line-height: 1.8;
   font-size     :        16px;
}

.benefits-section {
    background-color: white;
   padding: 80px 20px;
}

.benefits-container {
   max-width: 1200px;
   margin: 0 auto;
}


.benefits-container h2 {
	font-size   :       42px;
	text-align  :  center;
	margin-bottom: 60px;
    color: #2c3e50;
   font-weight    :        700;

}

.benefits-list {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px; 

}

.benefit-item {
     padding: 30px;
  background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
   border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.2);
  transition: all 0.3s ease;
}

.benefit-item:hover {
   border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
	
}

.benefit-item h4

{
		 font-size:        20px;
    color: #667eea;
  margin-bottom :   12px;
    font-weight: 600;
}

.benefit-item p {
     color: #666;
    line-height: 1.8;
   font-size: 15px;
}

.training-image-section{
  position     :      relative;
    height: 500px;
                    background-size: cover;
  background-position: center;
     display: flex;
    align-items :    center;
   justify-content: center;
  overflow: hidden;
}

.training-image-section img {
  position: absolute;
  width: 100%;
	 height: 100%;
		 object-fit: cover;
       z-index: 1;
}

.training-overlay {
	   position: absolute;
    z-index: 2;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.5);
          padding: 40px;
    border-radius   :      12px;


}

.training-overlay h2 {
    font-size: 42px;
   margin-bottom: 15px;
  font-weight: 700;
}

.training-overlay p {
   font-size: 18px;
 line-height: 1.8;
   max-width: 600px;
}

.cta-section {
    padding   :       80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               color: white;
   text-align: center;
}

.cta-wrapper {
   max-width   :      800px;
  margin: 0 auto;
}

.cta-wrapper h2   {
	font-size  : 42px;
    margin-bottom:        20px;
   font-weight: 700;
}

.cta-wrapper p
	{
		font-size: 18px;
    margin-bottom: 30px;
  line-height: 1.8;
    opacity:  0.95;
	}

.cta-button-large {
    display    : inline-block;
  background: white;
   color: #667eea;
	padding   :  18px 50px;
  border-radius: 50px;
                    text-decoration: none;
  font-weight: 700;
	 transition: all 0.3s ease;
    font-size :      16px;
}

.cta-button-large:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.contact-section {
    padding   :80px 20px;
   background-color: white;
}

.contact-container {
   max-width: 700px;
  margin: 0 auto;
}

.contact-container h2
	{
	font-size: 42px;

		text-align: center;

	   margin-bottom: 15px;

	  color  :        #2c3e50;

	   font-weight   :700;
}

.contact-description {
   text-align: center;
	color: #666;
  margin-bottom: 40px;
   font-size: 16px;
}

.contact-form 
 {
   display: flex;
   flex-direction: column;
   gap: 25px;
}

.form-group     {
          display: flex;
  flex-direction: column;
}

.form-group label {
               font-weight :      600;
    margin-bottom: 8px;
  color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 15px; 
	    transition: all 0.3s ease; 
	        border: 2px solid #e0e0e0; 
	   font-size: 15px; 
	   border-radius: 8px; 
	   font-family   :   inherit; 
	   background-color: #f9f9f9;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {

	    outline: none;
    border-color   :      #667eea;
    background-color :       white;
  box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);}

.form-group textarea {
    resize: vertical;
    font-family: inherit;
}  

.submit-button
{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding   :18px;
        border: none;
    border-radius: 8px;
   font-size: 16px;
      font-weight: 700;
    cursor: pointer;
   transition: all 0.3s ease;
  margin-top: 10px; 
	
}

.submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.footer-main {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	   color: white;
	  padding:      60px 20px 20px;
}

.footer-container

{
		max-width  : 1200px;
      margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 40px;
	margin-bottom: 40px;
}

.footer-section h4 {

	  font-size: 18px;
   margin-bottom :        20px;
    font-weight: 700;
    color: white;
     }

.footer-logo-image {
   height: 45px;
	width: auto;
   margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-desc {
                    color: #bdc3c7;
   line-height: 1.8;
	font-size: 15px;
}

.footer-links {


     list-style: none;
    display: flex;
	 flex-direction: column;
	 gap: 10px;


}

.footer-links a  {
        color: #bdc3c7;
	text-decoration :  none;
	transition: color 0.3s ease;
    font-size: 15px;
}

.footer-links a:hover	{
   color: #667eea;


}

.footer-section p {
    color: #bdc3c7;
   line-height: 1.8;
  font-size: 15px;
 margin-bottom: 10px;
}

.footer-section a {
   transition: color 0.3s ease;
  text-decoration: none;
   color: #667eea;}

.footer-section a:hover {
      color: #764ba2;
}

.footer-bottom {
          text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #95a5a6;
    font-size: 14px; 
	
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-item a {
        display: block;
        padding: 15px 20px;
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 50px 20px;
        gap: 30px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .features-wrapper {
        grid-template-columns: 1fr;
    }

    .benefits-list {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .training-overlay {
        padding: 20px;
    }

    .training-overlay h2 {
        font-size: 28px;
    }

    .training-overlay p {
        font-size: 15px;
    }

    .cta-wrapper h2 {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .services-header h2 {
        font-size: 32px;
    }

    .cta-button,
    .cta-button-large {
        padding: 12px 30px;
        font-size: 14px;
    }

    .contact-container h2 {
        font-size: 32px;
    }

    .service-card {
        padding: 25px 20px;
    }

    .benefit-item {
        padding: 20px;
    }
}.services-hero 
 {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding    :  100px 20px;
     text-align    :  center;
  color: white; 

}

.services-hero-content h1 {
  font-size     :   52px;
   margin-bottom     :   15px;
   font-weight  : 700;
  line-height: 1.2;
}

.services-hero-content p {
	 font-size: 20px;
	opacity   :      0.95;
  line-height     :   1.6;
}

.service-detailed{


    padding    :        80px 20px;
   background-color: white;

}

.service-detailed-container {
    max-width: 1200px;
	margin: 0 auto;
}

.service-item-full {
	display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
   align-items: start;
   margin-bottom: 80px;
    padding-bottom: 80px;
   border-bottom    :  2px solid #f0f0f0;
}

.service-item-full:last-child {
  border-bottom: none;
  margin-bottom     :   0;
    padding-bottom: 0;
}

.service-item-image img {


    width: 100%;
   height: 400px;
  object-fit: cover;
    border-radius: 15px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);}

.service-item-content h2	{
  font-size: 36px;
    color: #2c3e50;
      margin-bottom     :   20px;
   font-weight: 700;
}

.service-intro {
  margin-bottom     : 30px;
		line-height: 1.8;
	  color: #555;
	   font-size :  18px;
}

.service-details {
          margin-bottom    :   30px;
}

.service-details h3     {
  font-size: 20px;
  color: #667eea;
	 margin-bottom: 15px;
  font-weight: 600;
}

.service-list {
    margin: 0;
    list-style: none;
  padding: 0;
}

.service-list li {
   padding  :     10px 0 10px 30px;
    position: relative;
   color: #555;
   line-height: 1.8;
			font-size: 15px;
}

.service-list li:before {
	  content: "✓"; 
	   position: absolute; 
	    left: 0; 
	    color: #667eea; 
		font-weight   :   bold; 
	  font-size :  18px;


}

.service-benefits {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   padding: 25px;
  border-radius: 12px;
  margin-bottom: 30px;
}

.service-benefits h3 {
	font-size: 18px;
  color: #2c3e50;
   margin-bottom: 12px;
	font-weight: 600;
}

.service-benefits p {


	 color: #555; 
	line-height: 1.8; 
  font-size: 15px; 
  margin:        0;
}

.service-info {

    display :        grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;}

.info-box{
   display: flex;
  justify-content: space-between;
   padding: 15px;
    background-color: #f9f9f9;
  border-radius     :        8px;
  border-left: 4px solid #667eea;
}

.info-label {
  font-weight: 600;
   color: #2c3e50;
    font-size: 14px;
}

.info-value {
  color: #667eea;
  font-weight: 700;
       font-size: 14px;
}

.service-comparison {
    padding: 80px 20px;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
}

.comparison-container {
	   max-width: 1200px;
	margin: 0 auto;
     }



.comparison-container h2 {
    font-size  :     42px;
  text-align: center;
   color: #2c3e50;
   margin-bottom: 60px;
    font-weight    :        700;
} 

.comparison-table {
        overflow-x: auto;
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

table {
    width: 100%;
   border-collapse: collapse; 

}

table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

table th {
  padding: 20px;
	 font-size: 15px;
  text-align: left;
    font-weight: 700;
}

table td {
   padding: 20px;
	 border-bottom   : 1px solid #f0f0f0;
    font-size: 15px;
	color: #555;
}

table tbody tr:hover {
		background-color: #f9f9f9;
}

table td.highlight  
  {
               background-color: #e8f4f8;
	 color: #667eea;
    font-weight    :    600;
}

.faq-services     {
    padding: 80px 20px;
	background-color: white;
}

.faq-container {
   max-width: 1200px;
   margin   :  0 auto;
}



.faq-container h2 {
  font-size: 42px;
    text-align: center;
  color: #2c3e50;
   margin-bottom: 60px;
  font-weight: 700;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.faq-item {
   padding: 30px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	 border-radius: 12px;
   border-left    :       4px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question
	{
   font-size: 18px;
          color: #2c3e50;
  margin-bottom: 15px;
       font-weight: 600;
}

.faq-answer {
	   color: #555;
       line-height: 1.8;
  font-size: 15px;
  margin: 0;
}

.service-cta {
	 padding :80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
   text-align    :center;
}

.service-cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.service-cta-content h2 {
	font-size: 42px;
   margin-bottom :20px;
  font-weight: 700;
}

.service-cta-content p {
   font-size  :      18px;

	  margin-bottom: 40px;

	   line-height: 1.8;

	   opacity: 0.95;
}  

.cta-button-primary

{
   -moz-transition: all 0.3s ease;
               display     :      inline-block;
   background: white;
    color: #667eea;
  padding: 18px 50px;
    border-radius: 50px;
   -moz-border-radius: 50px;
   -o-transition     :   all 0.3s ease;
    text-decoration: none;
  font-weight: 700;
	transition: all 0.3s ease;
  font-size: 16px;
}

.cta-button-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);


}

.thankyou-section {
	 padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
   min-height: 600px;
  display: flex;
    align-items: center;
}

.thankyou-container {
  max-width: 1200px;
	margin: 0 auto;
   width   :        100%;
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
	align-items: center;
}

.thankyou-content 
 {
  display    : flex;
  flex-direction  :        column;
}

.success-icon {
				 width: 100px;
    height: 100px;
    margin-bottom: 30px;
}

.success-icon svg {
    width: 100%;

   height: 100%;

    animation: scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-content h1 {


  font-size: 48px;
   color     :       #2c3e50;
  margin-bottom: 15px;
   font-weight: 700;}

.thankyou-message   {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 30px;
  color: #667eea;
} 

.thankyou-details {
    font-size: 15px;
  color: #555;
    line-height: 1.8;
   margin-bottom: 30px;

}

.thankyou-details p		{
    margin-bottom: 15px;
}

.thankyou-info-box {
   background: white;
  padding    :       30px;
  border-radius: 12px;
  border-left: 4px solid #667eea;
    margin-bottom: 30px;
}

.thankyou-info-box h3 
 {
  font-size: 18px;
   color: #2c3e50;
   margin-bottom: 20px;
   font-weight: 600;
}



.next-steps {
   list-style: none;
   padding     :        0;
     margin: 0;
}

.next-steps li {
  padding: 10px 0 10px 30px;
  position: relative;
    color: #555;
  line-height: 1.8;
        font-size: 15px;}

.next-steps li:before {
  content: "→";
	position: absolute;
    left: 0;
  color: #667eea;
   font-weight: bold;
   font-size: 18px;
	}

.thankyou-actions {
   display: flex;
  gap: 15px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
  border-radius: 50px;
   text-decoration: none;
  font-weight   : 700;
   transition: all 0.3s ease;
	 font-size: 15px;
         display: inline-block;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}  

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
  background: white;
   color:        #667eea;
               border: 2px solid #667eea;


}



.btn-secondary:hover {
		 background: #667eea; 
	    color    :       white; 
	  transform: translateY(-3px);
}

.thankyou-illustration img{
      width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-info-section {
    padding: 80px 20px;
   background-color: white;
} 

.contact-info-container {
  max-width: 1200px;
   margin: 0 auto;
}  

.contact-info-container h2 {
               font-size: 42px;
   text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
   font-weight: 700;
}

.contact-methods
	{
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	   gap: 40px;
}

.contact-method {
	 padding: 40px;
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
       border-radius: 12px;
  border: 1px solid rgba(102, 126, 234, 0.2);
    transition: all 0.3s ease;


}

.contact-method:hover {
         border-color: #667eea;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.contact-method h3
	{
  font-size   :        20px;
    color: #667eea;
         margin-bottom     :      15px;
    font-weight: 700;
}

.contact-method p {
  margin-bottom: 10px;
    line-height: 1.8;
   font-size: 15px;
   color:      #555;
}

.contact-method p:last-child {
  margin-bottom: 0;
}

.contact-method a {
  color: #667eea;
  text-decoration: none;
    font-weight: 600;
   transition: color 0.3s ease;
}

.contact-method a:hover {
  color: #764ba2;
}

.small-text 
 {
  font-size: 13px;
  color: #999;
   margin-top: 8px !important;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 36px;
    }

    .services-hero-content p {
        font-size: 16px;
    }

    .service-item-full {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 60px;
        padding-bottom: 60px;
    }

    .service-item-image img {
        height: 300px;
    }

    .service-item-content h2 {
        font-size: 28px;
    }

    .service-intro {
        font-size: 16px;
    }

    .service-info {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .service-cta-content h2 {
        font-size: 32px;
    }

    .comparison-table {
        font-size: 12px;
    }

    table th,
    table td {
        padding: 12px;
    }
}

@media (max-width: 768px) {
    .thankyou-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .thankyou-content h1 {
        font-size: 36px;
    }

    .thankyou-illustration img {
        height: 350px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .contact-methods {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 28px;
    }

    .service-item-content h2 {
        font-size: 22px;
    }

    .service-details h3,
    .service-benefits h3 {
        font-size: 16px;
    }

    .thankyou-content h1 {
        font-size: 28px;
    }

    .thankyou-message {
        font-size: 16px;
    }

    .contact-method {
        padding: 25px;
    }

    .contact-method h3 {
        font-size: 16px;
    }

    table {
        font-size: 11px;
    }

    table th,
    table td {
        padding: 8px;
    }
}.policy-hero
{
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding   :100px 20px;
  text-align  :        center;
   color     :       white;}

.policy-hero h1  
  {

   font-size: 52px;
  margin-bottom: 15px;
  font-weight  :    700;
   line-height: 1.2;

}

.policy-subtitle   {
   font-size  :     20px;
    opacity: 0.95;
  line-height: 1.6;
}

.policy-section  
  {
        padding  :    80px 20px;

	   background-color: white; 
	
}

.policy-container {
   max-width: 900px; 
   margin: 0 auto; 
   text-align   :       left;
}

.policy-container h2  
  {
   font-size:    32px;
  color: #2c3e50;
   margin-top: 50px;
    margin-bottom: 25px;
    font-weight     :      700;
  line-height: 1.3;
}


.policy-container h2:first-child {
  margin-top: 0;
}

.policy-container p {
  color: #555;
	margin-bottom: 20px;
	line-height: 1.8;
       font-size: 16px;
}

.policy-container ul {
   padding: 0;
    list-style: none;
  margin-bottom: 20px; 
	
}

.policy-container li {
  padding: 12px 0 12px 30px;
   position: relative;
  color: #555;
    line-height: 1.8;
   font-size  :     15px;
}

.policy-container li:before {
  content: "•";

    position: absolute;

	left: 0;

  color: #667eea;

   font-weight: bold;

   font-size: 18px;
} 

.last-updated {
   font-size: 14px;
   color: #999;
  margin-top: 60px;
   padding-top: 30px;
  border-top:   1px solid #e0e0e0;
  font-style: italic;
}

.toc-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
	padding: 30px;
    border-radius: 12px;
         margin-bottom: 50px;
          border-left: 4px solid #667eea;
} 

.toc-section h3 {
       font-size: 20px;
  color: #2c3e50;
  margin-bottom: 20px;
	font-weight: 700;
}

.toc-section ol  
  {
  list-style: decimal;
                    padding-left: 20px;
    margin: 0;
}



.toc-section li {
	color: #555;
  line-height     :        1.8;
	font-size: 15px;
  margin-bottom: 10px;
}

.toc-section a {
    color:       #667eea;
    text-decoration: none;
	 transition: color 0.3s ease;
}

.toc-section a:hover {
 color: #764ba2;
    text-decoration: underline;
}

.important-notice {
	  background: linear-gradient(135deg, #fff3cd 0%, #ffe69c 100%);
  padding: 25px;
   border-radius    :    12px;
  border-left: 4px solid #ffc107;
  margin: 30px 0;

}

.important-notice h4 {
   color     :  #856404;
   margin-top: 0;
   font-weight: 700;
}

.important-notice p {
       color: #856404;
	 margin: 0;



}@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 36px;
    }

    .policy-subtitle {
        font-size: 16px;
    }

    .policy-section {
        padding: 60px 20px;
    }

    .policy-container h2 {
        font-size: 24px;
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .policy-container p {
        font-size: 15px;
        line-height: 1.7;
    }

    .toc-section {
        padding: 20px;
    }

    .toc-section h3 {
        font-size: 18px;
    }

    .toc-section li {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 28px;
    }

    .policy-hero {
        padding: 60px 20px;
    }

    .policy-section {
        padding: 40px 20px;
    }

    .policy-container {
        max-width: 100%;
    }

    .policy-container h2 {
        font-size: 20px;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .policy-container p {
        font-size: 14px;
    }

    .policy-container li {
        padding-left: 25px;
        font-size: 14px;
    }
}

@media print {
    .header-main,
    .footer-main {
        display: none;
    }

    .policy-section {
        padding: 0;
    }

    .policy-hero {
        background: none;
        color: #2c3e50;
        padding: 20px 0;
    }

    .policy-hero h1 {
        font-size: 28px;
        color: #2c3e50;
    }

    a {
        color: #667eea;
    }
}