* {
   margin: 0;
	padding: 0;
   box-sizing: border-box;
}

body {


  font-family: 'Segoe UI', Tahoma, Geneva, sans-serif;
  line-height: 1.6;
   color: #2c3e50;
    background: #ffffff;
	}

.main-navigation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 1rem 0;
  position: fixed;
    top: 0;
   width: 100%;
	z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
     max-width: 1200px;
   margin: 0 auto;
  display: flex;
    justify-content: space-between;
   align-items: center;
   padding: 0 2rem;


}

.company-logo {
   height: 45px;
    width: auto;
}

.desktop-menu   {
    display: flex;
}

.menu-items {
   list-style: none;
    display: flex;
   gap: 2.5rem;
}

.nav-link {
	    color: white;
	text-decoration: none;
   font-weight: 500;
     transition: all 0.3s ease;
   position: relative; 

}

.nav-link:hover {
  color: #f39c12;}

.nav-link:after     {
    transition  :       width 0.3s ease;
        bottom: -5px;
  content: '';
  width: 0;
    background-color: #f39c12;
    position: absolute;
   left: 0;
    height: 2px;
}

.nav-link:hover:after {
  width: 100%;
}

.burger-toggle {
  display: none;
    flex-direction: column;
 background: none;
    border: none;
    cursor     :    pointer;
    padding: 5px;
}

.burger-toggle span {
   background-color: white;
   margin: 3px 0;
  width: 25px;
  height: 3px;
       transition: all 0.3s ease;
}

.burger-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-toggle.active span:nth-child(2) {
	opacity    :   0;
}

.burger-toggle.active span:nth-child(3) {


  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-overlay	{
  display: none;
 position: fixed;
  top     :0;
   left: 0;
	 width: 100%;
  height: 100vh;
  background: rgba(102, 126, 234, 0.95);
  backdrop-filter: blur(10px);
  z-index: 999;
   padding-top: 100px; 
	
}

.mobile-nav-items {
   list-style: none;
    text-align: center;
	 padding: 2rem;
}

.mobile-nav-items li {
  margin: 2rem 0;
}

.mobile-nav-items a {

	   color: white;
   text-decoration: none;
   font-size: 1.5rem;
  font-weight   :    500;
     }

main {
   margin-top: 80px;
}

.hero-area {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	padding: 80px 0;
}

.hero-content {
	  align-items: center;
   gap: 4rem;
    padding: 0 2rem;
   grid-template-columns:        1fr 1fr;
   margin: 0 auto;
    display: grid;
  max-width: 1200px;
	}

.hero-content h1
	{
    font-size: 3rem;
    font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}


.hero-description {
  font-size :    1.2rem;
	margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
	 display: flex;
     gap: 1rem;
    flex-wrap: wrap;


}

.primary-cta {
    background: #f39c12;
  color: white;
	padding: 15px 30px;
  text-decoration: none;
   border-radius  :   50px;
   font-weight: 600;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3); 
	
}

.primary-cta:hover {
    background: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.secondary-cta   {
	    border: 2px solid white; 
  color: white; 
	 -moz-border-radius: 50px; 
  padding: 13px 28px; 
    text-decoration: none; 
	border-radius: 50px; 
    font-weight: 600; 
   -webkit-transition: all 0.3s ease; 
    transition: all 0.3s ease;

}


.secondary-cta:hover {
    background: white;
    color: #667eea;
}

.visual-portion img {
   width: 100%;
       height     :      auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}


.service-overview {
    padding: 100px 0;
    background: #f8f9fa;

}

.section-wrapper {
	margin: 0 auto;
   max-width: 1200px;
   padding: 0 2rem;
}

.service-overview h2 {
       text-align: center;
   font-size: 2.5rem;
    margin-bottom     : 3rem;
 color   :     #2c3e50;
}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
	 border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
                    transition     :       all 0.3s ease;


}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
    height: 200px;
       object-fit: cover;
               border-radius: 10px;
   margin-bottom: 1.5rem;
}

.service-card h3     {

    font-size: 1.5rem;
   margin-bottom: 1rem;
    color :    #2c3e50;
     }

.service-card p {
   color: #7f8c8d;
   line-height: 1.7;
}

.methodology-section {
    padding: 100px 0;
    background: white;
}

.content-container {
	  max-width: 1200px;

	         gap: 4rem;

	  padding: 0 2rem;

	    margin    :0 auto;

	    grid-template-columns: 1fr 1fr;

	    display     :  grid;

	    align-items: center;
     }

.method-text h2 {

    font-size: 2.5rem; 
	    margin-bottom: 2rem; 
	  color: #2c3e50;
}

.method-text p {
   font-size: 1.1rem;
   color: #7f8c8d;
    margin-bottom: 2rem;
   line-height    :    1.7;
}

.method-points {
   list-style: none;
}

.method-points li {
	padding: 0.8rem 0;
   padding-left    :       2rem;
     position: relative;
   color: #2c3e50;
       font-size: 1.1rem;
}

.method-points li:before {

  content: "✓";
    position: absolute;
   left: 0;
	color   : #f39c12;
    font-weight   : bold;
    font-size: 1.2rem;
	}

.method-visual img {
  width: 100%;
   height: auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.cta-section {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding :    80px 0;
    text-align: center;
	 color: white;
     }

.cta-content {
    max-width: 800px;
   margin: 0 auto;
                    padding: 0 2rem;

}

.cta-content h2 {
       font-size: 2.5rem;
   margin-bottom: 1.5rem;

}

.cta-content p {
    font-size  :1.2rem;
   margin-bottom: 2rem;
   opacity   :       0.9;
}

.cta-button {
	background: #f39c12;
               color: white;
        padding: 18px 40px;
  text-decoration: none;
   border-radius: 50px;
       font-weight: 600;
	 font-size: 1.1rem;
   transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
  display: inline-block;
}

.cta-button:hover {
   background    : #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.contact-section {
  padding: 100px 0;
   	background: #f8f9fa;
}

.contact-wrapper {
   max-width: 800px;
            margin: 0 auto;
     padding: 0 2rem;
   	text-align: center;
}

.contact-wrapper h2 {
    font-size: 2.5rem;
  margin-bottom :1rem;
	color: #2c3e50;
}

.contact-wrapper p {
    font-size: 1.1rem;
    color: #7f8c8d;
  margin-bottom: 3rem;
    line-height :  1.7;
}

.contact-form {
	   background     :        white;
    padding: 3rem;
  border-radius:   20px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  text-align  : left;
}

.form-row


{

   display: grid;
   grid-template-columns    :    1fr 1fr;
    gap: 2rem;
  margin-bottom    :        1.5rem;}

.input-group {
    display: flex;
    flex-direction: column;
}

.input-group label {
	font-weight: 600;
   margin-bottom: 0.5rem;
  color     :        #2c3e50;
}

.input-group input,
.input-group select,
.input-group textarea {
	padding: 12px 15px;
   border: 2px solid #ecf0f1;
  border-radius: 10px;
    font-size: 1rem;
   transition: all 0.3s ease;
     font-family: inherit;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
    border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn		{

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 15px 40px;
   border: none;
	 border-radius: 50px;
   font-size: 1.1rem;
    font-weight  :  600;
   cursor: pointer;
   transition: all 0.3s ease;
      width: 100%;
  margin-top: 1rem;


}

.submit-btn:hover {

	  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
     }

.site-footer {
   background: #2c3e50;
  padding :       50px 0 20px;
		color     :      white;
}

.footer-content {
	 padding  :       0 2rem;
	  margin: 0 auto;
	    grid-template-columns: auto 1fr;
	  align-items: start;
	   max-width: 1200px;
	   gap: 3rem;
	   display: grid;
}

.footer-logo {
     height: 50px; 
    width: auto; 
  filter: brightness(0) invert(1);

}

.footer-info {
  display  :grid;

	  grid-template-columns   :  1fr 1fr;

		 gap: 2rem;
}

.contact-details p {
	margin-bottom:        0.5rem;
    color: #bdc3c7;
}

.footer-nav {
	   list-style: none;}

.footer-nav li {
         margin-bottom: 0.5rem;
}

.footer-nav a {

	   color: #bdc3c7;
  text-decoration: none;
			transition   : color 0.3s ease; 
	
}

.footer-nav a:hover {
    color: #f39c12;
}

.footer-bottom {
	    border-top: 1px solid #34495e;
  margin-top: 2rem;
	padding-top: 2rem;
  text-align: center;
   color: #95a5a6;
	
}@media (max-width: 768px) {
    .burger-toggle {
        display: flex;
    }
    
    .desktop-menu {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .content-container {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-area {
        padding: 50px 0;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .section-wrapper,
    .contact-wrapper {
        padding: 0 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
}.nav-link.active {
   color: #f39c12 !important;
}



.nav-link.active:after {
    width: 100%;
}

.about-hero {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
   padding: 120px 0 80px;
    text-align: center;
}

.hero-wrapper {
  max-width: 800px;
   margin: 0 auto;
	padding: 0 2rem;
}

.about-hero h1 {
   font-size: 3.5rem;
    font-weight: 700;
   margin-bottom: 1.5rem;
   line-height   :     1.2; 

}

.hero-subtitle {
          font-size: 1.3rem;
   opacity: 0.9;
          line-height   :1.6;
}


.story-section {
  padding: 100px 0;
    background: white;
}

.story-container {
   max-width: 1200px;
    margin: 0 auto;
    padding    :0 2rem;
    display   : grid;
    grid-template-columns: 1.2fr 1fr;
   gap: 4rem;
   align-items:      center;
}

.story-content h2     {
      font-size    :      2.5rem;
  color: #2c3e50;
 margin-bottom: 2rem;

}

.story-content p {

  font-size: 1.1rem; 
    color: #7f8c8d; 
  line-height: 1.7; 
	margin-bottom:  1.5rem;}

.story-image img {
       width: 100%;
	 height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);}

.approach-section {
   padding:100px 0;
    background: #f8f9fa;
}

.approach-wrapper {
   max-width: 1200px;
  margin: 0 auto;
    padding: 0 2rem;
}

.approach-wrapper h2    {
   font-size: 2.5rem;
	color     :#2c3e50;
   text-align: center;
 margin-bottom: 3rem;
	}  

.approach-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.approach-item {
        background: white;
  padding: 2.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
   transition: all 0.3s ease;
}

.approach-item:hover {

  transform: translateY(-5px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.15);
     }

.approach-item h3 {
         font-size: 1.5rem;
   color: #2c3e50;
   margin-bottom: 1rem;
}

.approach-item p    {
   color: #7f8c8d; 
    line-height: 1.7;
}

.team-section {
         padding   :  100px 0;
   background: white;
}

.team-container  {
   max-width: 1200px;
		margin: 0 auto;
  padding: 0 2rem;
}

.team-container h2 {
   font-size: 2.5rem;
    text-align: center;
   color: #2c3e50;
    margin-bottom: 3rem;
}

.expertise-content {
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items: center;
    display: grid;
}

.expertise-text p {
  font-size  :       1.1rem;

    color: #7f8c8d;

	 line-height: 1.7;

   margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
   gap: 2rem;
	 margin-top: 2rem;
}

.stat-item {
	 text-align: center;
}

.stat-number {

	    display: block;
    font-size: 2.5rem;
  font-weight: 700;
				 color: #f39c12;
    line-height: 1;
}

.stat-label {
        font-size: 0.9rem;
      color   :   #7f8c8d;
    margin-top: 0.5rem;
}

.expertise-image img {
   width  :  100%;
    height: auto;
         border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.methodology-deep {

						padding: 100px 0;
   background: #f8f9fa;
}

.methodology-wrapper {


    max-width: 1000px;
  margin  :  0 auto;
    padding     :        0 2rem;

}

.methodology-wrapper h2{
   font-size     :     2.5rem;
   text-align: center;
    color   :     #2c3e50;
    margin-bottom : 3rem;
}

.methodology-steps{
   display: flex;
    flex-direction: column;
    gap: 2rem;


}

.step-item {


  display: flex;
  gap: 2rem;
    background:white;
    padding: 2rem;
   border-radius :    15px;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    opacity: 0;
  transform: translateX(-30px);
    transition: all 0.6s ease;

}

.step-item.step-visible {
  opacity :      1;
  transform: translateX(0);


}



.step-number {
      font-size: 2rem;
   font-weight: 700;
         color: #f39c12;
  min-width :    60px;
   text-align:center;
}


.step-content h3 {
          font-size: 1.5rem;
   color: #2c3e50;
   margin-bottom   :       1rem;
}

.step-content p {
  color: #7f8c8d;
    line-height: 1.7;
}

.values-section {
	 padding    :       100px 0;
    background: white;
	
}

.values-container {
		 max-width: 1200px;
   margin: 0 auto;
  padding: 0 2rem;
}

.values-container h2 {
   font-size: 2.5rem;
    text-align: center;
   color: #2c3e50;
  margin-bottom: 3rem;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem; 
	
}

.value-card {
   background     :       white;
   border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.value-card img {
    width    : 100%;
	height: 200px;
   object-fit: cover;
}

.value-card h3{
  font-size: 1.5rem;
   color: #2c3e50;
    margin: 1.5rem 2rem 1rem;
	
}

.value-card p


{
   color: #7f8c8d;
    line-height: 1.7;
   margin: 0 2rem 2rem;
}

.thankyou-hero {
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
   color: white;
  padding: 120px 0;
   text-align: center;
}

.thankyou-container {

    max-width: 800px; 
    margin: 0 auto; 
    padding: 0 2rem;
	}

.success-icon {

    margin-bottom: 2rem;
     }

.checkmark-circle{
   width: 80px;
   height: 80px;
   border-radius: 50%;
  background: rgba(255,255,255,0.2);
  margin :       0 auto;
	display:        flex;
   align-items: center;
  justify-content: center;
}

.checkmark{
    width: 30px;
   height: 30px;
    border: 3px solid white;
    border-top: none;
	 border-right     :   none;
  transform: rotate(-45deg);
  animation: checkmarkDraw 0.5s ease-out 0.5s both;
}@keyframes checkmarkDraw {
    0% {
        width: 0;
        height: 0;
    }
    50% {
        width: 15px;
        height: 0;
    }
    100% {
        width: 30px;
        height: 15px;
    }
}.thankyou-hero h1 {
   font-size: 3rem;
  margin-bottom: 1.5rem;
               font-weight: 700;
     }

.success-message {
    font-size: 1.2rem;
   opacity: 0.9;
   line-height: 1.6;
}

.next-steps {
  padding: 100px 0;
       background: white;
}

.steps-container {
   max-width: 1000px;
                    margin: 0 auto;
   padding : 0 2rem;
} 

.steps-container h2
{
  font-size: 2.5rem;
        text-align: center;
	color: #2c3e50;
      margin-bottom: 3rem;


}

.timeline {
	position: relative;
      padding-left: 2rem; 
	
}



.timeline::before {
  content: '';
   position: absolute;
  left :     15px;
   top: 0;
   bottom: 0;
 width: 2px;
  background: #ecf0f1;
}

.timeline-item     {
          position: relative;
    transition:   all 0.6s ease;
  transform: translateY(20px);
   padding-left: 3rem;
    margin-bottom: 3rem;
  opacity: 0;
     }

.timeline-item.animate-in {
   opacity: 1;
  transform: translateY(0); 
	
}

.timeline-marker {
                    position: absolute;
    left: -2.5rem;
   top: 0;
   width: 30px;
   height: 30px;
                    border-radius: 50%;
   background: #f39c12;
   color :       white;
   display     :     flex;
    align-items: center;
   justify-content: center;
	 font-weight: 600;
   font-size   :       0.9rem;
}

.timeline-content h3 {
  color: #2c3e50;
          font-size: 1.5rem;
   margin-bottom: 0.5rem;
}

.timeline-content p
{
   color: #7f8c8d;
        line-height  :       1.7;
  margin-bottom: 0.5rem;
}

.timeline-duration {
	font-size: 0.9rem;
    color: #f39c12;
  font-weight: 600;
}

.preparation-tips {
    padding: 100px 0;
    background: #f8f9fa;
}

.tips-container {

	  max-width: 1200px;
   margin: 0 auto;
   padding:   0 2rem;


}

.tips-container h2 {
  margin-bottom  :3rem;
    text-align: center;
   font-size: 2.5rem;
    color: #2c3e50;
}

.tips-grid {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tip-card {
  background: white;

  padding: 2rem;

  border-radius: 15px;

  box-shadow: 0 5px 25px rgba(0,0,0,0.1);

   transition: all 0.3s ease;
}

.tip-card h3 
 {
    font-size: 1.5rem;

		 color: #2c3e50;

    margin-bottom: 1rem;
}


.tip-card p{
   color: #7f8c8d;
   line-height: 1.7;
}

.alternative-contact {
 padding: 80px 0;
   background: white;
}

.alternative-contact .contact-wrapper {
  max-width: 800px;
          margin: 0 auto;
                    padding: 0 2rem;
  text-align: center;
}

.alternative-contact h2 {
	  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1rem;}

.contact-text {
   font-size: 1.1rem;
  color: #7f8c8d;
         margin-bottom: 3rem;
   line-height     :       1.7;
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 2rem;
  margin-bottom: 2rem;

}

.contact-method {

    text-align: center;
   border-radius: 15px;
  background :  #f8f9fa;
  padding  : 2rem;

	}

.contact-method h4 {
    font-size   :      1.2rem;
  color    :    #2c3e50;
   margin-bottom: 1rem;
}

.contact-method p  
  {
    font-size: 1rem;
     color: #7f8c8d;
     margin-bottom: 0.5rem;
}

.availability {
    color   :      #95a5a6;
   font-size: 0.9rem;
}

.return-home

{
    padding: 80px 0;
  background: #f8f9fa;
         text-align: center;
}

.home-section {

	max-width  :        600px;
    margin: 0 auto;
   padding: 0 2rem;


}

.home-section h2 {

   font-size     :    2.5rem; 
	    color     :       #2c3e50; 
	    margin-bottom: 1rem;


}

.home-section p   {


   font-size: 1.1rem;
    color: #7f8c8d;
  margin-bottom: 2rem;
         line-height: 1.7;
     }

.nav-buttons
	{
    display:     flex;
  gap: 1rem;
    justify-content:center;
  flex-wrap: wrap;
}

.return-btn {


  padding: 15px 30px;
   text-decoration: none;
  border-radius :      50px;
     font-weight  :       600;
   transition     :      all 0.3s ease;
   display     :        inline-block;
	}

.return-btn.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.return-btn.primary:hover {
     transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
     }

.return-btn.secondary 
 {
   border: 2px solid #667eea;
	color: #667eea;

}

.return-btn.secondary:hover {

	  background: #667eea;
    color: white;
	}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .story-container,
    .content-container,
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-hero h1 {
        font-size: 2rem;
    }
    
    .nav-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .return-btn {
        width: 100%;
        max-width: 300px;
    }
    
    .timeline {
        padding-left: 1rem;
    }
    
    .timeline::before {
        left: 8px;
    }
    
    .timeline-marker {
        left: -2rem;
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .timeline-item {
        padding-left: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .hero-wrapper,
    .story-container,
    .approach-wrapper,
    .team-container,
    .methodology-wrapper,
    .values-container,
    .thankyou-container,
    .steps-container,
    .tips-container {
        padding: 0 1rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .step-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .step-number {
        text-align: left;
    }
}.policySection {
	  background: #f8f9fa;
  padding: 80px 2rem;}

.policyContainer 
 {
  max-width: 800px;
  margin: 0 auto;
   text-align: left;
}

.policyContainer h2 {
       font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 1.5rem;
   font-weight: 700;
}

.policyContainer p {
    color: #7f8c8d;
  margin-bottom: 1.5rem;
    line-height: 1.7;
    font-size: 1.1rem;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}