* {
               margin: 0;
	 padding: 0px;
 box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
   background-color: #ffffff;
}

.primary-navigation {
      position: fixed;
	top: 0;
   left: 0;
 width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
   transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.primary-navigation.scrolled {
  background: rgba(255, 255, 255, 0.98);

	  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: 1rem 2rem;
}

.brand-section .company-logo {
  height: 40px; 
	   width     :       auto;
}  

.navigation-links {
   display: flex;
    gap: 2.5rem;
   align-items    :       center;
}

.nav-item {
   font-weight: 500;
   font-size   :   16px;
   transition :color 0.3s ease;
  text-decoration: none;
    color    : #2c3e50;
   position: relative;
}

.nav-item:hover {
	color: #3498db;


}

.nav-item:after {
  content: '';
    position: absolute;
   bottom: -5px;
  left: 0;
    width    :0;
   height: 2px;
   background: #3498db;
  transition: width 0.3s ease;
}

.nav-item:hover:after {
   width   :      100%;
}

.mobile-toggle {
   display: none;
    flex-direction  :      column;
  cursor: pointer;
    padding: 5px;
}

.burger-line {
    width: 25px;
   height: 3px;
   background-color: #2c3e50;
    margin: 3px 0;
  transition: 0.3s;
}

.mobile-toggle.active .burger-line:nth-child(1)  
  {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active .burger-line:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active .burger-line:nth-child(3)	{

  transform: rotate(45deg) translate(-5px, -6px);

}

.hero-banner {
  padding   :120px 0 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  overflow: hidden;
}

.content-wrapper {
    max-width     :  1200px;
    margin: 0 auto;
  padding: 0 2rem;
     }



.hero-banner .content-wrapper {
         display:     grid;

    grid-template-columns: 1fr 1fr;

  gap: 4rem;

   align-items: center;
}

.primary-heading {
    font-size  :     3.5rem;
        font-weight  : 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.hero-description {
         font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
   opacity: 0.95;
}

.cta-buttons {


   display: flex;
   gap: 1.5rem;
	flex-wrap: wrap;}

.primary-btn, .secondary-btn {

	  display    : inline-block;
    padding: 16px 32px;
  -moz-border-radius :    8px;
   -o-transition: all 0.3s ease;
  text-decoration: none;
  border-radius :  8px;
   -webkit-transition: all 0.3s ease;
   font-weight: 600;
   -moz-transition: all 0.3s ease;
                    font-size: 1.1rem;
   transition: all 0.3s ease;
   cursor: pointer;
  border  :  none;

}

.primary-btn {


         background: #e74c3c;
    color: white;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);

}

.primary-btn:hover {
	    background: #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);

}

.secondary-btn {
  background    :      transparent;
  color     : white;
    border: 2px solid white;
}

.secondary-btn:hover {
	color: #667eea;
  background: white;
}

.hero-img {
   width: 100%;
    height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.services-overview {
   padding: 100px 0;
   background-color: #f8f9fa; 

}

.section-title 
 {
    text-align: center; 
  font-size: 2.8rem; 
    font-weight: 700; 
    color: #2c3e50; 
  margin-bottom: 3.5rem; 
    position   :    relative;
}

.section-title::after {
  content: '';
               position: absolute;
    bottom     : -15px;
    left   :      50%;
  transform: translateX(-50%);
   width: 80px;
   height: 4px;
  background   :   #3498db;
  border-radius: 2px;
}

.services-grid	{
   display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	   gap: 2.5rem;
	   margin-top: 4rem;
}

.service-card {
   background: white;
   border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
  opacity: 0;
  transform: translateY(30px);}

.service-card.visible {
   opacity: 1;
  transform: translateY(0);
}

.service-card:hover   {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.service-image {
   width: 100%;
    height: 220px;
   object-fit: cover;
}

.service-card h3 {
   font-size   :        1.5rem;
         font-weight: 600;
	margin: 1.5rem 1.5rem 1rem;
  color: #2c3e50; 

}

.service-card p {
     padding: 0 1.5rem 2rem;
	 color: #5a6c7d;
	line-height: 1.6; 
	
}

.expertise-section {
    background: white;
    padding   :       100px 0;
}

.expertise-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 4rem;
	 align-items: center;
}

.text-column h2 {
   font-size: 2.5rem;
   font-weight: 700;
    color: #2c3e50;
	margin-bottom: 1.5rem;
   line-height: 1.3;
}

.text-column > p    {
   font-size: 1.1rem;
   color: #5a6c7d;
	margin-bottom: 2.5rem;
  line-height: 1.7;
}

.expertise-points {
   display: flex;
  flex-direction: column;
    gap: 1.8rem;
}

.point-item h4 {

               font-size     : 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.point-item p {
   color: #5a6c7d;
    line-height     : 1.6;
}

.expertise-img {

  width: 100%;
   height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
     }

.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
       color: white;
    text-align   :        center;
}

.cta-content h2 {
	font-size: 2.8rem;
   font-weight: 700;
    margin-bottom     :   1.5rem;
}

.cta-content p {
	  font-size: 1.2rem;
	 line-height: 1.7;
    max-width   :    800px;
 margin: 0 auto 2.5rem;
       opacity: 0.9; 
}

.primary-btn.large {
  font-size:        1.3rem;
   padding: 20px 40px;
}

.contact-section
{
         padding: 100px 0;
  background-color: #f8f9fa;

}


.contact-form-container {
    max-width     :     800px;
  margin: 0 auto;
   background: white;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
   flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
	}

.form-group {
   display: flex;
      flex-direction: column;
}

.form-group.full-width {
   grid-column: 1 / -1;
}

.form-group label		{

	  font-weight: 600;
   margin-bottom: 0.5rem;
  color: #2c3e50;
    font-size: 0.95rem;
}


.form-group input,
.form-group select,
.form-group textarea {
   padding: 14px 16px;
    border: 2px solid #e1e8ed;
    border-radius: 8px;
  font-size: 1rem;
	transition: all 0.3s ease;
  font-family: inherit; 

}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
  border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
   border-color: #e74c3c;
}

.field-error {
    color: #e74c3c;
  font-size     :0.85rem;
    margin-top: 0.5rem;
}

.submit-btn {
   background: #27ae60;
  color: white;
  padding  :  16px 32px;
    border: none;
   border-radius:8px;
   font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
				 transition: all 0.3s ease;
   align-self: flex-start;
}

.submit-btn:hover{
    background: #229954;
  transform: translateY(-2px);} 

.site-footer {
  background-color: #2c3e50;
      color: #ecf0f1;
   padding: 60px 0 20px;
}

.footer-content  {
 max-width: 1200px;
  margin: 0 auto;
 padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
  gap: 3rem;
	}

.footer-logo {
	height: 45px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-section h4{
		 font-size    :1.2rem;
   font-weight     :600;
    margin-bottom  :       1.5rem;
    color: #ecf0f1;
}

.footer-links {
	 list-style: none; 
	   display     :        flex; 
	   flex-direction: column; 
	          gap: 0.8rem; 

}

.footer-links a {
   color :     #bdc3c7;
  text-decoration: none;
               transition     :color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.contact-info p	{

	  color :      #bdc3c7;
	margin-bottom    :0.8rem;
   line-height    :      1.5;
	

}

.footer-bottom {
    border-top    :      1px solid #34495e;
   margin-top: 2rem;
	padding-top: 1.5rem;
   text-align: center;
               color: #95a5a6;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .navigation-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        gap: 1rem;
    }
    
    .navigation-links.mobile-active {
        display: flex;
    }
    
    .hero-banner .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .primary-heading {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .image-column {
        order: -1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .content-wrapper {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .contact-form-container {
        margin: 0 1rem;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .primary-heading {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.3rem;
    }
    
    .cta-content h2 {
        font-size: 2.2rem;
    }
    
    .hero-banner {
        padding: 100px 0 60px;
    }
    
    .services-overview,
    .expertise-section,
    .contact-section {
        padding: 60px 0;
    }
}.nav-item.active {
   color: #3498db;


}

.nav-item.active:after {
  width  :        100%; 

}

.about-hero-section {
    padding :  120px 0 60px;
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color    :    white;
    text-align: center;
}

.about-main-title {
	font-size     :3.2rem;
  font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}



.about-subtitle
	{
    font-size :      1.3rem;
    opacity: 0.9;
  max-width: 600px;
   margin: 0 auto;
	
}

.story-section {
  padding: 80px 0;
    background: white;
}

.story-content {
  gap: 4rem; 
	  display     :   grid; 
	        grid-template-columns: 1fr 1fr; 
	   align-items: center;
}

.story-text h2 {
  font-size: 2.4rem;
  color: #2c3e50;
   margin-bottom  :       2rem;
   font-weight: 700;
}

.story-text p {
      font-size: 1.1rem;
  line-height: 1.7;
  color: #5a6c7d;
    margin-bottom  :       1.5rem;
}

.story-img {
	width: 100%;
    height: auto;
	border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.approach-section {
    padding: 80px 0;
	    background-color: #f8f9fa;
}

.approach-grid {
    display    :      grid; 
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 2rem; 
    margin-top: 3rem;
}

.approach-item {
	 background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
          position: relative;
  transition: transform 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-5px);
}



.approach-number {
  position    :   absolute;
       top: -15px;
   left:    2rem;
   background: #e74c3c;
   color: white;
    width: 40px;
   height: 40px;
       border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content  :       center;
  font-weight :     700;
	font-size: 1.1rem;
}

.approach-item h3
	{
   font-size   :        1.3rem;
    color: #2c3e50;
  margin: 1rem 0;
    font-weight: 600;
}

.approach-item p {


  color: #5a6c7d;
    line-height: 1.6;}

.expertise-areas  
  {
    padding: 80px 0;
  background: white;
}

.expertise-content-grid {


    display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 4rem;
        margin-top: 3rem;
   align-items: start;

}

.expertise-category {
   margin-bottom: 2.5rem;
}

.expertise-category h3 {
  font-size:     1.4rem;
    font-weight: 600;
   margin-bottom: 1rem;
  color     :      #2c3e50;
}  

.expertise-category ul {


    list-style: none;
         padding-left: 0; 
	
	}

.expertise-category li {
   color :     #5a6c7d; 
		 padding: 0.5rem 0; 
	   position: relative; 
	   padding-left: 1.5rem;
} 

.expertise-category li::before {
  content: "→";
  position:       absolute;
    left :   0;
	 color: #3498db;
	font-weight: bold;
}

.expertise-main-img {
  width  :        100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.results-section {
   padding:  80px 0;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
}

.results-stats {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
   margin     :     3rem 0;
}

.stat-item {
    text-align :    center;
    padding: 1.5rem;
}

.stat-number {
  font-size: 3rem;

	    font-weight    : 700;

	  color: #ffffff;

	    margin-bottom: 0.5rem;


}

.stat-label {
  font-size: 1.1rem;
   opacity: 0.9;
}

.testimonial-section {
     margin-top: 4rem;
}

.testimonial-grid {
   display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	    gap: 2rem;
}

.testimonial-card {
	  background: rgba(255,255,255,0.1);
  padding     :      2rem;
  border-radius  : 12px;
  backdrop-filter: blur(10px);

}

.testimonial-card p

{
  font-style  :  italic; 
	   font-size: 1.1rem; 
	    margin-bottom: 1.5rem; 
	  line-height: 1.6;
} 

.testimonial-author strong {
  display: block;
	margin-bottom: 0.3rem;
}

.testimonial-author span
{
               opacity  :    0.8;
   font-size: 0.9rem;
}

.values-section  {
  padding: 80px 0;
   background-color: #f8f9fa;
}

.values-grid {
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap   :    2rem;
	margin-top: 3rem;
}

.value-card		{
    background: white;
	 padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   text-align: center;
}

.value-card h3 {

   font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
    font-weight:      600;}

.value-card p {
    color: #5a6c7d;
    line-height: 1.6; 
	
}

.thankyou-main-section {
	  padding: 120px 0 80px;
    background   :    white;
    text-align: center;
} 

.thankyou-content {
  max-width: 800px;
    margin: 0 auto;
}

.thankyou-icon-area {

  margin-bottom: 2rem;
}


.success-checkmark {
    width: 80px;
   height: 80px;
    border-radius: 50%;
  display: inline-block;
  stroke-width: 2;
  stroke: #27ae60;
   stroke-miterlimit: 10;
   margin: 10% auto;
  position: relative;
    animation: checkmark-scale 0.3s ease-in-out 0.9s both;
}

.success-checkmark .check-icon {
  width: 80px;
	 height: 80px;
   position: relative;
 border-radius: 50%;
  box-sizing: content-box;
   border     :    4px solid #27ae60;
}

.success-checkmark .check-icon::before {
   top: 3px;
   left: -2px;
   width: 30px;
  transform-origin: 100% 50%;
     border-radius:       100px 0 0 100px;
}

.success-checkmark .check-icon::after {
   top: 0; 
   left: 30px; 
   width: 60px; 
   transform-origin: 0 50%; 
   border-radius  :0 100px 100px 0; 
   animation: rotate-circle 4.25s ease-in;
}

.success-checkmark .check-icon::before, .success-checkmark .check-icon::after {
     content: '';
  height: 100px;
   position: absolute;
   background  :       white;
  transform: rotate(-45deg);

}

.success-checkmark .icon-line {
   height    :5px;
  background-color: #27ae60;
   display: block;
   border-radius: 2px;
  position: absolute;
  z-index: 10;

}

.success-checkmark .icon-line.line-tip {
  top: 46px;
          left: 14px;
               width: 25px;
  transform: rotate(45deg);
  animation: icon-line-tip 0.75s;
}

.success-checkmark .icon-line.line-long {
   top: 38px;
  right: 8px;
   width :       47px;
  transform: rotate(-45deg);
  animation    : icon-line-long 0.75s;
} 

.success-checkmark .icon-circle {
   top: -4px;

 left: -4px;

  z-index: 10;

	 width:80px;

  height  :       80px;

	border-radius: 50%;

    position: absolute;

    box-sizing: content-box;

  border: 4px solid rgba(39, 174, 96, .2);
}


.thankyou-title {
  font-size   :       3rem;
         color :     #2c3e50;
  margin-bottom: 1.5rem;
   font-weight: 700;
}

.thankyou-message {
	 font-size: 1.2rem;
   color: #5a6c7d;
  margin-bottom: 3rem;
   line-height: 1.7; 
	
}

.next-steps-info 
 {
  text-align: left;
   margin :  3rem 0;
}

.next-steps-info h2 {
    font-size: 2.2rem;
  color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center; 
	

}

.steps-list {
  display: flex;
   flex-direction: column;
               gap     :     2rem;
}

.step-item {
  display: flex;
   gap: 1.5rem;
  align-items: flex-start;
}

.step-number {
    background: #3498db;
    color: white;
   width: 40px;
  height: 40px;
	border-radius: 50%;
    display: flex;
    align-items: center;
	justify-content: center;
   font-weight: 700;
   flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.3rem;
  color: #2c3e50;
   margin-bottom: 0.5rem;
    font-weight: 600;
}

.step-content p {
  color: #5a6c7d;
   line-height: 1.6;
}

.additional-info {
    margin: 3rem 0;
}

.info-grid {
     display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
          gap: 1.5rem; 


}

.info-card {
   background: #f8f9fa;

   padding: 1.5rem;

  border-radius :8px;

   text-align:  left;
}

.info-card h3 {
  font-size: 1.1rem;
   color: #2c3e50;
   margin-bottom: 0.5rem;
   font-weight: 600;
}

.info-card p {
	 color: #5a6c7d;
  line-height   : 1.5;
  font-size: 0.95rem;}

.while-you-wait {
   margin-top  :      3rem;

}

.while-you-wait h2 {
    font-size: 2rem;
    color: #2c3e50;
  margin-bottom: 1rem;
}

.while-you-wait p {
   font-size: 1.1rem;
    color: #5a6c7d;
   margin-bottom: 2rem;
	 line-height: 1.6;
}

.action-buttons {
  display: flex;
   gap: 1rem;
    justify-content     :center;
	flex-wrap: wrap;
}

.confidence-section {
  padding: 60px 0;
   background-color: #f8f9fa;
}

.confidence-content h2 {
        color  :        #2c3e50;
   font-size: 2.5rem;
   text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.confidence-points {
    display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap :      2rem;
}

.confidence-item {
   		background: white;
    padding:        2rem;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
               text-align: center;
	}

.confidence-item h3 {
	font-size: 1.3rem;
   color: #2c3e50;
  margin-bottom: 1rem;
 font-weight:       600;
}

.confidence-item p


{
    color: #5a6c7d;
   line-height: 1.6;
}@keyframes checkmark-scale {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes rotate-circle {
    0% {
        transform: rotate(-45deg);
    }
    5% {
        transform: rotate(-45deg);
    }
    12% {
        transform: rotate(-405deg);
    }
    100% {
        transform: rotate(-405deg);
    }
}

@keyframes icon-line-tip {
    0% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    54% {
        width: 0;
        left: 1px;
        top: 19px;
    }
    70% {
        width: 50px;
        left: -8px;
        top: 37px;
    }
    84% {
        width: 17px;
        left: 21px;
        top: 48px;
    }
    100% {
        width: 25px;
        left: 14px;
        top: 45px;
    }
}

@keyframes icon-line-long {
    0% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    65% {
        width: 0;
        right: 46px;
        top: 54px;
    }
    84% {
        width: 55px;
        right: 0px;
        top: 35px;
    }
    100% {
        width: 47px;
        right: 8px;
        top: 38px;
    }
}

@media (max-width: 768px) {
    .about-main-title {
        font-size: 2.5rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-image-side {
        order: -1;
    }
    
    .results-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-title {
        font-size: 2.2rem;
    }
    
    .steps-list {
        gap: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .thankyou-title {
        font-size: 1.8rem;
    }
    
    .confidence-points {
        grid-template-columns: 1fr;
    }
    
    .results-stats {
        grid-template-columns: 1fr;
    }
}.policySection {
  padding: 80px 2rem;
  background: #f8f9fa; 
	
}

.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;
    }
}