* {
   	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; 
	
}

a {
   text-decoration: none;
  color: inherit;
}

ul 
 {
	list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

.navbar {
   background-color:      #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position :  sticky;
  top: 0;
  z-index: 1000;
}

.navbar-container  
  {
    max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
  display: flex;
    justify-content  :     space-between;
	align-items   :   center;
	height : 70px;
}

.navbar-logo img {


  height: 64px;
    width: auto;
  display: block;
	}

.nav-menu {
  display :        flex;
    gap :     40px; 

}

.nav-menu a {
    font-weight: 500;
   color: #2c3e50;
  transition: color 0.3s ease;
    font-size: 16px;


}

.nav-menu a:hover {
  color: #3498db;
}

.burger-menu {
    display: none;
   flex-direction: column;
   gap: 6px;
   width: 30px;
   height: 24px;
}



.burger-menu span {
	width: 100%;
    height: 3px;
		background-color: #2c3e50;
   transition: all 0.3s ease;
   border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(12px, 12px);


}

.burger-menu.active span:nth-child(2) {
   opacity    :   0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.hero {
  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;
				 font-weight: 700;
   color: #1a252f;
   margin-bottom: 24px;
   line-height: 1.2;
	}

.hero-content p {
  font-size: 18px;
  color: #555;
   margin-bottom: 32px;
	 line-height  :     1.8;
}

.hero-image {
    position    :   relative;
	overflow: hidden;
  border-radius :       12px;
	
}

.hero-image img	{
       width: 100%;
  height: auto;
	display:  block;
}

.cta-button {
	  display: inline-block;
  padding: 14px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
	border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
  font-size  :16px;


}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);


}

.cta-button.secondary {
	  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.cta-button.primary {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.services-overview {
    max-width: 1200px;
  margin   :80px auto;
    padding: 0 20px;
}

.services-overview h2


{
	  font-size  :        42px;
   font-weight: 700;
 color: #1a252f;
   text-align: center;
    margin-bottom: 60px;
	}

.services-grid  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.service-card {
  background:  white; 
	    padding: 40px 28px; 
	  border-radius: 10px; 
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
	   transition: all 0.3s ease; 
	    text-align: center;
}  

.service-card:hover {
     transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
	}

.service-icon {
   font-size: 32px;
   font-weight: 700;
    color: #667eea;
       margin-bottom: 16px;
}

.service-card h3 {
    font-size: 20px;
   font-weight :       600;
   color: #1a252f;
   margin-bottom: 12px;
}

.service-card p {
	 font-size: 14px;
    color: #666;
      line-height: 1.6;
}

.development-program {
    display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 60px;
    align-items: center;
   max-width  :1200px;
  margin  :    80px auto;
   padding: 0 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
	padding: 60px;
	 border-radius: 12px;
}

.prog-image img {

    width: 100%;
    height: auto;
  border-radius    :     10px;
	}

.prog-content h2 {
    font-size: 36px;
  font-weight: 700;
    color: #1a252f;
    margin-bottom: 20px;

}

.prog-content > p {
   font-size: 16px;
   color: #555;
    margin-bottom: 24px;
    line-height: 1.8; 
	
}

.program-features {
    margin: 32px 0;
  font-size: 15px;
   color: #2c3e50;

}

.program-features li {
   padding: 10px 0 10px 28px;
  position :       relative;
}

.program-features li:before {
   position: absolute;
   font-weight: bold;
  color: #667eea;
  content: "✓";
    left: 0;
  font-size: 18px;
}

.leadership-training {
    max-width :      1200px;
   margin: 80px auto;
  padding: 0 20px;
}

.leadership-training h2     {
        font-size     : 42px;
 font-weight: 700;
  color: #1a252f;
   text-align :  center;
   margin-bottom: 60px;
}

.training-container {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	 gap: 32px;
}

.training-item {
   background: white;
  border-radius:10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;


}

.training-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);

}

.training-item img  
  {
  width: 100%;
  height: 240px;
  object-fit: cover;
}


.training-item h3 {
	font-size   :      20px;
    font-weight: 600;
 color: #1a252f;
  padding: 20px 20px 12px;
}

.training-item p {
   font-size: 14px;
  color :       #666;
    padding: 0 20px 16px;
    line-height: 1.6;
}

.training-duration {
    display: inline-block;
    margin: 0 20px 20px;
    padding: 6px 12px;
       background-color: #ecf0f1;
    color: #667eea;
  border-radius: 4px;
    font-size: 13px;
     font-weight   :       600;


}

.testimonials {
    max-width: 1200px;
    margin: 80px auto;
  padding: 0 20px;
}

.testimonials h2

{
    font-size: 42px;

	   font-weight: 700;

	   color: #1a252f;

	   text-align: center;

		 margin-bottom: 60px;}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap   :       32px;
}  

.testimonial-card {
   background: white;
   padding     :   32px;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
     border-left: 4px solid #667eea;
}

.testimonial-card p {
   font-size: 15px;
   color: #555;
  font-style: italic;
  margin-bottom: 20px;
   line-height: 1.7;
}

.testimonial-card h4 {
   font-weight: 600;
    color: #1a252f;
    margin-bottom: 4px;
   font-size: 16px;
}

.testimonial-card span {
   font-size: 13px;
  color: #999;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  text-align: center;
  padding: 80px 20px;
   margin    :    80px 0;
}

.cta-section h2 {
               font-size: 42px;
   font-weight: 700;
	margin-bottom: 20px;
}

.cta-section p {
  max-width     :600px;
   line-height: 1.7;
    margin-right: auto;
   margin-left: auto;
    margin-bottom: 32px;
  font-size: 18px;
}

.cta-section .cta-button {
     background: white;
  color: #667eea;
  font-weight: 600;
}

.cta-section .cta-button:hover {
    background: #f0f0f0;
} 

#contact    {

	max-width: 1200px;
   margin: 80px auto;
   padding  :       0 20px;
}

#contact h2		{
    font-size: 42px;
        font-weight: 700;
     color: #1a252f;
	text-align: center;
    margin-bottom: 60px;
}

.contact-container	{
	   display: grid; 
  grid-template-columns: 1fr 1fr; 
	gap   :   50px;


}

.contact-form {
   background  :       white;
   padding: 40px;
    border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.form-group {
   margin-bottom: 24px;
     display: flex;
  flex-direction: column;
}

.form-group label {


  font-weight    :       600;
    color     :    #1a252f;
    margin-bottom  :8px;
    font-size: 14px;
	}

.form-group input,
.form-group select,
.form-group textarea {
   padding: 12px 16px;

    border: 1px solid #ddd;

         border-radius: 6px;

   font-size :  15px;

	font-family     :  inherit;

   transition     :    border-color 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);
}

.submit-btn {
    width: 100%;
  padding :  14px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    border-radius: 6px;
   font-weight:     600;
    font-size: 16px;
    transition: all 0.3s ease;
	cursor: pointer;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.contact-info {
    display: flex;
       flex-direction   :column;
    justify-content: center;

}

.contact-info h3 {
       font-size: 24px;
  font-weight: 700;
	color: #1a252f;
  margin-bottom: 32px;
}

.info-item {
         margin-bottom: 32px; 
	


}

.info-item h4  
  {
    font-size: 16px;
    font-weight: 600;
	 color   :       #667eea;
  margin-bottom: 8px;
}

.info-item p {
  font-size: 15px;
	color:      #555;
    line-height:   1.6;
}

.footer {
    background-color: #1a252f;

   color: white;

    padding :        60px 20px 30px;

  margin-top:      80px;
}

.footer-container {
 max-width: 1200px;
    margin     :  0 auto;
    display   :     grid;
   grid-template-columns: 1fr 2fr;
  gap: 60px;
               margin-bottom     :        40px;
     }

.footer-logo-section    {
        display: flex;
    align-items: flex-start;

}

.footer-logo {
  height: 86px;
      width: auto;
       display: block;
     filter: brightness(0) invert(1);
}

.footer-links {

    display     :        grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 40px;



}

.footer-column h4 
 {
       font-size: 16px;
   font-weight: 600;
   margin-bottom: 16px;
   color: white;

}

.footer-column ul li {
  margin-bottom: 12px;
	
}



.footer-column a
{
  transition: color 0.3s ease;
   font-size :     14px;
    color:        #bdc3c7;
}

.footer-column a:hover {
    color: #667eea;
}

.footer-column p {
	font-size: 14px;
   color: #bdc3c7;
    line-height: 1.8;
}

.footer-bottom {
  text-align: center;

  padding-top: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.1);

    font-size: 14px;

  color    :       #7f8c8d;
	}@media (max-width: 768px) {
    .navbar-container {
        height: 60px;
    }

    .navbar-logo img {
        height: 50px;
    }

    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background-color: white;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li a {
        display: block;
        padding: 16px 20px;
        border-bottom: 1px solid #ecf0f1;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .development-program {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px 20px;
    }

    .training-container {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    #contact h2,
    .services-overview h2,
    .leadership-training h2,
    .testimonials h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 50px 20px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .service-card {
        padding: 28px 20px;
    }

    .prog-content h2 {
        font-size: 28px;
    }

    .training-item img {
        height: 200px;
    }

    .contact-form,
    .testimonial-card {
        padding: 24px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 14px;
    }

    .footer-column h4 {
        font-size: 14px;
    }

    .footer-column a,
    .footer-column p {
        font-size: 13px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
   color :        white; 
     padding: 100px 20px; 
   text-align: center;
}

.services-hero-content h1 {
	 font-weight: 700;
   margin-bottom:        20px;
  font-size     :      48px;
}

.services-hero-content p		{
    font-size: 20px;
   max-width:600px;
  margin  :      0 auto;
   opacity: 0.95;
	
}

.service-detail-section {
  max-width: 1200px;
	margin: 80px auto;
  padding: 0 20px;
}  

.service-detail-section.alt {
       background-color     : #f8f9fa;
  padding: 60px 20px;
  margin-left: 0;
	margin-right: 0;


}

.service-detail-card {
  display :       grid;
  grid-template-columns     :  1fr 1fr;
    gap: 60px;
   align-items    : center;
}

.service-detail-card.reversed 
 {
   grid-template-columns: 1fr 1fr;
   direction: rtl;} 

.service-detail-card.reversed > * {
        direction: ltr;
}

.service-detail-image {
  position: relative;
	   overflow: hidden;
	   border-radius: 12px;
}

.service-detail-image img {
		width: 100%;
  height: auto;
   display:block;
   transition: transform 0.3s ease;



}

.service-detail-section:hover .service-detail-image img {
  transform: scale(1.05);
}

.service-detail-content h2 {

          font-size: 36px;
    font-weight: 700;
     color: #1a252f;
   margin-bottom: 20px;

}

.service-detail-content > p	{
   font-size: 16px;
   color: #555;
  margin-bottom    :  28px;
         line-height: 1.8;
}

.service-details-list {
    margin  :     32px 0;
}

.service-details-list h3 {
  font-size: 16px;
    font-weight: 600;
    color: #1a252f;
    margin-bottom: 12px;
}

.service-details-list ul {
  list-style  :  none; 

}

.service-details-list li {
   padding: 10px 0 10px 28px;
    position: relative;
    font-size  :15px;
    color: #555;
}

.service-details-list li:before {
      color: #667eea;
  position: absolute;
  content: "→";
    left: 0;
    font-weight: bold;}

.service-pricing {
        display: flex;
   align-items: center;
    gap    :        20px;
	 margin-top: 32px;
    padding-top: 24px;
    border-top     :   2px solid #ecf0f1;
}

.price-tag {
	 font-size: 18px;
	 font-weight: 600;
                    color: #667eea; 

}

.service-cta {
               display:inline-block;
   padding: 12px 28px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
	color: white;
	border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 14px;
}

.service-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(52, 152, 219, 0.4); 
	
}

.services-comparison {
   max-width: 1200px;
    margin   :   80px auto;
   padding: 0 20px;


}

.services-comparison h2 {
  font-size: 42px;
	  font-weight: 700;
	  color :      #1a252f;
	                    text-align: center;
	    margin-bottom: 60px;
}

.comparison-table 
 {
  overflow-x: auto;
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);


}

table {
    border-collapse: collapse;
  width: 100%;
}

table thead {
	background-color: #667eea;
  color: white;
}

table th {
    text-align: left;
    padding: 20px;
                    font-weight: 600;
  font-size: 15px;
}

table td
{
 padding: 18px 20px;
   border-bottom: 1px solid #ecf0f1;
               font-size: 14px;
    color   :       #555;
}

table tbody tr:hover {

	   background-color: #f8f9fa;}


table tbody tr:last-child td {
  border-bottom: none;
}

.services-cta {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
   color:  white;
  text-align: center;
	padding: 80px 20px;
  margin:80px 0 0 0;
    border-radius     :     0; 
	
}

.services-cta h2 {
   font-size: 42px;
   font-weight   :       700;
	 margin-bottom: 20px;
   color: white;

}

.services-cta p {
   font-size: 18px;
   max-width: 600px;
  margin     : 0 auto 32px;
    opacity  :     0.95;
}

.services-cta .cta-button {
     background:       white;
   color: #e74c3c;
   font-weight: 600; 



}

.services-cta .cta-button:hover	{
  background: #f0f0f0;
}

.thankyou-section {
   min-height    : 100vh;
   display: flex;
  align-items  :     center;
      padding    : 60px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
}

.thankyou-container{
         max-width: 800px;
  margin: 0 auto;
   text-align: center;
}

.thankyou-icon {
  color: #2ecc71;
   margin-bottom: 32px;
			animation: scaleInDown 0.6s ease-out;
}

.thankyou-icon svg {
    display: inline-block;
  stroke: #2ecc71;
}

.thankyou-section h1 {
   margin-bottom: 12px;
  color  :       #1a252f;
   font-weight: 700;
  font-size    :       48px;
}

.thank-subtitle {
	font-size  :        20px;
    color: #667eea;
   font-weight  :      600;
      margin-bottom: 32px;
}

.thank-message
	{
    background   :      white;
  padding    :   32px;
                    border-radius    :    10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   margin-bottom: 60px;
}

.thank-message p {
   font-size: 16px;
       color: #555;
  line-height: 1.8;
}

.next-steps h2,
.faq-section h2,
.continue-browsing h2,
.contact-reminder h3     {
  font-size: 28px;
    font-weight: 700;
   color: #1a252f;
   margin-bottom: 32px;
}

.steps-grid{
   display    :       grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
   margin-bottom     : 60px;

}

.step-card

{
   background: white;
   padding  :      32px 24px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.step-card:hover {
  transform: translateY(-6px);

	  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}

.step-number {
  width: 50px;
         height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color    :  white;
   border-radius: 50%;
	 display    :   flex;
   align-items   :        center;
	justify-content: center;
  font-size: 24px;
    font-weight: 700;
    margin   :0 auto 16px;
}

.step-card h3 {

  font-size: 18px;
  font-weight: 600;
  color: #1a252f;
    margin-bottom: 12px;
     }

.step-card p {

	  font-size: 14px;
    color   : #666;
  line-height :        1.6;
	}  

.faq-section {
   margin-bottom: 60px;
}  

.faq-item {
    background: white;
  padding: 28px;
   border-radius: 10px;
   margin-bottom  :20px;
   text-align   :left;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left  :     4px solid #667eea;
} 

.faq-item h3
	{
    font-size: 16px;
  font-weight: 600;
    color: #1a252f;
    margin-bottom: 8px;
}

.faq-item p {
   font-size: 14px;
    color: #555;
   line-height: 1.6;
}

.continue-browsing {
    margin-bottom: 60px;
}

.browsing-links   {
    display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
	
}

.browse-link {
         display: inline-block;
    padding: 14px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 6px;
	font-weight: 600;
  transition: all 0.3s ease;
   font-size :      14px;
}

.browse-link:hover     {

	  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
	}

.contact-reminder {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
                    padding: 40px;
   border-radius: 10px;
}

.contact-reminder h3 {
    color: white;
   margin-bottom: 16px;
  font-size: 20px; 

}

.contact-reminder p {
  margin :8px 0;
	font-size     :   16px;
}

.contact-reminder strong {


    font-weight: 700;


}@keyframes scaleInDown {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 36px;
    }

    .services-hero-content p {
        font-size: 16px;
    }

    .service-detail-card,
    .service-detail-card.reversed {
        grid-template-columns: 1fr;
        gap: 32px;
        direction: ltr;
    }

    .service-detail-card.reversed > * {
        direction: ltr;
    }

    .service-detail-content h2 {
        font-size: 28px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .browsing-links {
        grid-template-columns: 1fr;
    }

    .services-comparison h2,
    .services-cta h2,
    .next-steps h2,
    .faq-section h2,
    .continue-browsing h2 {
        font-size: 32px;
    }

    .comparison-table {
        font-size: 13px;
    }

    table th,
    table td {
        padding: 12px;
    }

    .thankyou-section h1 {
        font-size: 36px;
    }

    .thank-subtitle {
        font-size: 18px;
    }

    .contact-reminder {
        padding: 28px;
    }

    .contact-reminder h3 {
        font-size: 18px;
    }

    .contact-reminder p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 28px;
    }

    .service-detail-content h2 {
        font-size: 22px;
    }

    .service-cta {
        display: block;
        width: 100%;
        margin-top: 12px;
    }

    .service-pricing {
        flex-direction: column;
        gap: 12px;
    }

    .step-card {
        padding: 20px 16px;
    }

    .faq-item {
        padding: 16px;
    }

    .browsing-links {
        grid-template-columns: 1fr;
    }

    .browse-link {
        width: 100%;
        text-align: center;
    }

    .thankyou-icon svg {
        width: 60px;
        height: 60px;
    }

    .thankyou-section h1 {
        font-size: 28px;
    }

    .thank-message {
        padding: 20px;
    }

    .next-steps h2,
    .faq-section h2,
    .continue-browsing h2 {
        font-size: 24px;
    }
}.about-hero	{


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
	 padding: 80px 20px;
    text-align: center;
     }

.about-hero-content h1 {
    font-size     :48px;
  font-weight: 700;
   margin-bottom: 16px;
}

.about-hero-content p {
  font-size    :    20px;
  opacity: 0.95;
}

.about-content {
    max-width: 900px;
   margin: 0 auto;
   padding: 60px 20px;
}

.about-main  {
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 50px;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 60px;
	border-bottom: 2px solid #ecf0f1;
}

.about-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #1a252f;
	margin-bottom: 24px;
}

.about-text p {
   font-size: 15px;
         color: #555;
    line-height: 1.8;
  margin-bottom  :       18px;
}

.about-text p:last-child

{
   	margin-bottom: 0;

	}

.about-image {
    position: relative;
    overflow:       hidden;
  border-radius   :   12px;
}

.about-image img{
  width: 100%;
   height: auto;
   display: block;
  transition  :        transform 0.3s ease;
}

.about-main:hover .about-image img {
  transform: scale(1.05);
}

.about-section {
    margin-bottom     :       60px; 
   padding-bottom   : 60px; 
  border-bottom: 1px solid #ecf0f1;
}

.about-section:last-of-type 
 {


  border-bottom: none; 
  padding-bottom: 0;}

.about-section h2 {
        font-size: 28px;
   font-weight: 700;
  color    :#1a252f;
    margin-bottom: 20px;
}

.about-section p {
   font-size: 15px; 
	  color   :        #555; 
	   line-height: 1.8; 
	        margin-bottom: 16px;
	
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-values 
 {
        background :#f8f9fa;

		 padding: 40px;

	    border-radius: 10px;

	   margin: 60px 0;
}

.about-values h2 {
  margin-bottom:       40px;
  color: #1a252f;
  font-size: 28px;
  text-align: center;
   font-weight: 700;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.value-item {
   background     :  white;
   padding: 28px;
    border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.1);
}

.value-item h3  
  {

    font-size: 16px;
  font-weight: 600;
  color: #667eea;
  margin-bottom: 12px;

}

.value-item p   {
    color: #666;
	    font-size: 14px;
	  line-height: 1.6;
}

.why-list    {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
	 margin-top: 28px;
}

.why-item
	{
  background: white;
  padding: 28px;
  border-radius: 8px;
  border-left: 4px solid #667eea;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}  

.why-item h4 {
	font-size: 16px;
  font-weight: 600;
    color: #1a252f;
  margin-bottom: 10px;
}

.why-item p {
   font-size: 14px;
    color: #666;
  line-height: 1.6;
}

.about-cta {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
         text-align: center;
  padding  : 60px 20px;
  margin: 60px 0 0 0;
}

.about-cta h2 {
       font-size:      36px;
    font-weight: 700;
    margin-bottom:  16px;
      color   :      white;

}

.about-cta p {
  font-size: 16px;
	   max-width    :600px;
	    margin: 0 auto 32px;
	               opacity: 0.95;
}

.about-cta .cta-button {
    background: white;
  color: #e74c3c;
    font-weight: 600;
}

.about-cta .cta-button:hover {
  background: #f0f0f0;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 36px;
    }

    .about-hero-content p {
        font-size: 16px;
    }

    .about-main {
        grid-template-columns: 1fr;
        gap: 32px;
        margin-bottom: 50px;
        padding-bottom: 50px;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-section h2,
    .about-values h2 {
        font-size: 24px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .why-list {
        grid-template-columns: 1fr;
    }

    .about-cta h2 {
        font-size: 28px;
    }

    .about-cta p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 28px;
    }

    .about-text h2,
    .about-section h2 {
        font-size: 20px;
    }

    .about-text p,
    .about-section p {
        font-size: 14px;
    }

    .value-item,
    .why-item {
        padding: 20px;
    }

    .value-item h3,
    .why-item h4 {
        font-size: 15px;
    }

    .value-item p,
    .why-item p {
        font-size: 13px;
    }

    .about-cta {
        padding: 40px 20px;
    }

    .about-cta h2 {
        font-size: 24px;
    }

    .about-cta p {
        font-size: 14px;
    }

    .about-values {
        padding: 24px;
    }
}.policySection {
  padding: 80px 2rem;
      background: #f8f9fa;
     min-height: calc(100vh - 300px);
}



.policyContainer {
    max-width: 850px;
    margin: 0 auto;
   text-align: left;
}

.policyContainer h1 {
  font-size: 3rem;
     color :   #1a252f;
   margin-bottom: 2rem;
	 font-weight: 700;
    padding-bottom: 1.5rem;
   border-bottom: 3px solid #667eea; 
	
}

.policyContainer h2  {


  font-size: 1.8rem;
  color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
   font-weight: 700;
  color: #667eea;


}

.policyContainer p {
	 color: #555;

   margin-bottom: 1.2rem;

  line-height: 1.8;

   font-size: 1rem;
}

.policyContainer p:last-child {
    margin-bottom: 0;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer {
        max-width: 100%;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 1rem;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        min-height: auto;
    }

    .policyContainer h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.15rem;
        margin-top: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.6;
        margin-bottom: 0.8rem;
    }
}