* {
    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: #fefefe;
    overflow-x: hidden;
}

.menu-open {
   overflow    :        hidden;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
  font-weight: 600;
   line-height: 1.2;
}

h1 {
   font-size: 2.8rem;
}  

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size   :     1.8rem;
}

h4 {
  font-size: 1.4rem;
}

p {
  margin-bottom: 1.2rem;
  font-size: 16px;
}

a   {
  text-decoration: none;
    color: inherit;
  transition: all 0.3s ease;
}

.main-navigation {
   position: fixed;
   top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.main-navigation.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.main-navigation.hidden {
  transform: translateY(-100%);
}

.nav-container {

	         max-width: 1200px;
    margin: 0 auto;
   display: flex;
    align-items: center;
   justify-content  : space-between;
         padding: 1rem 2rem;

}

.brand-section .brand-logo {
         height: 45px;
    width: auto;
}

.menu-links {
   display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    font-weight: 500;
  color: #2c3e50;
  padding: 0.5rem 1rem;
  border-radius: 6px;
   transition: all 0.3s ease;


}

.nav-item:hover {
  color: #3498db;
  background-color: rgba(52, 152, 219, 0.1);
}

.burger-menu {
   display: none;
  flex-direction: column;
    cursor: pointer;
    padding: 8px;
}

.burger-line {

	     width: 25px;
  transition: all 0.3s ease;
  margin: 3px 0;
          background-color: #2c3e50;
    height  :      3px;
     }

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3)


{
  transform: rotate(-45deg) translate(7px, -6px);
}

.mobile-menu {
  display: none;
   position: absolute;
  top: 100%;
    left: 0;
   width: 100%;
    background:   white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
      padding: 2rem;
  flex-direction: column;
   gap: 1rem;
}

.mobile-menu.active {
   display: flex;
}

.mobile-link {
    padding   : 1rem;
 color : #2c3e50;
   font-weight: 500;
   border-radius: 8px;
    transition: all 0.3s ease;
}

.mobile-link:hover {
    background-color: #3498db;
    color:        white;
}

.hero-banner {
  margin-top: 80px;
    padding: 4rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color :white;
    min-height: 600px;
   display:  flex;
   align-items: center;
}

.hero-content {
  max-width  :1200px;
  margin   :   0 auto;
   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
}

.hero-text h1 {
   font-size: 3.2rem;
   font-weight: 700;
    margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-description {
    font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
    line-height: 1.7;
}

.hero-actions {
  display: flex;
    gap: 1rem;
          flex-wrap: wrap;
}

.primary-button, .secondary-button {
   padding: 12px 30px;
    border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
    transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
    border: 2px solid transparent;
  cursor: pointer;
}

.primary-button {
    background: #f39c12;
    color: white;
	border-color     :  #f39c12;
}

.primary-button:hover {
   background: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(243, 156, 18, 0.3);
}

.secondary-button {
        background: transparent;
  color: white;
   border-color: white;
}

.secondary-button:hover {
   background: white;
  color: #667eea;
}

.hero-visual .hero-image {
   width: 100%;
  height: auto;
	border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  transform: perspective(1000px) rotateY(-5deg);
   transition: transform 0.3s ease;
}

.hero-visual .hero-image:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.services-overview {
    padding:      5rem 2rem;
    background-color: #f8f9fa;
}

.services-container {
  max-width:    1200px;
	margin: 0 auto;
    text-align  : center;
}

.services-container h2 {
  font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 3rem;
	
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
	gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    opacity   :0;
  transform: translateY(30px);
}

.service-card.animate {
	    opacity: 1;
  transform: translateY(0);}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-image {
  width: 100%;
	height: 220px;
               object-fit: cover;
	 border-radius: 10px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
  color: #2c3e50;
	margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-card p {
        color: #7f8c8d;
    line-height: 1.7;
   font-size: 15px;
}

.methodology-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #74b9ff 0%, #0984e3 100%);
  color: white;
}

.methodology-wrapper {
  margin: 0 auto;
  align-items   :      center;
    display: grid;
    grid-template-columns: 1fr 1fr;
	max-width  : 1200px;
    gap: 4rem;
}

.methodology-content h2 {
	    font-size: 2.4rem;
	margin-bottom  :        1.5rem;
	}

.methodology-content p {
   font-size: 1.1rem;
    margin-bottom: 2.5rem;
   opacity: 0.9;
}

.methodology-features {
   display: flex;
   flex-direction: column;
   gap: 1.5rem;
}

.feature-item {
  background: rgba(255,255,255,0.1);
    padding: 1.5rem;
  border-radius: 10px;
  backdrop-filter: blur(5px);
    opacity: 0;
  transform: translateX(-30px);
    transition: all 0.3s ease;
}

.feature-item.animate {
    opacity: 1;
  transform: translateX(0);
}



.feature-item h4 {
    margin-bottom: 0.8rem;
  color   : #fff;
}

.feature-item p {
	    font-size  :       14px;
   opacity: 0.9;
   margin: 0;
     }

.methodology-image {
  width: 100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2); 
	
}  

.cta-section {
    padding: 4rem 2rem;
    background: #2c3e50;
  color: white;
   text-align: center;
}

.cta-content {
  max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
	 font-size: 2.3rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.1rem;
    margin-bottom     :      2.5rem;
  opacity: 0.9;

}

.cta-button {
          display: inline-block;
  padding: 15px 40px;
       background: #e74c3c;
   color:  white;
               border-radius: 8px;
   font-weight: 600;
    font-size: 1.1rem;
   transition: all 0.3s ease;
}

.cta-button:hover {
            background: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
	
	}


.contact-section {
	background: #ecf0f1;
	padding: 5rem 2rem; 

}

.contact-container {
   max-width: 800px;
    margin: 0 auto;
   text-align: center;
}

.contact-container h2 {
   font-size: 2.4rem;
    color: #2c3e50;
	 margin-bottom: 1rem;
}

.contact-container p {
   font-size :       1.1rem;
   color: #7f8c8d;
   margin-bottom :    3rem;
}

.contact-form    {
    background: white;
  padding: 3rem;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
   text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-field {
   margin-bottom     :       1.5rem;
}

.form-field label {
  font-size: 14px;
   font-weight: 600;
   display: block;
    margin-bottom: 0.5rem;
       color: #2c3e50;
}

.form-field input,
.form-field select,
.form-field textarea {
   width: 100%;
  padding: 12px 15px;
		border: 2px solid #ddd;
   border-radius: 8px;
    font-size: 16px;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus
{
      outline    :  none;
  border-color: #3498db;
   background-color: white;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-field input.error,
.form-field select.error,
.form-field textarea.error {
    border-color: #e74c3c;
   background-color: #fdf2f2;
}

.form-field textarea {
   resize: vertical;
    min-height: 120px;
}

.submit-button {
  width     :        100%;
   padding: 15px;
  background: #27ae60;
  color: white;
          border: none;
   border-radius: 8px;
   font-size: 1.1rem;
  font-weight: 600;
    cursor:pointer;
    transition   : all 0.3s ease;
}

.submit-button:hover {
  background: #229954; 
  transform: translateY(-2px); 
  box-shadow: 0 8px 25px rgba(39, 174, 96, 0.3);

}

.submit-button:disabled    {
          background: #95a5a6;
    cursor    :        not-allowed;
   transform: none;
  box-shadow: none;
}

.site-footer {
  background: #2c3e50;
   color: white;
   padding    :   3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
   display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}

.footer-section h4 {

	  margin-bottom: 1rem;
  color: #ecf0f1;
   font-size    :     1.2rem;

}

.footer-brand .footer-logo{
         height  :    50px;
   width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-description {
  color: #bdc3c7;
  font-size: 14px;
    line-height: 1.6;
}

.footer-links {
   list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem; 
	
}

.footer-links a {

	  color: #bdc3c7;
  transition     :color 0.3s ease;
         font-size: 14px;
     }

.footer-links a:hover {
	color: #3498db;
}

.contact-info p {
    font-size: 14px;
   margin-bottom: 0.5rem;
   color: #bdc3c7;
}

.footer-bottom   {

	     margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
   text-align: center;
	}

.footer-bottom p {
    color  :#95a5a6;
   font-size: 14px;
  margin: 0;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .menu-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .methodology-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .nav-container {
        padding: 1rem;
    }
    
    .contact-form {
        padding: 2rem 1.5rem;
    }
    
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-banner {
        padding: 3rem 1rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .services-overview,
    .methodology-section,
    .contact-section {
        padding: 3rem 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-button,
    .secondary-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.animate {
   animation: fadeInUp 0.6s ease forwards;
}

.nav-item.active,
.mobile-link.active {

          color: #3498db;
  background-color: rgba(52, 152, 219, 0.1);

}

.page-hero 
 {
    margin-top: 80px; 
      padding: 4rem 2rem 2rem; 
  background: linear-gradient(135deg, #8e44ad 0%, #3498db 100%); 
          color: white; 
   text-align: center; 
    min-height: 320px; 
    display: flex; 
    align-items: center; 
  justify-content: center;
}

.page-hero-content h1 {
          font-size: 3rem;
  margin-bottom: 1rem;
                    font-weight: 700;


}

.hero-subtitle {
	    font-size: 1.3rem;
    opacity     :        0.9;
  max-width: 600px;
   margin: 0 auto;


}

.company-story {
   padding: 5rem 2rem;
    background  :     white;
}

.story-container	{
    max-width: 1200px;
	 margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.story-content h2 {
    color: #2c3e50;
   margin-bottom: 2rem;
    font-size: 2.4rem;
}

.story-content p {

   line-height: 1.8;
   font-size: 1.1rem;
    color: #555;
   margin-bottom: 1.5rem;
}

.story-image {
    width: 100%;
    height     : auto;
	 border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.philosophy-section {
	 background: #f8f9fa;
  padding: 5rem 2rem;
}

.philosophy-wrapper {
    max-width: 1200px;
    margin     :  0 auto;
   text-align: center;
}

.philosophy-wrapper h2 {
        color: #2c3e50;
    font-size: 2.4rem;
    margin-bottom: 3rem;
}

.philosophy-grid {
  display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2rem;
       margin-top :2rem;
}

.philosophy-card {

	   background: white;
   padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s ease;
}



.philosophy-card:hover {
  transform: translateY(-5px);
}

.philosophy-card h3 {
    color: #2c3e50;
    margin-bottom: 1rem;
      font-size: 1.4rem;
}

.philosophy-card p {
   color: #666;
    line-height: 1.7;
  font-size: 15px;
}

.team-section {

    padding: 5rem 2rem;
  background: white;
}

.team-container {
   max-width: 1200px;
	 margin: 0 auto;
   text-align: center;
}

.team-container h2 {
  color: #2c3e50;
  font-size     :        2.4rem;
  margin-bottom     :     1rem; 

}

.team-intro {
         color: #666;
    font-size   : 1.2rem;
  margin-bottom     : 4rem;
   max-width  : 700px;
  margin-left: auto;
  margin-right: auto;
}

.team-grid {
    display     :       flex;
   flex-direction: column;
   gap: 3rem;
}

.team-member

{
   display: grid;
   grid-template-columns: 300px 1fr;
  gap: 3rem;
  align-items: center;
    text-align :       left;
			padding   :       2rem;
    border-radius    :       15px;
   background: #fafafa;
   transition: all 0.3s ease;
}

.team-member:hover {
   background: #f0f0f0;
  transform: translateY(-3px);
}

.team-member:nth-child(even) {
  grid-template-columns    :     1fr 300px;
}

.team-member:nth-child(even) .member-image {

  order: 2;
	}

.member-photo {
  width: 100%;
  height :       250px;
  object-fit: cover;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.member-info h3 {
    color: #2c3e50;
   font-size: 1.6rem;
  margin-bottom: 0.5rem;
}



.member-info h4 {
  color: #3498db;
	 font-size: 1.1rem;
  margin-bottom :    1rem;
  font-weight: 500;

}

.member-info p  {
   color: #555;
   line-height: 1.7;
   font-size  :    15px;
}

.approach-section	{
          padding: 5rem 2rem;
  background: linear-gradient(135deg, #e17055 0%, #d63031 100%);
    color: white;
}

.approach-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
  align-items: center;
}

.approach-content h2 
 {
     margin-bottom: 1.5rem;
  font-size: 2.4rem;
}

.approach-content > p
{
    font-size: 1.1rem;
 margin-bottom: 3rem;
    opacity: 0.9;
}

.approach-steps {
	 display: flex;
    flex-direction: column;
  gap: 2rem;
}

.step-item {
   display: flex;
    align-items: flex-start;
   gap     :    1.5rem;
  background: rgba(255,255,255,0.1);
   padding: 2rem;
   border-radius: 10px;
  backdrop-filter: blur(5px);
}

.step-number {
 flex-shrink: 0;
	color: #d63031;
  width: 50px;
    background: #fff;
  -moz-border-radius    :       50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
   display   :    flex;
	font-size: 1.2rem;
  height: 50px;
        align-items  :  center;
    justify-content  :center;
  font-weight: 700;
}

.step-item h4		{
  margin-bottom: 0.8rem;
  font-size: 1.3rem;
}

.step-item p {
   opacity: 0.9;
	 line-height: 1.6;
   margin: 0;
  font-size    : 14px;
}

.approach-image {
   width: 100%;
         height: auto;
	 border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.values-section {
  padding     :        5rem 2rem;
	background: #2c3e50;
	 color: white;
}

.values-container {
	  max-width: 1000px;
  margin: 0 auto;
   text-align: center;

}

.values-container h2 {
    font-size: 2.4rem;
  margin-bottom: 3rem;
}

.values-list {
  display :        grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
   gap: 2rem;
}

.value-item {
   text-align: center;
  padding: 2rem;
}

.value-item h3 {
  color: #3498db;
   margin-bottom: 1rem;
	 font-size: 1.4rem;
}

.value-item p    {
         opacity: 0.9;
    line-height:        1.6;
    font-size: 14px;
}

.thankyou-hero {
	    margin-top: 80px;
      padding: 4rem 2rem;
  background: linear-gradient(135deg, #00b894 0%, #00cec9 100%);
    color: white;
        min-height: 600px;
       display  :    flex;
  align-items: center;
     }

.thankyou-content
	{
   max-width: 1200px;

	    margin: 0 auto;

	                    display: grid;

	    grid-template-columns: 1fr 1fr;

	    gap: 4rem;

	    align-items: center;
}

.success-message {
  text-align: center;
}

.success-icon {
  margin-bottom:  2rem;
}



.checkmark {

	  width: 80px;
  height:  80px;
  border-radius: 50%;
	display: block;
   stroke-width: 2;
  stroke: #fff;
    stroke-miterlimit: 10;
   margin    :    0 auto;
                    position: relative;
	animation: checkmark 0.6s ease-in-out 0.9s both;

}

.checkmark-circle {
	stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
    stroke: #fff;
    fill: none;
  border   :  2px solid #fff;
    border-radius: 50%;
   width    : 76px;
    height: 76px;
  position: absolute;
   top: 2px;
  left: 2px;
	animation: stroke 0.6s ease-in-out 0.3s both;
}

.checkmark-stem {
   transform-origin: 50% 50%;
    stroke-dasharray: 48;
  stroke-dashoffset: 48;
   position  :absolute;
  top    :        37px;
   left  :   30px;
   width     :        15px;
  height: 2px;
    background: #fff;
  transform: rotate(45deg);
                    animation: stroke 0.3s ease-in-out 0.9s both;
     }

.checkmark-kick {
       transform-origin: 50% 50%;
          stroke-dasharray: 23;
  stroke-dashoffset: 23;
    position: absolute;
    top: 42px;
  left: 22px;
    width  :    8px;
   height: 2px;
    background: #fff;
  transform: rotate(-45deg);
  animation: stroke 0.3s ease-in-out 1.2s both;
}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes checkmark {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}.success-message h1 {
	font-size  :  2.8rem;

  margin-bottom: 1.5rem;

    font-weight: 700;
}

.thankyou-subtitle {
  font-size: 1.2rem; 
   margin-bottom: 3rem; 
    opacity: 0.9; 
   line-height: 1.7;
}

.next-steps {
  margin:        3rem 0;
  text-align: left;
	
}

.next-steps h2	{
    text-align: center;
   margin-bottom: 2rem;
    font-size: 1.8rem;
}

.steps-timeline {
         flex-direction: column;
	 display: flex;
 gap: 1.5rem;
}

.timeline-item {
   display: flex;
    align-items: flex-start;
          gap: 1.5rem;
  background: rgba(255,255,255,0.1);
   padding: 1.5rem;
    border-radius   : 10px;
  backdrop-filter: blur(5px);
}

.timeline-marker {
    background: #fff;
  color: #00b894;
    width: 40px;
    height: 40px;
 border-radius: 50%;
    display: flex;
  align-items: center;
    justify-content: center;
  font-weight: 700;
   flex-shrink  :    0;
}

.timeline-content h3{
   margin-bottom     :  0.5rem;
   font-size: 1.1rem;
}

.timeline-content p   {
    margin-bottom: 0.5rem;
   opacity: 0.9;
    font-size: 14px;
    line-height: 1.5;
}

.timeline-duration {
    font-size: 12px;
   opacity: 0.7;
   font-style: italic;
}

.thankyou-actions {
         margin-top: 2rem;
  display: flex;
	 gap: 1rem;
   justify-content: center;
	flex-wrap: wrap;
}

.primary-action,
.secondary-action {
  padding :   12px 30px;
   border-radius: 8px;
          font-weight: 600;
	font-size: 1rem;
  transition: all 0.3s ease;
   border: 2px solid transparent;
   cursor: pointer;
}

.primary-action


{
  background: #fff;

    color: #00b894;

   border-color: #fff;
}

.primary-action:hover {
  background: transparent;
   color: #fff;
   border-color: #fff;
}

.secondary-action {
	background: transparent;
    color: white;
  border-color: white;
}

.secondary-action:hover {
    background: white;
  color: #00b894;
}

.thankyou-visual .thankyou-image {
    width: 100%;
               height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}


.additional-info {
	  padding: 4rem 2rem; 
	   background: #f8f9fa;

}  

.info-container {
   max-width: 1000px;
  margin: 0 auto;
	 text-align: center;
}

.info-container h2 {
  color: #2c3e50;
                    font-size: 2.2rem;
  margin-bottom: 3rem;
}

.info-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap :      2rem;
}

.info-card {
               background: white;
   padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: left;
}

.info-card h3 {
  color  : #2c3e50;
         margin-bottom: 1rem;
   font-size: 1.3rem;
}

.info-card p {

	    color: #666;
     line-height: 1.7;
    font-size: 15px;


}

.testimonial-preview {
    padding: 4rem 2rem;
   background: #34495e;
     color    :    white;
}

.testimonial-container {
    max-width: 800px;
  margin: 0 auto;
   text-align: center;
}

.testimonial-container h2 {
   margin-bottom: 2rem;
    font-size: 2.2rem;
}  

.testimonial-quote {
  font-size: 1.3rem;
  font-style  :       italic;
   line-height: 1.7;
          margin-bottom   :     2rem;
     opacity: 0.9;
}

.testimonial-author {
  color: #bdc3c7;
   font-size: 1rem;
   font-style: normal;
}@media (max-width: 768px) {
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .story-container,
    .approach-container,
    .thankyou-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .team-member {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .team-member:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .team-member:nth-child(even) .member-image {
        order: 0;
    }
    
    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-action,
    .secondary-action {
        width: 100%;
        max-width: 280px;
    }
    
    .philosophy-grid,
    .values-list,
    .info-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 3rem 1rem 2rem;
    }
    
    .page-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .company-story,
    .philosophy-section,
    .team-section,
    .approach-section,
    .values-section,
    .thankyou-hero,
    .additional-info,
    .testimonial-preview {
        padding: 3rem 1rem;
    }
    
    .success-message h1 {
        font-size: 2.2rem;
    }
    
    .checkmark {
        width: 60px;
        height: 60px;
    }
    
    .checkmark-circle {
        width: 56px;
        height: 56px;
    }
}.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;
    }
}