* {
          margin: 0;
   box-sizing: border-box;
   padding: 0;
}

:root {
  --primary-color: #1a365d;
  --secondary-color: #2c5aa0;
  --accent-color: #ed8936;
  --text-dark: #2d3748;
  --text-light: #718096;
  --bg-light: #f7fafc;
  --white: #ffffff;
  --border-color: #e2e8f0;
  --shadow-light: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-medium: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-heavy: 0 10px 25px rgba(0,0,0,0.15);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
   line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
}

.content-container {
    max-width: 1200px;
	  margin: 0 auto;
	  padding  :     0 20px;
}

.main-navigation {
   position    :    fixed;
   top: 0;
 width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
    z-index: 1000;
  transition: all 0.3s ease;
}  

.nav-wrapper {
  max-width: 1200px;
 margin: 0 auto;
    display: flex;
   align-items  : center;
    justify-content: space-between;
   padding: 0 20px;
   height: 70px;
}

.brand-section .company-logo    {
    height:      45px;
    width: auto;
}


.nav-links {
   display: flex;
  list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
	text-decoration     :    none;
  color: var(--text-dark);
  font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.burger-menu {
    display: none;
  flex-direction: column;
    cursor: pointer;
  gap: 4px;
}

.burger-menu span {
	width: 25px;
    height     :  3px;
  background: var(--text-dark);
      transition: all 0.3s ease;
}

.hero-section  
  {
	min-height: 100vh;
  display: flex;
	 align-items: center;
   padding: 100px 20px 0;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
}

.hero-content {
   max-width: 1200px;
	margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
     gap: 4rem;
    align-items: center;
}

.hero-text h1 {

  font-size: 3.2rem;
   font-weight    :    700;
		line-height: 1.2;
   margin-bottom: 1.5rem;
  color: var(--primary-color);


}

.hero-text p


{
       font-size    :    1.2rem;
  color: var(--text-light);
    margin-bottom: 2.5rem;
        line-height: 1.7;
}

.hero-actions {
  display: flex;
       gap: 1rem;
       flex-wrap: wrap; 

}

.primary-btn, .secondary-btn {
     display: inline-block;
  padding: 14px 28px;
    text-decoration: none;
	border-radius:  8px;
    font-weight: 600;
  transition: all 0.3s ease;
  border    :  2px solid transparent;
}

.primary-btn {
  background: var(--accent-color);
  color: var(--white);


}

.primary-btn:hover {
    background: #d56f1f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
} 

.secondary-btn {
	background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
}

.secondary-btn:hover {
  background: var(--secondary-color);
  color: var(--white);
}

.hero-image   {
   width: 100%;
		 height: auto;
    border-radius: 12px;
  box-shadow: var(--shadow-heavy);
}

.introduction-block {
   padding  : 80px 20px;
	  background: var(--white); 
	
}

.intro-grid
	{
	   display: grid;

	       grid-template-columns: 2fr 1fr;

	    gap: 4rem;

	      align-items: center;


}

.intro-text h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom   :1.5rem;
   font-weight:      700;
}

.intro-text p {
    font-size     : 1.1rem;
  color: var(--text-light);
	margin-bottom: 1.5rem;
  line-height: 1.7;
}

.intro-stats {
    display: flex;
  flex-direction: column;
    gap: 2rem;
}


.stat-item {
    text-align: center;
    padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.stat-number {
        font-size: 2.5rem;
    font-weight: 700;
  color: var(--primary-color);
   margin-bottom: 0.5rem;
}

.stat-label {
	  color: var(--text-light);
   font-weight: 500;

}

.services-section {

	   padding: 100px 20px;
  background: var(--bg-light);}

.services-section h2 {
    text-align: center;
   font-size: 2.8rem;
  color: var(--primary-color);
   margin-bottom: 3rem;
  font-weight:  700;
}



.services-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; 
	
}

.service-card {
  background: var(--white);
       border-radius: 16px;
  padding: 2rem;
  box-shadow: var(--shadow-light);
   transition  :     transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-heavy);
	
}

.service-image {

    width: 100%;
   height: 200px;
    object-fit     :cover;
      border-radius: 8px;
         margin-bottom: 1.5rem;


}


.service-card h3 {
     font-size: 1.4rem;
  color: var(--primary-color);
  margin-bottom :       1rem;
    font-weight: 600;
}

.service-card p {
  color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
	padding: 0;
}

.service-card li {
  color: var(--text-light);
    margin-bottom: 0.5rem;
   position: relative;
  padding-left   :        20px;
}

.service-card li:before {
  content: "✓";
	   position: absolute;
	   left: 0;
	  color: var(--accent-color);
	   font-weight: bold;
}

.cta-section {

		padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;


}

.cta-content h2 {
      font-size: 2.5rem;
  color: var(--white);
        margin-bottom: 1rem;
   font-weight: 700;
}

.cta-content p    {
    font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
	 margin-bottom: 2rem;
  max-width   :      600px;
                    margin-left   :        auto;
  margin-right: auto;
   line-height: 1.6;
}

.cta-button {
  display: inline-block;
   padding: 16px 32px;
  background: var(--accent-color);
  color: var(--white);
    text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
 font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
     background: #d56f1f;
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.methodology-section {
  padding: 100px 20px;
  background: var(--white);
}

.methodology-section h2 {
    text-align    :        center;
   font-size: 2.8rem;
  color: var(--primary-color);
  margin-bottom  :4rem;
    font-weight: 700;
}

.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 3rem;
}  

.step-item {
    text-align: center;
     position: relative;
}

.step-number {
          display: inline-block;
   width: 60px;
    height: 60px;
  background: var(--accent-color);
  color: var(--white);
   border-radius: 50%;
    line-height: 60px;
  font-size: 1.2rem;
    font-weight: 700;
   margin-bottom: 1.5rem; 

}



.step-item h3 {
    font-size: 1.3rem;
  color: var(--primary-color);
   margin-bottom: 1rem;
    font-weight: 600;
}

.step-item p {

  color: var(--text-light);
    line-height: 1.6;
}

.contact-section {
   padding: 100px 20px;
  background: var(--bg-light);
}

.contact-section h2 {
  text-align: center;
   font-size: 2.8rem;
  color: var(--primary-color);
   margin-bottom: 3rem;
  font-weight: 700;
}

.contact-wrapper {
  display: grid;
   grid-template-columns: 1fr 1.5fr;
  gap :        4rem;
    align-items: start;
}

.contact-info h3 {
  font-size: 1.8rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-info p {
  color: var(--text-light);
  margin-bottom: 2rem;
    font-size:        1.1rem;
}

.contact-details {
	display: flex; 
	    flex-direction: column; 
		gap: 1.5rem;
}

.contact-item strong {
  color: var(--primary-color);
   display: block;
  margin-bottom: 0.5rem;
}

.contact-item p {
       margin: 0;
  color: var(--text-light); 
	
	}

.contact-form
{
  background: var(--white);
         padding :      2.5rem;
    border-radius: 16px;
  box-shadow: var(--shadow-light);
}

.form-group {
	 margin-bottom: 1.5rem;
}

.form-row


{
   display    : grid;
	grid-template-columns: 1fr 1fr;
               gap: 1rem;
}

.form-group label {
	    display: block;
  color: var(--primary-color);
   margin-bottom: 0.5rem;
   font-weight: 500;

}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
   padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 8px;
	font-size: 1rem;
    transition  : border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	 outline: none;
  border-color: var(--secondary-color);
  box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.form-group textarea {
    resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent-color);
  color: var(--white);
	border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 600;
   cursor: pointer;
	 transition    :        all 0.3s ease;
}

.submit-btn:hover {
    background: #d56f1f;
  transform: translateY(-1px);
  box-shadow: var(--shadow-medium);
}

.main-footer {

  background: var(--primary-color);
  color: var(--white);
   padding    :  60px 20px 0;

}

.footer-content

{
    max-width: 1200px;
    margin   :  0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   padding-bottom: 40px;
}

.footer-section h4 {
      margin-bottom: 1rem;
               font-weight: 600;
   font-size: 1.1rem;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.8);
   line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
   transition: color 0.3s ease;
}

.footer-section ul li a:hover {

	  color: var(--white);
	}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
   padding: 20px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
   margin: 0;
}@media (max-width: 768px) {
  .burger-menu {
    display: flex;
  }
  
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: var(--shadow-medium);
  }
  
  .nav-links.active {
    transform: translateX(0);
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .contact-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .method-steps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .services-section h2,
  .methodology-section h2,
  .contact-section h2 {
    font-size: 2.2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .primary-btn, .secondary-btn {
    width: 100%;
    text-align: center;
  }
}.about-hero {
   padding: 120px 20px 60px;
  background: linear-gradient(145deg, #1a365d 0%, #2c5aa0 100%);
  color: var(--white);
    text-align: center; 

}

.hero-content-about h1	{
  font-size: 3rem;
  font-weight: 700;
   margin-bottom: 1rem;
  color: var(--white);
}

.hero-subtitle {
    font-size:        1.3rem;
	  opacity: 0.9;
		max-width: 600px;
	                    margin   :      0 auto;
}

.our-story {
   padding   : 100px 20px;
  background: var(--white);
}

.story-grid {
	display: grid;
   grid-template-columns: 1.5fr 1fr;
	 gap: 4rem;
     align-items     : center;
}

.story-content h2

{

	    font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 1.5rem;
  font-weight     :        700;


}

.story-content p {
	font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
   line-height: 1.7;
}

.about-image		{
   width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.mission-vision {
	padding: 80px 20px;
  background: var(--bg-light);
}

.mission-blocks {
    display: grid;
               grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.mission-block {
  background: var(--white);
   padding: 2.5rem;
   border-radius: 16px;
  box-shadow: var(--shadow-light);
  text-align: center;
}

.mission-block h3


{
  font-size:    1.5rem; 
  color: var(--primary-color); 
    margin-bottom: 1rem; 
  font-weight: 600;
}

.mission-block p {

	  color: var(--text-light);
  line-height: 1.6;
   font-size: 1.05rem;

}

.approach-section {
  padding: 100px 20px;
  background: var(--white);
}

.approach-section h2 {
   text-align: center;
					font-size: 2.8rem;
  color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight  :  700; 

}

.approach-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.approach-item {
			text-align: center;
  background: var(--bg-light);
    padding: 2rem;
         border-radius: 16px;
  transition: transform 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-5px);


}

.approach-image 
 {
                    margin-bottom: 1.5rem;

	    width: 100%;

	   height: 200px;

		object-fit: cover;

	   border-radius: 12px;
}

.approach-item h4 {


  font-size: 1.3rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 600;

}

.approach-item p {
  color: var(--text-light);
   line-height: 1.6;
}

.expertise-section {
  padding: 100px 20px;

  background: var(--bg-light);

}

.expertise-content {
  display   :        grid;
  grid-template-columns: 1.5fr 1fr;
   gap: 4rem;
   align-items: start;
}

.expertise-text h2 {
          font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
    font-weight: 700;
}

.expertise-list {
   display: flex;
    flex-direction:column;
  gap: 2rem;
}

.expertise-item h4


{
   font-size: 1.3rem;
  color: var(--primary-color);
   margin-bottom  :  0.5rem;
   font-weight: 600;
}

.expertise-item p {
  color: var(--text-light);
  line-height: 1.6;
  font-size     :     1.05rem;
}

.expertise-stats {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  background: var(--white);
   padding   :       2rem;
	border-radius: 12px;
  text-align: center;
  box-shadow: var(--shadow-light);
}

.stat-card .stat-number 
 {
  font-size: 2.2rem;
       font-weight: 700;
  color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-card .stat-text {
  color: var(--text-light);
  font-weight: 500;
   font-size     :0.95rem;
}

.values-section {
  padding: 100px 20px;
  background: var(--white);
}

.values-section h2 {
  text-align     :        center;
  font-size: 2.8rem;
  color: var(--primary-color);
   margin-bottom: 3rem;
  font-weight: 700;
}

.values-grid {
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-item {
  background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
   text-align: center;
  border-top: 4px solid var(--accent-color);
}

.value-item h4 {
   font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom  :       1rem;
	font-weight :      600;
}

.value-item p {
  color: var(--text-light);
   line-height: 1.6;
}

.why-us-section {
    padding: 100px 20px;
  background: var(--bg-light);
}

.why-us-content {
    display: grid;
  grid-template-columns: 1fr 1fr;
	 gap: 4rem;
    align-items: center;
}

.why-us-text h2 {
   font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 1.5rem;
    font-weight: 700;
}



.why-us-text p {
  color: var(--text-light);
   margin-bottom: 2rem;
    line-height: 1.6;
  font-size :        1.1rem;
}

.benefits-list {
  display: flex;
    flex-direction: column;
  gap: 1.5rem;
}

.benefit-item h5 {
  color: var(--primary-color);
   margin-bottom  :        0.5rem;
    font-weight: 600;
}

.benefit-item p
	{
  color: var(--text-light); 
			margin: 0; 
	  font-size: 0.95rem;
}

.why-us-image {

	   width: 100%;
   height: auto;
   border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.nav-links a.active
{
  color: var(--accent-color);
   font-weight     :600;
}

.thankyou-hero {
 padding: 120px 20px 80px;
  background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    text-align: center;
	
}

.thankyou-content {
    max-width: 600px;
          margin: 0 auto;
	
}

.success-icon {
	 margin-bottom: 2rem;
}

.checkmark-circle {
  width: 80px;
   height: 80px;
  background: var(--accent-color);
    border-radius: 50%;
    display  :flex;
    align-items: center;
  justify-content: center;
   margin: 0 auto;
      animation: pulse 2s infinite;
}


.checkmark {
    width: 25px;
    height: 15px;
  border: 3px solid var(--white);
   border-top: none;
  border-right: none;
  transform: rotate(-45deg);
}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}.thankyou-content h1  {
   font-size: 3rem;
  color: var(--primary-color);
    margin-bottom: 1rem;
   font-weight: 700;
}

.thankyou-subtitle {
       font-size: 1.3rem;
  color: var(--text-light);
  margin: 0;
	}

.confirmation-details {
	 padding: 100px 20px;
  background: var(--white);

}

.confirmation-grid {
  display: grid;
                    grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
               align-items:        center;
} 

.confirmation-text h2 {
    font-size     :   2.5rem;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-weight: 700;


}

.next-steps
{
  gap: 2rem;
            flex-direction: column;
      display: flex;
}

.step-item-thankyou {


  display: flex;
    align-items: flex-start;
 gap    :     1.5rem;
     }

.step-number-thankyou  
  {
   width     :        40px;
    height: 40px;
  background: var(--accent-color);
  color: var(--white);
  border-radius  :        50%;
  display: flex;
  align-items: center;
  justify-content: center;
   font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {

	  color: var(--primary-color);
    margin-bottom: 0.5rem;
  font-weight: 600;
}

.step-content p     {
  color: var(--text-light);
    line-height: 1.6;
	margin   :      0;
}

.confirmation-image {
    width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: var(--shadow-medium);
}

.meanwhile-section {
	padding: 100px 20px;
  background: var(--bg-light);

}

.meanwhile-section h2 {
   text-align: center;
   font-size:       2.8rem;
  color: var(--primary-color);
  margin-bottom: 3rem;
  font-weight: 700;
}

.meanwhile-grid 
 {
		display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.meanwhile-item {
  background: var(--white);
  padding: 2rem;
   border-radius: 16px;
  box-shadow: var(--shadow-light);
  text-align: center;
}

.meanwhile-image {


   width: 100%;
    height: 180px;
  object-fit: cover;
  border-radius: 8px;
   margin-bottom: 1.5rem;}

.meanwhile-item h4 {
  color: var(--primary-color);
    margin-bottom: 1rem;
   font-weight: 600;
}

.meanwhile-item p {
  color: var(--text-light);
  line-height: 1.6;

}

.urgent-contact {
   padding: 80px 20px;
  background: var(--white);
}

.urgent-info {
    max-width: 800px;
    margin: 0 auto;
    text-align    :   center;
}

.urgent-info h3 {
                    font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
	
} 

.urgent-info p {
  font-size: 1.1rem;
  color: var(--text-light);
          margin-bottom: 2rem;
   line-height: 1.6;
}

.contact-options {

	         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
   margin-top: 2rem;
}

.contact-option {
  background: var(--bg-light);
    padding: 2rem;
  border-radius: 12px;
    text-align: center;
}

.contact-option h5 {
  color: var(--primary-color);
   margin-bottom: 1rem;
       font-weight:     600;
}

.contact-option p


{
  color: var(--text-dark);
	margin-bottom: 0.5rem;
    font-weight: 500;
}

.contact-option span {
  color: var(--text-light); 
    font-size: 0.9rem;
}

.testimonial-preview {
   padding: 100px 20px;
  background: var(--bg-light);
}

.testimonial-preview h3 {
	text-align: center;
    font-size: 2.5rem;
  color: var(--primary-color);
    margin-bottom: 3rem;
    font-weight: 700;
}

.testimonials-grid


{
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
   border-radius: 16px;
  box-shadow: var(--shadow-light);
    position     :       relative;
}

.testimonial-card p {

  color: var(--text-light);
          line-height: 1.6;
      font-style: italic;
    margin-bottom: 1.5rem;

}

.testimonial-author strong {
  color: var(--primary-color);
	display: block;
	margin-bottom: 0.3rem;


}

.testimonial-author span {
  color: var(--text-light);
  font-size: 0.9rem;
	
}

.return-navigation 
 {
  padding: 60px 20px;
  background: var(--white);
   text-align: center;
}

.return-buttons {

   display: flex;
    gap: 1rem;
   justify-content: center;
          flex-wrap: wrap;

}

.return-btn {
    display: inline-block;
	padding: 14px 28px;
  text-decoration: none;
	border-radius: 8px;
   font-weight: 600;
	transition: all 0.3s ease;
     border: 2px solid transparent;
}

.return-btn.primary {

	  background: var(--accent-color);
  color: var(--white);

} 

.return-btn.primary:hover  
  {
    background: #d56f1f;
  transform: translateY(-2px);
}

.return-btn.secondary {
       background: transparent;
  color: var(--secondary-color);
  border-color: var(--secondary-color);
     } 

.return-btn.secondary:hover {


  background: var(--secondary-color);
  color: var(--white);}@media (max-width: 768px) {
    .story-grid,
    .expertise-content,
    .why-us-content,
    .confirmation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-blocks {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-stats {
        grid-template-columns: 1fr;
    }
    
    .hero-content-about h1 {
        font-size: 2.5rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .return-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .return-btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content-about h1 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .approach-grid,
    .meanwhile-grid {
        grid-template-columns: 1fr;
    }
}.content-container h1 {
  font-size: 2.8rem;
  color: var(--primary-color);
	margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.content-container h2 {
   font-size: 1.8rem;
  color: var(--primary-color);
          margin: 1.5rem 0 1rem;
    font-weight: 600;
}



.content-container p {
  font-size: 1.1rem;
  color: var(--text-light);
    line-height: 1.7;
   margin-bottom: 1.5rem;
}

.content-container ul {
  list-style: none;
  padding-left  :20px;
    margin-bottom: 1.5rem;
}

.content-container ul li {
	    position: relative; 
  color: var(--text-light); 
    margin-bottom: 0.8rem; 
  padding-left    :   20px;


}  

.content-container ul li:before {
  content: "✓";
  position: absolute;
  left :   0;
  color: var(--accent-color);
    font-weight: bold;
}