*


{
 margin: 0;
   padding: 0;
    box-sizing: border-box;


}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height:   1.6;
  color:   #2c3e50;
    background-color: #ffffff;
}

.main-nav-wrapper {


  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
        width: 100%;
   z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); 


}

.main-nav-wrapper.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.navigation-container {
    max-width    :  1200px;
  margin: 0 auto;
  padding: 0 20px;
    display: flex;
      justify-content: space-between;
   align-items: center;
    height : 70px;

}

.company-logo {
  height: 45px;
  width: auto;
}

.nav-items {
	display: flex;
  gap: 30px;
}

.nav-link     {
	text-decoration: none;
    color: #2c3e50;
    font-weight    :        500;
    transition: color 0.3s ease;
    position: relative;
}


.nav-link:hover {
   color: #3498db;
}

.nav-link::after		{
  content: '';
  position: absolute;
  width    :    0;
	height: 2px;
    bottom: -5px;
    -moz-transition: all 0.3s ease;
  left: 50%;
      background-color: #3498db;
	 transition: all 0.3s ease;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 100%;
}


.burger-menu {
    display : none;
	flex-direction: column;
	cursor: pointer;
     padding: 5px;
}

.burger-menu span {
 width: 25px;
    height: 3px;
	 background: #2c3e50;
    margin: 3px 0;
        transition: 0.3s;
    border-radius: 2px; 
	
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.burger-menu.active span:nth-child(2) {
   opacity: 0;
}

.burger-menu.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
	}

.hero-banner {

	   padding: 120px 20px 80px;
	 max-width: 1200px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
               gap    :     60px;
    align-items: center;
 min-height: 70vh;
	

}

.hero-content h1		{
    font-size: 2.8rem;
   font-weight: 700;
    color : #2c3e50;
    margin-bottom: 20px;
    line-height    :      1.2;
}

.hero-description {
    font-size: 1.1rem;
   color: #7f8c8d;
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-actions {
        display: flex;
   gap: 20px;
	flex-wrap: wrap;
}

.primary-btn {
  background: linear-gradient(135deg, #3498db, #2980b9);

   color: white;

    padding: 14px 28px;

    text-decoration: none;

  border-radius: 8px;

   font-weight: 600;

  transition: all 0.3s ease;

  display: inline-block;
}

.primary-btn:hover {
  transform: translateY(-2px);
	  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.secondary-btn {
	 border :      2px solid #3498db;
   color: #3498db;
   padding: 12px 26px;
   text-decoration: none;
   border-radius: 8px;
  font-weight:        600;
  transition: all 0.3s ease;
  display: inline-block;
}

.secondary-btn:hover {
  background: #3498db;
   color: white;
}

.hero-image {
   width: 100%;
    height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.services-area {
	padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
	}

.section-container {
	max-width: 1200px;
      margin: 0 auto;
}

.services-area h2 {

    text-align: center;
     font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom: 50px;
  font-weight: 700;


}

.services-grid     {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}


.service-card {

  background: white;
   padding: 30px;
	 border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
   text-align: center;

}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
	
}

.service-img {
   width: 100%;
   height   :     220px;
    object-fit: cover;
  border-radius: 10px;
  margin-bottom: 20px;
}

.service-card h3 {
       font-size    :   1.4rem; 
  color: #2c3e50; 
  margin-bottom: 15px; 
    font-weight: 600; 
	
}

.service-card p {
    color: #7f8c8d;
   line-height: 1.6;
}

.features-highlight {
   padding: 80px 20px;
}

.features-wrapper {
    max-width: 1200px;
   margin: 0 auto;
  display: grid;
   grid-template-columns   :1fr 1fr;
       gap: 60px;
	 align-items     :      center;

}

.feature-content h2 {
  font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;


}

.feature-item {
	  margin-bottom: 25px;
	}

.feature-item h4 {
    font-size: 1.2rem;
    color    : #3498db;
    margin-bottom: 8px;
   font-weight: 600;
}

.feature-item p {
    color: #7f8c8d;
    line-height: 1.6;
	
}

.feature-img {
  width: 100%;
    height: auto;
  border-radius:       15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.cta-section {


  background: linear-gradient(135deg, #3498db, #2980b9);
    padding: 80px 20px;
  text-align: center;

}

.cta-container     {
   max-width     : 800px;
   margin: 0 auto;
}

.cta-section h2 {
  color: white;
    font-size: 2.3rem;
  margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.9);
         font-size: 1.1rem;
   margin-bottom: 30px;
    line-height: 1.7;
	
}

.cta-button {
	 font-weight: 600;
    font-size: 1.1rem;
   border-radius  :8px;
    text-decoration: none;
  color: #3498db;
   transition: all 0.3s ease;
    display: inline-block;
        padding: 16px 32px;
    background:        white;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.contact-section {
  padding:   80px 20px;
    background: #f8f9fa;
}

.contact-wrapper {
   max-width: 1200px;
	margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2.2rem;
  color: #2c3e50;
   margin-bottom: 20px;
          font-weight: 700;
}

.contact-info p {
  color: #7f8c8d;
  margin-bottom: 30px;
     line-height: 1.7;
}

.contact-item {
   display: flex;
    flex-direction   :        column;
   margin-bottom: 15px;


}

.contact-item strong {
    color     :      #3498db;
	margin-bottom: 5px;
    font-weight: 600;
}

.contact-form {
	 background: white;

    padding: 40px;

    border-radius   :15px;

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}



.form-group {
  margin-bottom: 20px;
}

.form-group label {

	   color   :   #2c3e50;
      font-weight: 600;
   margin-bottom: 8px;
   display  :        block;


}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
    padding: 12px 15px;
   border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size   :      1rem;
	transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
   border-color: #3498db;


}

.submit-btn   {
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
    padding: 14px 30px;
  border     :       none;
    border-radius: 8px;
    font-weight: 600;
               font-size   : 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}


.site-footer {
  background: #2c3e50;
    color: white;
  padding: 50px 20px 20px;
}

.footer-content
	{
   grid-template-columns: 1fr 2fr;
  max-width:        1200px;
  margin: 0 auto;
 margin-bottom: 30px;
	 gap: 40px;
   display: grid;
}

.footer-logo {
  height: 50px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
    display     :grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 30px;}

.footer-section h4     {
   color: #3498db;
  margin-bottom: 15px;
    font-weight: 600;
}

.footer-section p {
    line-height: 1.6;
  color: #bdc3c7;
  margin-bottom: 5px;
}

.footer-section a {
   color: #bdc3c7;
  text-decoration  :    none;
    display: block;
   margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-section a:hover {
   color: #3498db;
}

.footer-bottom {

	    border-top: 1px solid #34495e;
    padding-top: 20px;
  text-align: center;


}

.footer-bottom p {
   color: #95a5a6;
    font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-items.mobile-active {
        display: flex;
    }

    .hero-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 100px 20px 60px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .features-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .services-area h2 {
        font-size: 2rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }

    .contact-form {
        padding: 25px;
    }
}.about-hero {
  padding: 120px 20px 60px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   text-align: center;
}

.about-hero-content {
   max-width: 800px;
  margin: 0 auto;
}

.about-hero h1{
    font-size: 3rem;
  color: #2c3e50;
	 margin-bottom: 20px;
	font-weight: 700;
}

.about-lead {
  font-size: 1.3rem;
   color: #7f8c8d;
   line-height :   1.7;
        max-width: 700px;
   margin: 0 auto;
}

.company-story {
   padding     :  80px 20px;
}

.story-container {
               align-items: center;
    display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  margin: 0 auto;
    max-width: 1200px;
}

.story-content h2 {
	 font-size: 2.4rem; 
	    color: #2c3e50; 
	    margin-bottom  :    30px; 
	    font-weight:  700;
}

.story-content p {

   font-size: 1.1rem;
    color: #7f8c8d;
        line-height   :    1.8;
   margin-bottom: 25px;
     }

.story-image {
		width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.team-expertise {
   padding: 80px 20px;
  background: #f8f9fa;


}

.expertise-container {
   max-width: 1200px;
  margin: 0 auto;
}

.team-expertise h2 {
   text-align: center;
    font-size: 2.5rem;
	color: #2c3e50;
	 margin-bottom: 50px;
    font-weight: 700;
}

.expertise-grid   {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;

}

.expertise-card {
  background: white;
    padding: 35px;
  border-radius :       15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.expertise-card h3 {
    font-size: 1.5rem;
   color: #3498db;
   margin-bottom:  15px;
	font-weight: 600;
	
}

.expertise-card p {
   color: #7f8c8d;
   line-height: 1.7;
   margin-bottom: 20px;
}

.expertise-list {
    list-style: none;
    padding :  0;
}

.expertise-list li {
 color: #2c3e50;
    padding: 8px 0;
    padding-left: 20px;
  position: relative;
} 

.expertise-list li::before	{
  content: "✓";
  position: absolute;
 left: 0;
  color: #27ae60;
   font-weight: bold;
}

.company-values {
   padding   :80px 20px;
}

.values-wrapper {
  max-width    :   1200px;
   margin: 0 auto;
  display: grid;
        grid-template-columns: 1.2fr 1fr;
	 gap  :       60px;
   align-items: center;
}

.values-content h2 {
  font-size: 2.4rem;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

.value-item {
   margin-bottom: 30px;
}  

.value-item h4 {
  font-size: 1.3rem;
   color: #3498db;
   margin-bottom: 10px;
   font-weight: 600;
}

.value-item p {
  color: #7f8c8d;
  line-height: 1.7;
}

.values-image {
  width: 100%;
   height   :    auto;
   border-radius:        15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.achievements-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #3498db, #2980b9);
   text-align: center;
}  

.achievements-container {

	   max-width: 1000px;
  margin: 0 auto;
     }

.achievements-section h2 {
	color: white;
   font-size: 2.5rem;
    margin-bottom: 50px;
    font-weight:     700;
}

.stats-grid {
  display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	 gap: 40px;
}

.stat-item		{
  background: rgba(255, 255, 255, 0.1);
  padding: 30px 20px;
   border-radius: 15px;
  backdrop-filter: blur(10px);
}

.stat-number {
    font-size: 3rem;
  color: white;
   font-weight: 700;
   display: block;
    margin-bottom: 10px;
}

.stat-label {
     color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
  font-weight     :   500;


}

.methodology-section {
   padding: 80px 20px;
    background: #f8f9fa;
}

.methodology-container {
  max-width  :  1200px;
    margin: 0 auto;
   text-align  :   center;
}

.methodology-section h2 {
     font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 20px;
	font-weight: 700;
	}

.methodology-intro	{
      font-size: 1.2rem;
        color: #7f8c8d;
          margin-bottom: 50px;
    max-width: 800px;
   margin-left: auto;
   margin-right: auto;
  line-height: 1.7;
}

.methodology-steps {
    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	gap: 40px;

       margin-top:  50px;
}

.method-step {
   background: white; 
   padding: 30px 25px; 
   border-radius: 15px; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); 
    position: relative; 
  text-align: left;
}

.step-number {

    position: absolute;
  top: -15px;
   left  :    25px;
                    background: #3498db;
   color: white;
  width: 40px;
   height: 40px;
    border-radius: 50%;
  display: flex;
  align-items: center;
    justify-content: center;
	font-weight   : 700;
    font-size: 1.1rem;
}

.method-step h3 {
   margin-top: 15px;
  color: #2c3e50;
  margin-bottom     : 15px;
   font-weight: 600;
    font-size: 1.3rem;


}

.method-step p {
	color: #7f8c8d; 
    line-height: 1.6;
}

.why-choose-us     {
  padding: 80px 20px; 
	
}

.choose-container {
	 max-width   : 1200px;
   margin: 0 auto;
}

.why-choose-us h2 {


  text-align: center;
	    font-size     :        2.5rem;
	  color: #2c3e50;
	    margin-bottom: 50px;
	   font-weight   :        700;}

.reasons-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
     }

.reason-card {
  text-align: center;
	 padding :    30px;
   background: white;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.reason-card:hover {
  transform: translateY(-5px);
}

.reason-img {

  width: 100%;
    height: 200px;
    object-fit: cover;
  border-radius: 10px;
          margin-bottom     : 20px;
}

.reason-card h3 {
   font-size: 1.4rem;
  color: #2c3e50;
   margin-bottom: 15px;
    font-weight: 600;
}

.reason-card p {
  color: #7f8c8d;
    line-height: 1.6;

}

.thankyou-hero {
      padding  : 120px 20px 80px;
  min-height: 70vh;
}

.thankyou-container {
    max-width    :      1200px;
	    margin: 0 auto;
	    display     :   grid;
	   grid-template-columns: 1.3fr 1fr;
	         gap: 60px;
	   align-items: center;
}

.thankyou-content {
  text-align :     center;
}

.success-icon {
   margin-bottom: 30px;
}

.checkmark {

	    width: 80px;
    height: 80px;
    margin   :        0 auto;
 position: relative;
     }  

.checkmark-circle {
	width: 80px;
	 height: 80px;
    border: 4px solid #27ae60;
   border-radius: 50%;
   position: relative;
    animation: checkmark-circle 0.6s ease-in-out;
}

.checkmark-stem {
           position   :       absolute;
    width    :       3px;
    height: 20px;
  background     :       #27ae60;
    left:   32px;
    top: 30px;
  transform: rotate(45deg);
   animation: checkmark-stem 0.4s ease-in-out 0.3s both;}

.checkmark-kick {
	 position: absolute;

  width: 3px;

	height    :  12px;

   background: #27ae60;

   left: 25px;

    top: 42px;

  transform: rotate(-45deg);

	animation: checkmark-kick 0.4s ease-in-out 0.6s both;
}@keyframes checkmark-circle {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

@keyframes checkmark-stem {
    0% { height: 0; }
    100% { height: 20px; }
}

@keyframes checkmark-kick {
    0% { height: 0; }
    100% { height: 12px; }
}.thankyou-content h1 {
                    font-size: 2.8rem;
  color: #2c3e50;
    margin-bottom  : 20px;
  font-weight: 700;
}

.thankyou-message {
          font-size: 1.2rem;
   color: #7f8c8d;
    line-height: 1.7;
    margin-bottom: 40px;
   max-width: 600px;
    margin-left: auto;
  margin-right: auto;
} 

.next-steps {
  text-align: left;

  margin-bottom: 40px;
}


.next-steps h2 {
        font-size: 2rem;
   color: #2c3e50;
	margin-bottom: 30px;
  text-align     : center;
    font-weight: 600;
}

.steps-timeline {

	         max-width: 600px;
    margin: 0 auto;
     }

.timeline-item {
  display: flex;
    margin-bottom: 30px;
  align-items: flex-start;
}

.timeline-number {


     background: #3498db;
	 color: white;
  width: 40px;
   height: 40px;
  border-radius: 50%;
    display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
    margin-right: 20px;
  flex-shrink: 0;


}

.timeline-content h3 {
   font-size: 1.2rem;
  color: #2c3e50;
  margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
  color: #7f8c8d;
   line-height: 1.6;
   margin-bottom: 5px;
}

.timeline-time {
	    color: #3498db;
  font-size: 0.9rem;
   font-weight: 500;


}

.contact-reminder{
   background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
   margin-bottom: 30px;
	 text-align: center;
}

.contact-reminder h3 {
   color: #2c3e50;
   margin-bottom: 10px;
    font-weight: 600;
}

.contact-reminder p {
  color: #7f8c8d;
	margin-bottom:    15px;
  line-height: 1.6;
}

.contact-info-quick {
  display  :        flex; 
	 justify-content: center; 
	   gap: 30px; 
	  flex-wrap   :        wrap;
}

.contact-detail {
	display: flex;
   flex-direction: column;
  text-align: center;
}

.contact-detail strong {
    color: #3498db;
   margin-bottom: 5px;
	font-weight: 600;


}

.additional-resources

{
    margin-bottom: 40px;
   text-align: center;
}

.additional-resources h3 {


	font-weight: 600;
    margin-bottom: 15px;
  color: #2c3e50;
     }

.additional-resources p {
    line-height: 1.6;
  margin-bottom: 20px;
    color: #7f8c8d;
}

.resource-links {


    display :        flex;
  gap: 15px;
    justify-content: center;
  flex-wrap: wrap;
}

.resource-btn {
  border: 2px solid #3498db;
         color: #3498db;
    padding: 12px 24px;
   text-decoration     : none;
   border-radius: 8px;
  font-weight :   600;
  transition: all 0.3s ease;
   display:inline-block;
}

.resource-btn:hover {
  background  :       #3498db;
  color: white;
}

.thank-you-bottom {
    text-align: center;
  padding-top: 30px;
  border-top: 2px solid #e9ecef;
}

.appreciation {
    font-size: 1.1rem;
    color: #7f8c8d;
	line-height: 1.7;
	 margin-bottom: 25px;
   max-width     :  500px;
    margin-left: auto;
    margin-right: auto;
}

.back-home-btn {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
   padding: 14px 28px;
   text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
  transition  :      all 0.3s ease;
   display: inline-block;
}

.back-home-btn:hover  {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

.thankyou-image  
  {
    width: 100%;
	height: auto;
	border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
	
}

.confidence-section {
   padding    :  60px 20px;
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    text-align   :      center;
}

.confidence-container {
	max-width: 1000px;
 margin: 0 auto;
}

.confidence-section h2 {
	    font-size: 2.2rem;
    color: #2c3e50;
  margin-bottom: 40px;
    font-weight: 700;

}

.confidence-stats  {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 30px;
}

.confidence-stat {
   background: white;
     padding: 25px;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
	display: flex;
    align-items    :   center;
    gap:        20px;
}

.stat-icon {
        flex-shrink: 0;
        font-size: 2.5rem;
}  

.stat-info {
  text-align: left;
}

.stat-num {
   display: block;
   font-size: 2rem;
   color:   #3498db;
  font-weight: 700;
   margin-bottom: 5px;
}

.stat-desc {

    color: #7f8c8d;
   font-weight: 500;
    font-size: 0.95rem;

}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }

    .story-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .values-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .thankyou-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .contact-info-quick {
        flex-direction: column;
        gap: 15px;
    }

    .confidence-stat {
        flex-direction: column;
        text-align: center;
    }

    .stat-info {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .expertise-card,
    .reason-card {
        padding: 25px 20px;
    }

    .contact-reminder {
        padding: 20px 15px;
    }
}.section-container h1 {
			font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 30px;
   font-weight: 700;
  text-align   :      center;
}

.section-container h2 {
       font-size: 1.8rem;
	color: #2c3e50;
  margin: 30px 0 15px;
  font-weight     :  600;
}

.section-container p {


    font-size: 1.1rem;
  color: #7f8c8d;
  line-height: 1.7;
   margin-bottom: 20px;
	
     }

.section-container ul {
   list-style-type: disc;
	 padding-left: 30px;
  margin-bottom: 20px;
}

.section-container ul li {
   font-size    :        1.1rem;
   color: #7f8c8d;
 line-height: 1.7;
                    margin-bottom: 10px;
}