* {

	    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;
}

.navigation-wrapper {
   background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
   position    :    fixed;
     top: 0;
  width    :      100%;
  z-index: 1000;
}

.nav-container {
    max-width: 1200px;
   margin    : 0 auto;
	 display: flex;
  justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.company-logo {
   height: 45px;
    width: auto;
}

.menu-items {
    display:      flex;
   list-style:       none;
  gap: 2.5rem;
}

.menu-items a {
      color: #2c3e50;
  transition :     color 0.3s ease;
   position: relative;
    text-decoration: none;
  font-weight :500;
}

.menu-items a:hover,
.menu-items a.active


{
                    color: #3498db;
}

.menu-items a::after {
  content: '';
    position: absolute;
	 bottom: -5px;
   left: 0;
    width: 0;
  height: 2px;
	background: #3498db;
   transition: width 0.3s ease;
}

.menu-items a:hover::after,
.menu-items a.active::after {
  width: 100%;
}

.burger-menu {
  display: none;

	    flex-direction: column;

	         cursor: pointer;

	   gap: 4px;
}

.burger-menu span {

	        width     :       25px;
    height: 3px;
   background   :     #2c3e50;
    transition: all 0.3s ease;
     }

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
      opacity: 0;
}

.burger-menu.active span:nth-child(3) {

  transform: rotate(-45deg) translate(7px, -6px);

}

.mobile-menu
{
   position: absolute;
	 top: 100%;
   left: 0;
   width    :     100%;
    background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transform: translateY(-100%);
    opacity: 0;
	 visibility: hidden;
                    transition: all 0.3s ease;
}

.mobile-menu.active		{
  transform: translateY(0);
  opacity: 1;
    visibility: visible;
}


.mobile-menu a {
    display: block;
  padding: 1rem 2rem;
    text-decoration: none;
    color: #2c3e50;
    border-bottom: 1px solid #ecf0f1;
   transition    :  background-color 0.3s ease;
}

.mobile-menu a:hover {


  background-color: #f8f9fa;
   color  : #3498db;

}

.hero-banner {
               margin-top: 80px; 
  padding: 4rem 2rem; 
    max-width: 1200px; 
   margin-left: auto; 
	margin-right: auto; 
    display: grid; 
    grid-template-columns: 1fr 1fr; 
         gap: 3rem; 
    align-items: center; 
  min-height  :    600px;
}

.hero-content h1 {
  font-size: 2.8rem;
      margin-bottom: 1.5rem;
      color: #2c3e50;
     font-weight: 700;
      line-height: 1.2;
}

.hero-description {
  font-size :    1.2rem;
  margin-bottom: 2rem;
    color: #5a6c7d;
					line-height: 1.7;
}

.primary-cta {
    display: inline-block;
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
                    padding: 1rem 2.5rem;
	text-decoration: none;
  border-radius: 50px;
    font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}



.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(52, 152, 219, 0.4);
}

.hero-visual img
{
	   width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.content-wrap {
   max-width: 1200px; 
	margin: 0 auto; 
  padding: 0 2rem;
}

.methodology-overview {
   padding: 5rem 0;
  background: #f8f9fa;
}

.methodology-overview h2 {
  text-align: center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
    color :      #2c3e50;
}

.approach-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.approach-item {

	background   :white; 
    padding    :   2rem; 
   border-radius: 12px; 
   text-align: center; 
  box-shadow: 0 5px 20px rgba(0,0,0,0.08); 
   transition: transform 0.3s ease;}

.approach-item:hover {
  transform: translateY(-5px);
}

.approach-item img {
    width: 100%;
   height: 200px;
    object-fit: cover;
  border-radius: 8px;
    margin-bottom: 1.5rem;


}

.approach-item h3 {

	font-size: 1.4rem;
  margin-bottom: 1rem;
	 color   :    #2c3e50;


}

.approach-item p {


    color: #5a6c7d;
    line-height: 1.6;
     }

.services-showcase {
    padding: 5rem 0;
	
}

.services-showcase h2 {
  text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
  color: #2c3e50;
}

.services-layout {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
          gap: 2rem;
} 

.service-card  
  {
  background: white;
    padding: 2.5rem;
    -o-transition     :       all 0.3s ease;
  -moz-transition : all 0.3s ease;
   -moz-border-radius: 15px;
   border-radius: 15px;
    border: 2px solid #ecf0f1;
    transition: all 0.3s ease;
	-webkit-transition: all 0.3s ease;
}

.service-card.featured {
  border-color: #3498db;
  transform: scale(1.05);
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.service-card:hover {
  border-color: #3498db;
  box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
}

.service-card h3 {
   font-size: 1.5rem;
  margin-bottom: 1rem;
   color: #2c3e50;
}

.service-card p {
  margin-bottom: 1.5rem;
  color: #5a6c7d;
			line-height: 1.6;
}

.service-benefits {
    list-style: none;
}

.service-benefits li {
  padding: 0.5rem 0;
   color: #5a6c7d;
   position: relative;
    padding-left: 1.5rem;
}

.service-benefits li::before {
  content: '✓';
  position: absolute;
   left: 0;
   color: #27ae60;
  font-weight: bold;
}

.cta-section {
     background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
   padding: 5rem 2rem;
    display: grid;
    grid-template-columns    :     1fr 1fr;
    gap: 3rem;
  align-items: center;
  max-width: 1200px;
    margin: 0 auto;
   border-radius: 20px;
   margin-bottom: 5rem;
	}

.cta-content h2 {

			 font-size: 2.2rem;
  margin-bottom: 1.5rem;
	}

.cta-content p  
  {
   font-size: 1.1rem;
    margin-bottom: 2rem;
	opacity: 0.9;
} 

.cta-button {
 display   :     inline-block;
   background: #e74c3c;
    color    :      white;
   padding: 1rem 2.5rem;
   text-decoration: none;
                    border-radius: 50px;
   font-weight : 600;
    transition: all 0.3s ease;
}

.cta-button:hover {
	  background: #c0392b;
  transform: translateY(-2px);
	}

.cta-image img {
    width: 100%;
   border-radius: 15px;
}

.contact-section    {

		padding: 5rem 0;
   background: #f8f9fa;


}

.contact-section h2 {
    text-align: center;
    font-size: 2.5rem;
   margin-bottom  :      3rem;
    color     :       #2c3e50;
}

.contact-layout {
      display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 3rem;
}

.contact-info h3 {

		font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;


}

.contact-info p


{
    margin-bottom: 1.5rem;
  color: #5a6c7d;
    line-height: 1.6;
}

.contact-details p {


   margin-bottom: 0.8rem;

}

.contact-form {
  background: white;
    padding: 2.5rem;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 0.8rem 1rem;
  border: 2px solid #ecf0f1;
                    border-radius: 8px;
         font-size: 1rem;
  transition: border-color 0.3s ease;
  background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
	border-color: #3498db;
    background: white;
}

.form-group textarea {
    height: 120px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #3498db, #2980b9);
   color: white;
   padding: 1rem;
  border :      none;
  border-radius: 8px;
   font-size: 1.1rem;
  font-weight: 600;
  cursor :   pointer;
   transition: all 0.3s ease;
}

.submit-btn:hover {
  background: linear-gradient(135deg, #2980b9, #21618c);
  transform: translateY(-1px);
}

.site-footer
{
	 background: #2c3e50;
  color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
                    max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.footer-logo {
       height: 40px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
	 margin-bottom: 1rem;
  color: #ecf0f1;
}

.footer-section ul {
   list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
   color: #bdc3c7;
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
     color: #3498db;
}

.footer-bottom {
          text-align: center;
    padding-top: 2rem;
    margin-top    :      2rem;
   border-top: 1px solid #34495e;
	color: #95a5a6;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .menu-items {
        display: none;
    }
    
    .hero-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
    }
    
    .service-card.featured {
        transform: none;
    }
    
    .cta-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 3rem 1rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .nav-container {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .methodology-overview h2,
    .services-showcase h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .approach-item,
    .service-card,
    .contact-form {
        padding: 1.5rem;
    }
}.about-hero {
   margin-top: 80px;
    padding: 4rem 2rem;
   max-width     :    1200px;
    margin-left: auto;
   margin-right: auto;
	display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
  margin-bottom: 3rem;
}  

.about-hero-content h1     {
	   font-size: 2.6rem;
	    margin-bottom     :      1.5rem;
	  color: #2c3e50;
		font-weight: 700;
	   line-height: 1.3;

}

.about-intro {
  font-size: 1.1rem;
  color: #5a6c7d;
    line-height:     1.7;
}

.about-hero-image img {
  width  :  100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.philosophy-section {
    padding: 4rem 0;
}

.philosophy-section h2 {


        text-align: center;
   font-size: 2.3rem;
    margin-bottom: 2.5rem;
	color: #2c3e50;

}

.philosophy-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.philosophy-item {
  background: white;
    padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #3498db;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
	 transition: transform 0.3s ease;
}

.philosophy-item:hover {
  transform: translateY(-3px);
}

.philosophy-item h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.philosophy-item p {
    color  :      #5a6c7d;
   line-height: 1.6;
}

.expertise-showcase {
    padding: 4rem 0;
	background: #f8f9fa;


}

.expertise-showcase h2 
 {

	   text-align: center;
   margin-bottom: 3rem;
   color: #2c3e50;
    font-size: 2.3rem;}

.expertise-layout {
	    display: grid;
   gap: 3rem;

}


.expertise-card {
   background: white;
  border-radius: 15px;
    overflow: hidden;
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
   display: grid;
   grid-template-columns: 1fr 1.5fr;
        align-items: center;
  transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-5px);
}

.expertise-card:nth-child(even)  {
    grid-template-columns: 1.5fr 1fr;
}

.expertise-card:nth-child(even) .expertise-content {
   order: -1;
}

.expertise-card img {

	   height: 280px;
  width: 100%;
  object-fit   :       cover;
	}

.expertise-content {
  padding: 2.5rem;
}

.expertise-content h3 {
    font-size: 1.4rem;
  margin-bottom: 1rem;
   color :       #2c3e50;


}

.expertise-content p {


    margin-bottom: 1.5rem;

	   color :   #5a6c7d;

	               line-height    :     1.6;}

.expertise-points {
    list-style: none;
}

.expertise-points li {
  padding: 0.4rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left:1.5rem;
}

.expertise-points li::before {
  content: '→';
   position: absolute;
   left: 0;
    color: #3498db;
    font-weight: bold;
}

.approach-methodology {
  padding: 4rem 0;
}

.approach-methodology h2 {
   text-align: center;
    font-size: 2.3rem;
 margin-bottom: 3rem;
    color   :     #2c3e50;


}

.methodology-steps {
  display  :       grid;
    gap: 2rem;
}

.step-item {
    display: grid;
   grid-template-columns: auto 1fr;
    gap: 1.5rem;
	padding   : 2rem;
   background   :   white;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    align-items: start; 

}

.step-number {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
  width    :  50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
        align-items: center;
  justify-content: center;
  font-weight   :      bold;
   font-size: 1.2rem;


}

.step-item h3 {
    font-size: 1.3rem;
   margin-bottom: 0.8rem;
   color: #2c3e50;
}

.step-item p {
    color  :  #5a6c7d;
   line-height: 1.6;
}

.why-choose-us {
    padding   :   4rem 0;
    background: #f8f9fa;
}

.why-choose-us h2 {
        margin-bottom: 3rem;
	color: #2c3e50;
  text-align: center;
    font-size: 2.3rem;
}  

.benefits-grid {

	 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
         gap: 2rem;

}

.benefit-card {
  background: white;
		padding: 2rem;
   border-radius: 15px;
    text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card img {


    width: 100%;
  height: 200px;
	object-fit: cover;
   border-radius  :        8px;
  margin-bottom: 1.5rem;


}

.benefit-card h3 {
   font-size: 1.3rem;
  margin-bottom: 1rem;
   color: #2c3e50;
}

.benefit-card p {
    color:     #5a6c7d;
   line-height: 1.6;
}

.stats-highlight {
  background: linear-gradient(135deg, #3498db, #2980b9);
		 color: white;
  padding: 2rem;
   border-radius:12px;
    height: 100%;
}

.stats-highlight h4 {
    font-size: 1.4rem;
  margin-bottom: 1.5rem;
   text-align: center;
}

.stats-grid {
   display    :        grid;
    gap: 1rem;
} 

.stat-item {
		text-align: center;

	  padding: 1rem;

	  background: rgba(255,255,255,0.1);

	    border-radius: 8px; 
	}

.stat-number {
    display: block;
    font-size: 2rem;
  font-weight: bold;
       margin-bottom    :0.5rem;
}

.stat-label {
   font-size: 0.9rem;
  opacity: 0.9;
}

.values-section {
  padding: 4rem 0;
}

.values-section h2 {
    text-align: center;
   font-size: 2.3rem;
               margin-bottom: 3rem;
       color: #2c3e50;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
}

.value-item {
    background: white;
   padding   :       2rem;
  border-radius: 12px;
   text-align: center;
    border: 2px solid #ecf0f1;
   transition: all 0.3s ease;
}

.value-item:hover {
    border-color: #3498db;
  transform: translateY(-3px);
}



.value-item h3   {
       font-size: 1.3rem;
   margin-bottom: 1rem;
	color: #2c3e50;

}

.value-item p {
    color  :  #5a6c7d;
  line-height: 1.6; 

}

.thankyou-hero {

	margin-top: 80px;
     padding: 4rem 2rem;
               min-height     : 70vh;
   display : flex;
  align-items     :    center;
   justify-content   :       center;
}

.thankyou-container {
		 max-width: 800px;
  text-align: center;
}  

.success-icon {
  margin-bottom: 2rem;
}

.checkmark-circle {
        width: 80px;
	 height: 80px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
  border-radius: 50%;
   display   :        flex;
   align-items: center;
   justify-content: center;
       margin: 0 auto;
   animation    :    scaleIn 0.6s ease;
}

.checkmark {
  width : 30px;

  height: 15px;

    border: solid white;

  border-width: 0 0 4px 4px;

  transform: rotate(-45deg);
}@keyframes scaleIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}.thankyou-container h1 {
	font-size: 2.5rem;
     margin-bottom: 1.5rem;
      color: #2c3e50;
     font-weight: 700;
}

.thankyou-message {
  margin-bottom: 3rem;
 line-height: 1.7;
    font-size: 1.1rem;
  color: #5a6c7d;
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {

	    font-size: 2rem;
    margin-bottom: 2rem;
   color: #2c3e50;}

.steps-timeline {
    display  :    grid;
   gap: 1.5rem;
    max-width: 600px;
  margin  :     0 auto;
}

.timeline-item {
        display  :     grid; 
   grid-template-columns: auto 1fr; 
  gap: 1rem; 
  align-items: start; 
	text-align: left;
}

.timeline-number {
  background: linear-gradient(135deg, #3498db, #2980b9);
  color: white;
   width: 40px;
    height     :    40px;
    border-radius: 50%;
	display: flex;
   align-items     :    center;
   justify-content: center;
  font-weight: bold;
       flex-shrink: 0;
}

.timeline-content h3 {
            font-size: 1.2rem;
	margin-bottom: 0.5rem;
   color   :  #2c3e50;
	


}

.timeline-content p {
    color: #5a6c7d;
  line-height: 1.5;

} 

.additional-info {
   margin-bottom:    3rem;
}

.additional-info h2 {
   font-size: 2rem;
  margin-bottom: 2rem;
    color: #2c3e50;
}

.info-cards {
        display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
	max-width: 700px;
   margin: 0 auto;
}


.info-card {
	background: white;

  padding: 2rem;

   border-radius: 12px;

  box-shadow: 0 4px 15px rgba(0,0,0,0.08);

  text-align: left;
}

.info-card h3 {
  font-size: 1.3rem;
   margin-bottom: 1rem;
    color: #2c3e50;
}

.info-card p {

	                    color: #5a6c7d;
   line-height: 1.6;
   margin-bottom: 1rem;


}

.info-link {
    color: #3498db;
   -moz-transition: color 0.3s ease;
    text-decoration: none;
  font-weight: 600;
  transition  :      color 0.3s ease;
}

.info-link:hover {
  color: #2980b9;
}

.contact-reminder


{
  background: #f8f9fa;
    padding: 2rem;
  border-radius:      12px;
     margin-bottom: 3rem; 

}

.contact-reminder h3 {
               font-size: 1.4rem;
    margin-bottom: 1rem;
  color: #2c3e50;
}

.contact-reminder p {
   color: #5a6c7d;
   margin-bottom: 1rem;
}

.contact-phone {
    font-size: 1.3rem;
    color: #3498db;
  margin :      1rem 0;

}

.office-info {

	  font-size: 0.9rem;
		 color: #7f8c8d;
}

.navigation-buttons {
  display: flex;
   gap: 1rem;
   justify-content: center;
	flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
      padding: 1rem 2rem;
    text-decoration: none;
   border-radius: 8px;
    font-weight: 600;
	 transition: all 0.3s ease;
}  

.btn-primary {

	  background: linear-gradient(135deg, #3498db, #2980b9);
	color: white;


}

.btn-primary:hover {


  transform: translateY(-2px); 
	  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
	


}


.btn-secondary {
  background: #ecf0f1;
   color: #2c3e50;
  border: 2px solid #bdc3c7;
}

.btn-secondary:hover {
    background: #d5dbdb;
  border-color: #95a5a6;
}

.testimonial-preview {
  padding   :4rem 0;
    background: #f8f9fa;
}

.testimonial-preview h2 {
    text-align: center;
  font-size: 2.3rem;
    margin-bottom: 3rem;
    color    :    #2c3e50;

}

.testimonial-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
   background: white;
  padding: 2rem;
                    border-radius     :       12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
   text-align: center;
}

.testimonial-card p {
   font-style: italic;
  color  :#5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
   font-size: 1.05rem;
}

.testimonial-author strong {
               display: block;
  color: #2c3e50;
  margin-bottom: 0.3rem;
}

.testimonial-author span {
   color: #7f8c8d;
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .about-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1rem;
        margin-top: 90px;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .expertise-card {
        grid-template-columns: 1fr;
    }
    
    .expertise-card:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .expertise-card:nth-child(even) .expertise-content {
        order: 0;
    }
    
    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0.5rem;
    }
    
    .thankyou-container h1 {
        font-size: 2rem;
    }
    
    .navigation-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .philosophy-item,
    .benefit-card,
    .info-card {
        padding: 1.5rem;
    }
    
    .thankyou-container h1 {
        font-size: 1.8rem;
    }
    
    .thankyou-message {
        font-size: 1rem;
    }
}