*

{


   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: #f8f9fa;
}

.main-navigation {
    background: #ffffff;
  padding: 1.2rem 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
               position: sticky;
   top: 0;
       z-index: 1000;
}

.nav-wrapper		{
      margin: 0 auto;
                    padding    :      0 2.5rem;
   justify-content: space-between;
	display: flex;
    align-items: center;
	 max-width: 1400px;}

.site-logo {
  height: 48px;
	width : auto;
}

.navigation-links {
  display: flex;

    gap: 2.8rem;
	
}

.nav-link {


  text-decoration: none;
   color: #34495e;
  font-weight:    500;
  font-size: 1.05rem;
   transition: color 0.3s;
  position: relative;}



.nav-link:hover,
.nav-link.active {
    color     :     #2980b9;
}

.nav-link.active::after {
  content: '';
  width: 100%;
   position: absolute;
    background: #2980b9;
        height: 3px;
   bottom: -8px;
    left: 0;
}

.mobile-toggle {


    display: none;
   background     :  none;
   border: none;
   cursor   :       pointer;
  flex-direction: column;
   gap: 5px;


}

.burger-line {
   width: 28px;
  background: #34495e;
   height: 3px;
  transition: all 0.3s;
}

.hero-section
{
   max-width: 1400px;
   margin: 0 auto;
  padding: 5rem 2.5rem;
    display: grid;
 grid-template-columns: 1.2fr 1fr;
	gap: 4rem;
   align-items   :   center;
	
}

.hero-content h1 {
               font-size: 3.2rem;
   color: #1a252f;
   margin-bottom:  1.5rem;
  line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.25rem;

    color: #546e7a;

		 margin-bottom: 2.5rem;

  line-height     :    1.7;
}

.hero-actions {
               display   :    flex;
  gap: 1.5rem;
}

.primary-btn,
.secondary-btn {
    padding: 1rem 2.2rem;
   text-decoration: none;
  border-radius: 6px;
   font-weight: 600;
   font-size:  1.05rem;
   transition: all 0.3s;
         display  :   inline-block;
}

.primary-btn {
    background: #2980b9;
  color: white;


}

.primary-btn:hover {
  transform: translateY(-2px);

	   background: #1f6391;
}

.secondary-btn{
	background: transparent;
	color: #2980b9;
   border: 2px solid #2980b9;
}

.secondary-btn:hover{


   color: white;
   background: #2980b9;


}

.hero-image img {

  width: 100%;
        border-radius    :       12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
	}

.intro-section {


  background: white; 
	  padding: 5rem 0;
	}

.content-container {
   max-width:1400px;
  margin     : 0 auto;
	padding: 0 2.5rem;
    display: grid;
   grid-template-columns: 1.1fr 0.9fr;
  gap: 4.5rem;
    align-items: center;
}

.intro-text h2 {
	   font-size: 2.5rem;
	   color:       #1a252f;
	   margin-bottom: 1.8rem; 
	
     }

.intro-text p {
   font-size:       1.1rem;

   color: #455a64;

   margin-bottom: 1.5rem;

   line-height: 1.8;

}

.intro-visual img		{
  width: 100%;
    border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.services-overview {
   padding: 5.5rem 2.5rem;
   max-width: 1400px;
    margin: 0 auto;
	
}

.section-header {
  text-align: center;
  margin-bottom:   4rem;

}

.section-header h2 {

	   font-size: 2.8rem;
  color: #1a252f;
   margin-bottom: 1rem; 
}

.section-header p {

	   font-size: 1.15rem; 
	   color: #546e7a;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.service-card {
   background: white;
   padding: 2.5rem;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
                    transition: transform 0.3s;
   position: relative;
}

.service-card:hover {
  transform: translateY(-8px); 

}

.service-card.featured {
	border: 2px solid #2980b9;


}

.popular-badge {
     font-weight: 600;
	  background: #2980b9;
		padding: 0.5rem 1.2rem;
	  font-size    :   0.85rem;
	   color :   white;
	    border-radius: 20px;
		 top: -15px;
	   position: absolute;
	  right: 20px;
}



.service-card h3 {
   font-size: 1.6rem;
	 color: #1a252f;
    margin-bottom: 1.2rem;
}

.service-card p {
 color: #546e7a;
     margin-bottom: 1.5rem;
   line-height: 1.7;


}

.service-features {

	 list-style: none;

}

.service-features li {
  padding: 0.6rem 0;
   color: #455a64;
  position: relative;
  padding-left: 1.8rem;
}

.service-features li::before		{
  content: '✓'; 
   position   : absolute; 
  left: 0; 
  color: #2980b9; 
          font-weight : bold;
}



.methodology-section {
               padding: 5.5rem 2.5rem;
               background: #ecf0f1;
}

.methodology-content {
    max-width: 1400px; 
  margin: 0 auto; 
   display    :    grid; 
   grid-template-columns: 1.3fr 0.7fr; 
	 gap:   4rem; 
    align-items   : center;
}


.method-description h2 {

		 font-size: 2.6rem; 
	    color   :   #1a252f; 
	    margin-bottom: 1.5rem;
	}

.method-description > p {
   font-size: 1.1rem;
  line-height: 1.8;
   margin-bottom: 2.5rem;
   color    :  #455a64;
}

.method-steps {
    display: grid;
    gap: 2rem;
}

.step-item {
   display: flex;

	   gap: 1.5rem;

	               align-items    : start;
}

.step-number {
    font-size  :      1.8rem;
    font-weight: 700;
   color: #2980b9;
	min-width: 50px; 
	
}

.step-item h4 {
   font-size    :       1.3rem;
    color: #1a252f;
   margin-bottom: 0.5rem;
}

.step-item p {
   color: #546e7a;
          line-height: 1.6;
}

.method-image img {
    width: 100%;
   	border-radius: 10px;
     box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.cta-section


{

  background: linear-gradient(135deg, #2980b9 0%, #1f6391 100%);
   padding: 5rem 2.5rem;
  color: white;


}

.cta-container {
   max-width: 1200px;
   margin: 0 auto;
   display: grid;
	grid-template-columns   :       1.2fr 0.8fr;
   gap: 3.5rem;
    align-items  :  center;
}

.cta-text h2 {
  font-size: 2.8rem;
       margin-bottom: 1.5rem;
}

.cta-text p {
    font-size    :       1.15rem;
  line-height: 1.8;
    margin-bottom: 1.2rem;
	opacity: 0.95;
}

.cta-action

{

    text-align: center;
     }

.cta-button {
   display: inline-block;

	 background: white;

    color: #2980b9;

    padding: 1.3rem 2.5rem;

	text-decoration: none;

	border-radius: 6px;

    font-weight :     700;

    font-size: 1.1rem;

    transition: all 0.3s;
}

.cta-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
	}

.cta-note {
    margin-top: 1.2rem;
  font-size: 0.95rem;
         opacity: 0.9; 

}

.benefits-section {
   padding: 5.5rem 2.5rem;
  max-width: 1400px;
               margin: 0 auto;
}

.benefits-section h2 {
  font-size :        2.8rem;
	text-align: center;
  color: #1a252f;
    margin-bottom: 3.5rem;
}

.benefits-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap: 2.5rem;
   margin-bottom:3.5rem;
}

.benefit-item

{
    background     :    white;
    padding: 2rem;
    border-radius: 8px;
  box-shadow: 0 3px 12px rgba(0,0,0,0.08);
}

.benefit-item h3 {
  font-size: 1.5rem;
   color: #1a252f;
    margin-bottom :    1rem;
}

.benefit-item p {
     color: #546e7a;
   line-height: 1.7;
}

.benefits-image img {
  width: 100%;
   border-radius   :     10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12); 
	
}

.testimonials-section {
	 background: #ecf0f1;
   padding: 5.5rem 2.5rem;
}

.testimonials-section h2   {
	 font-size: 2.8rem;
    text-align: center;
    color: #1a252f;
	margin-bottom: 3.5rem;
}

.testimonials-grid {
  max-width: 1400px;
    margin: 0 auto;
   display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card{
   background: white;
    padding: 2.5rem;
   border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-size: 1.05rem;
   color     :       #455a64;
					line-height: 1.8;
   margin-bottom :     1.5rem;
  font-style: italic; 

}

.testimonial-author {
  color: #2980b9;
	font-weight: 600;
}

.contact-section {
	padding: 5.5rem 2.5rem; 
	   max-width: 1400px; 
	 margin: 0 auto;
}



.contact-wrapper {
    grid-template-columns: 0.9fr 1.1fr;
   gap: 4rem;
   display: grid;
}

.contact-info h2 {
  margin-bottom  :       1.5rem;
  font-size:2.5rem;
    color: #1a252f;
}

.contact-info > p {
	         color: #546e7a;
  font-size: 1.1rem;
  line-height: 1.8;
	 margin-bottom: 2.5rem;
}

.contact-details {
	margin-bottom :      2.5rem;
} 

.detail-item {


  margin-bottom    : 1.8rem;


}

.detail-item h4 {
   font-size: 1.2rem;
    color: #1a252f;
  margin-bottom: 0.5rem;
}

.detail-item p {

   color: #546e7a;
	  line-height: 1.6;

}

.contact-image {
  margin-top: 2rem;
	
}

.contact-image img {

   width: 100%;
   border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);


}  

.contact-form-container {
    background: white;
    padding: 3rem;
   border-radius: 10px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.contact-form .form-group {
   margin-bottom:    1.8rem;
}

.contact-form label   {
    display: block;
       font-weight: 600;
	color: #34495e;
    margin-bottom: 0.6rem;
  font-size: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
  padding: 0.9rem;
    border: 2px solid #dfe6e9;
   border-radius     :    6px;
    font-size: 1rem;
       font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
     outline: none;
		 border-color: #2980b9;
	}

.contact-form textarea {
	    resize: vertical;
   min-height: 120px; 



}


.submit-btn {
    background: #2980b9;
	width: 100%;
  color: white;
  cursor: pointer;
   padding: 1.1rem 2.5rem;
  font-weight: 600;
    border: none;
  border-radius: 6px;
		 font-size: 1.1rem;
  transition: all 0.3s;
}

.submit-btn:hover {
               background: #1f6391; 
	  transform: translateY(-2px);
}

.site-footer {
  background     :    #1a252f;
  color: white;
   padding: 3.5rem 2.5rem 1.5rem;
}

.footer-content
	{
   margin-bottom    :2.5rem;
    margin: 0 auto;
      display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
   gap: 3rem;
  max-width: 1400px;
}

.footer-logo {

	    height: 50px;
  width: auto;
    margin-bottom: 1.2rem;
  filter: brightness(0) invert(1);
}

.footer-description {
   color: #b2bec3;
   line-height: 1.7;
}

.footer-section h4 {
  font-size: 1.3rem;
   margin-bottom: 1.2rem;
}

.footer-links {
         list-style:      none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
   color   :        #b2bec3;
	text-decoration: none;
					transition: color 0.3s;
}

.footer-links a:hover {
  color: white;
}

.footer-section p {

   color :        #b2bec3;
    line-height: 1.7; 
	
	}

.footer-bottom {
	  text-align    :center;
	 padding-top: 2rem;
   border-top: 1px solid #34495e;
    color: #b2bec3;}@media (max-width: 1024px) {
    .hero-section,
    .content-container,
    .methodology-content {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .cta-container {
        grid-template-columns: 1fr;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .navigation-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        gap: 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }

    .navigation-links.active {
        max-height: 300px;
    }

    .nav-link {
        padding: 1.2rem 2.5rem;
        display: block;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-link.active::after {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
    }

    .section-header h2,
    .benefits-section h2,
    .testimonials-section h2 {
        font-size: 2rem;
    }

    .nav-wrapper {
        padding: 0 1.5rem;
    }

    .hero-section,
    .services-overview,
    .methodology-section,
    .cta-section,
    .benefits-section,
    .testimonials-section,
    .contact-section {
        padding: 3rem 1.5rem;
    }
}.page-hero {
  background: linear-gradient(rgba(41, 128, 185, 0.85), rgba(31, 99, 145, 0.85)), url('elements/inner_strength_business_photos_2.webp') center/cover;
   padding: 8rem 2.5rem 6rem;
    text-align: center;
  color: white;
} 

.hero-overlay h1 {
	  font-size   :      3.5rem;
          margin-bottom: 1rem;}

.hero-overlay p {
   font-size: 1.3rem;
   opacity: 0.95;
}

.about-intro {
  padding:   6rem 2.5rem;
   max-width: 1400px;
	 margin: 0 auto;


}

.about-container {
	display    :      grid;
	grid-template-columns  :      1.3fr 0.7fr;
   gap: 4.5rem;
    align-items: center;
}

.about-content h2 {
  font-size: 2.7rem;
  color    : #1a252f;
    margin-bottom: 1.8rem;
}

.about-content p    {
    font-size: 1.1rem; 
	   color: #455a64; 
	         line-height: 1.85; 
	      margin-bottom :  1.6rem;
}

.about-image img	{
   width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.mission-values {
          background: #f8f9fa;
   padding :     6rem 2.5rem;
}

.mission-wrapper {
  max-width  :       1400px;
   margin   :      0 auto;
  display: grid;
    gap  :  4rem;
}

.mission-block h2,
.values-block h2
{
    font-size: 2.5rem;
  color: #1a252f;
   margin-bottom: 1.5rem;

}

.mission-block p {
	font-size    : 1.15rem;
	color: #455a64;
   line-height :   1.8;
       margin-bottom: 1.3rem;
}

.values-list {
  display    :    grid;
  grid-template-columns: repeat(2, 1fr);
  gap  :    2.5rem;
    margin-top: 2rem;
}

.value-item {
  background: white;
  padding: 2rem;
	border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);}

.value-item h3 {
  font-size: 1.5rem;
  color: #2980b9;
    margin-bottom: 1rem;
}

.value-item p {
	color: #546e7a;
    line-height: 1.7;
}

.approach-section  {
    padding: 6rem 2.5rem;
  max-width :   1400px;
               margin: 0 auto;
}

.approach-content h2
{
    font-size: 2.8rem;
               color: #1a252f;
   text-align    :center;
  margin-bottom: 1.5rem;
}  

.approach-intro {
	font-size: 1.15rem;
    color: #546e7a;
    text-align   :center;
  max-width: 900px;
  margin: 0 auto 3.5rem;
     line-height: 1.8;
}

.approach-grid {

	    display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap   :   2.8rem;


}

.approach-card {
    background: white;
  padding: 2.5rem;
    border-radius  :     10px;
    border-left:     5px solid #2980b9;
  box-shadow: 0 5px 18px rgba(0,0,0,0.09);
  transition: all 0.3s;
}

.approach-card:hover {
  transform: translateX(8px);
}

.approach-card h3 {


    font-size: 1.6rem;
  color: #1a252f;
  margin-bottom: 1rem;
}

.approach-card p {
                       color:        #546e7a;
  line-height: 1.75;
     }

.experience-section	{

	   background: #ecf0f1;
   padding: 6rem 2.5rem;

}

.experience-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
 grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
	align-items: center;
}

.experience-image img {


  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.experience-text h2 {
  font-size: 2.6rem;
	color: #1a252f;
  margin-bottom: 1.8rem;
}

.experience-text p {
                    font-size: 1.1rem;
   		 color: #455a64;
       line-height: 1.8;
   	 margin-bottom: 1.5rem;
	
}

.stats-section {

  background: linear-gradient(135deg, #2980b9 0%, #1f6391 100%);

	        padding :      5rem 2.5rem;

	      color: white;
	}

.stats-container 
 {
    max-width: 1400px;
  margin :  0 auto;
    display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap: 3rem;
}

.stat-item {
	    text-align     :      center;
}

.stat-number {


   display: block;
    font-size: 3.5rem;
       font-weight: 700;
	margin-bottom: 0.5rem; 

}


.stat-label {

	                    display: block;
   font-size: 1.1rem;
       opacity: 0.9;


}

.philosophy-section {
          padding: 6rem 2.5rem;
  max-width :      1400px;
               margin: 0 auto;
}

.philosophy-content h2
{
        font-size: 2.8rem;

	    color: #1a252f;

	   text-align: center;

	  margin-bottom   :      3.5rem;
}

.philosophy-blocks {
    display: grid; 
	  gap: 3rem;
}

.philosophy-item {
    background: #f8f9fa;
       padding :3rem;
    border-radius     :10px;
    border-top    :    4px solid #2980b9;
}

.philosophy-item h3
{
    font-size: 1.8rem;
               color: #1a252f;
    margin-bottom: 1.2rem;
}

.philosophy-item p {
	color: #546e7a;
    font-size:    1.1rem;
    line-height: 1.8;
}

.team-commitment	{
   background: white;
	padding: 6rem 2.5rem;


}

.commitment-wrapper {
  max-width: 1400px;
    margin:0 auto;
	 display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap     :4rem;
   align-items: center;
}

.commitment-text h2 {
      font-size: 2.6rem;
	 color: #1a252f;
   margin-bottom: 1.5rem;

}

.commitment-text > p {
    font-size   :    1.1rem;
   color  :#455a64;
    line-height   :        1.8;
    margin-bottom: 2rem;


}

.commitment-list {
  list-style  :     none;
    padding-left: 0;
	
}

.commitment-list li {
	  padding    :        1rem 0;
   padding-left:        2.5rem;
  color: #455a64;
    font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
	 border-bottom: 1px solid #ecf0f1;


}

.commitment-list li::before {
  content: '→';
    position: absolute;
	left: 0;
    color :     #2980b9;
    font-size: 1.5rem;
   font-weight: bold;
}

.commitment-image img {
   width: 100%; 
		border-radius :      10px; 
	  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}  

.cta-about {
     background: #2980b9;
  padding: 5rem 2.5rem;
   text-align: center;
  color: white;
}

.cta-about-content	{
    max-width     :  800px;
	margin: 0 auto;
}

.cta-about-content h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.cta-about-content p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
				 line-height: 1.8;
  opacity: 0.95;
}

.cta-about-btn {
  display: inline-block;
               background: white;
  color: #2980b9;
    padding: 1.3rem 3rem;
  text-decoration: none;
  border-radius: 6px;
	font-weight: 700;
    font-size :       1.15rem;
  transition: all 0.3s;
}



.cta-about-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.thankyou-container {
               max-width: 1400px;
    margin: 0 auto;
    padding: 5rem 2.5rem;
  display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap  : 4rem;
   align-items: start;
}

.thankyou-content    {
	background: white;
   padding:   3.5rem;
    border-radius :   12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.success-icon {
  text-align: center;
   margin-bottom: 2rem;
	}

.thankyou-content h1 {
  font-size: 2.8rem;
    color: #1a252f;
  text-align: center;
   margin-bottom: 1.5rem;
}

.thankyou-message {
		 font-size: 1.15rem;
    color: #546e7a;
   text-align: center;
  line-height: 1.8;
   margin-bottom: 3rem;
	
}

.next-steps {

	    margin-bottom: 3rem;

}

.next-steps h2 {
	    font-size  :  2rem;
	color: #1a252f;
	margin-bottom :     2rem;
  text-align: center;
     }

.steps-grid		{

	  display: grid;
   gap :  2rem;

}

.step-box {
       background: #f8f9fa;
  padding   :    2rem;
   border-radius: 8px;
    display   :    flex;
  gap: 1.5rem;
 align-items: start;


}

.step-num {
    background: #2980b9;
    color: white;
  width: 50px;
	 height: 50px;
     border-radius: 50%;
   display: flex;
   align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
  flex-shrink: 0;
}

.step-box h3 {
    font-size: 1.4rem;
   color: #1a252f;
    margin-bottom: 0.5rem;
}

.step-box p {
      color: #546e7a;
     line-height: 1.7;
}

.thankyou-info {
  background: #ecf0f1;
   padding  :       2.5rem;
               border-radius:        8px;
  margin-bottom: 3rem;}

.thankyou-info h2 {
	 font-size: 1.8rem;
  color: #1a252f;
  margin-bottom: 1rem;
}

.thankyou-info p

{
      color: #455a64;
  line-height   :    1.8;
     }

.thankyou-actions {
         display: flex;
   margin-bottom: 3rem;
    gap: 1.5rem;
  justify-content: center;
	
}

.back-home-btn,
.about-us-btn   {
         padding :1.1rem 2.5rem;
    text-decoration: none;
	border-radius  :     6px;
   font-weight: 600;
         font-size: 1.05rem;
  transition: all 0.3s;
   display  :inline-block; 
	
}

.back-home-btn {
  background: #2980b9;
    color:      white;
	
}

.back-home-btn:hover {
   	 background: #1f6391;
  transform: translateY(-2px);


}


.about-us-btn {
   border: 2px solid #2980b9;
	 background: transparent;
   color: #2980b9;
}

.about-us-btn:hover {
  color: white;
      background:       #2980b9;
}

.contact-reminder {

   padding-top: 2rem;
    border-top: 2px solid #ecf0f1;
   text-align: center;

}

.contact-reminder h3 {
  font-size   :        1.6rem;
	 color: #1a252f;
   margin-bottom: 1rem;
}

.contact-reminder p {
     color: #546e7a;
    line-height: 1.7;
   margin-bottom    : 0.5rem;
     }

.phone-number {
  font-size     :    1.3rem; 
   color: #2980b9; 
   font-weight: 700; 
   margin:       1rem 0;
}

.address-info {
  font-size: 1rem;
    color :    #455a64;
}


.thankyou-visual img   {
	width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    position: sticky;
   top: 120px;
}@media (max-width: 1024px) {
    .about-container,
    .experience-wrapper,
    .commitment-wrapper,
    .thankyou-container {
        grid-template-columns: 1fr;
    }

    .values-list,
    .approach-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .thankyou-visual img {
        position: static;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 5rem 1.5rem 4rem;
    }

    .hero-overlay h1 {
        font-size: 2.3rem;
    }

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .about-intro,
    .mission-values,
    .approach-section,
    .experience-section,
    .stats-section,
    .philosophy-section,
    .team-commitment,
    .cta-about,
    .thankyou-container {
        padding: 3rem 1.5rem;
    }

    .about-content h2,
    .mission-block h2,
    .values-block h2,
    .approach-content h2,
    .experience-text h2,
    .philosophy-content h2,
    .commitment-text h2,
    .cta-about-content h2,
    .thankyou-content h1 {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-content {
        padding: 2rem;
    }
}.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;
    }
}