* {
	    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: #fff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
   position:   sticky;
    top: 0;
  z-index: 1000;
   padding: 15px 0;
}

.nav-wrapper {
  max-width: 1200px;
   margin:    0 auto;
  padding: 0 25px;
                    display: flex;
    justify-content: space-between;
  align-items: center;
}

.site-logo {
   height    :      48px;
    width: auto;
}

.navigation-links {

		 display: flex;
       gap: 35px;
   align-items: center;
}

.link-item {
    text-decoration: none;

		 color: #2c3e50;

		 font-weight: 500;

	  transition: color 0.3s;

	   font-size :     16px;
}

.link-item:hover,
.link-item.aktywny {
	    color: #667eea;
}

.menu-trigger {

	   display: none;
  flex-direction: column;
   background: none;
   border: none;
    cursor: pointer;
   padding: 8px;


}

.menu-trigger span {
   width: 28px;
  height: 3px;
   background: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
   display    :block;

}

.menu-trigger.open .line-top {
  transform: rotate(45deg) translate(7px, 7px);
}

.menu-trigger.open .line-middle 
 {
   opacity: 0;
}

.menu-trigger.open .line-bottom {
  transform: rotate(-45deg) translate(7px, -7px);

}

.intro-block    {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 80px 25px;
}

.intro-content {
   max-width: 1200px;
    margin: 0 auto;
  display  :    grid;
    grid-template-columns: 1fr 1fr;
        gap: 60px;
   align-items: center;
}

.text-zone h1 {
   font-size: 48px;
  margin-bottom: 20px;
    line-height: 1.2;
}

.lead-text {
  font-size :       24px;
	       opacity: 0.95;
	    margin-bottom: 20px;
}

.text-zone p {
  font-size     :  18px;
    margin-bottom: 30px;
  line-height: 1.7;
}

.action-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    padding: 15px 32px;
  text-decoration: none;
 border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s;
    display: inline-block;
	
}

.btn-primary {
  background    :       white;
   color: #667eea;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}  

.btn-secondary {
	  background: rgba(255,255,255,0.2);
  color: white;
   border: 2px solid white;


}

.btn-secondary:hover {
  background: rgba(255,255,255,0.3);
}

.visual-zone img {


   width    : 100%;
      border-radius: 12px;
     box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.section-container {
	  max-width: 1200px;
  margin: 0 auto;
   padding: 80px 25px;
     }

.services-overview {


  background: white;


}

.services-overview h2 {
    text-align: center;
  font-size: 42px;
    margin-bottom: 60px;
  color: #2c3e50;
}

.services-grid {
				 display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 35px; 
	
}

.service-card {
    background: white;
    border-radius:12px;
   overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   transition: transform 0.3s;
	
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-header {

  height: 180px;
     background   : #667eea;
     }

.service-card h3 {
   padding: 25px 25px 15px;
	font-size: 24px;
    color: #2c3e50;
}

.service-card p {

   padding     :0 25px 20px;
    color: #555;
   line-height :  1.7;
}

.feature-list {
	 list-style: none;
  padding: 0 25px 25px;
}

.feature-list li {
    padding: 8px 0 8px 25px;
    position: relative;
   color :        #666;
}

.feature-list li:before {
  content: "✓";
  position: absolute;
   left    :   0;
   color: #667eea;
    font-weight: bold;
}

.methodology-section {
    background: #f8f9fa;
}

.method-layout {
       display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.method-visual img {
  width: 100%;
	  border-radius: 12px;
	  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.method-description h2 {
   font-size: 38px;
   margin-bottom: 25px;
   color:     #2c3e50;
}

.method-description > p {

		font-size: 18px;
	    line-height  :  1.8;
	  color: #555;
		margin-bottom: 40px;

}

.steps-container {
	 display: flex;
   flex-direction: column;
   gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
}

.step-number {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color  :    white;
    width: 60px;
	height  :     60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
  justify-content: center;
    font-weight: bold;
    font-size: 20px;
	 flex-shrink: 0;
}

.step-content h4 {
    font-size: 20px;
  margin-bottom: 8px;
    color: #2c3e50;}

.step-content p  
  {
    color     :    #666;
   line-height: 1.6;
}

.cta-banner {
  padding   :   80px 25px;
    text-align: center;
    color: white;
}

.cta-content h2 {
  font-size  :   42px;
    margin-bottom: 20px;
}

.cta-description {

		font-size: 20px;
    margin-bottom: 35px;
    opacity: 0.95;}

.cta-button {
       -o-transition: all 0.3s;
     display: inline-block;
      padding: 18px 40px;
      background: white;
     color : #667eea;
          text-decoration: none;
     border-radius: 8px;
     -moz-transition: all 0.3s;
     -webkit-transition: all 0.3s;
     -moz-border-radius: 8px;
       font-weight: 700;
             font-size: 18px;
   	transition: all 0.3s;
     }

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
}

.benefits-showcase {

	   background: white;


}

.benefits-showcase h2 {
    text-align: center;
  font-size     : 42px;
	margin-bottom: 60px;
    color: #2c3e50;


}


.benefits-grid {
  display:      grid;
  grid-template-columns: repeat(2, 1fr);
	 gap: 40px;
}

.benefit-box {
  display: flex;
  gap: 25px;
} 

.benefit-icon
	{
  width: 70px;
    height: 70px;
	border-radius: 12px;
    flex-shrink: 0;
}

.benefit-box h3 {
       font-size: 22px;
        margin-bottom: 12px;
   color: #2c3e50;
}

.benefit-box p {
  line-height: 1.7;
    color: #666;
}

.testimonials-area {
  background: #f8f9fa; 
	
}

.testimonials-area h2 {
  text-align    :  center;
          font-size: 42px;
   margin-bottom   :     60px;
          color: #2c3e50;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background :     white;
    padding: 40px;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
   display     :  none;
}

.testimonial-card:first-child {
    display: block; 

}

.quote-text {
    font-size: 20px;
      line-height   :   1.8;
    color: #555;
   margin-bottom: 25px;
    font-style: italic;
}

.author-info {
    border-top: 2px solid #f0f0f0;

    padding-top   :   20px;
}

.author-name {
  font-weight: 700;
   color: #2c3e50;
   font-size: 18px;
}

.author-role {
    color: #999;
  font-size    :    15px;
}

.gallery-preview    {
    background: white; 

}

.gallery-preview h2 {
   text-align: center;

	font-size: 42px;

  margin-bottom: 60px;

    color: #2c3e50;
}

.image-gallery {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 30px;
}

.gallery-item img {
  width: 100%;
	 height: 280px;
                    object-fit: cover;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.gallery-item img:hover {
  transform: scale(1.05);
}

.contact-section {
   background: #f8f9fa;
}

.contact-layout {
  grid-template-columns: 1fr 1.5fr;
    gap: 60px;
   display: grid;
}

.contact-info h2 {
                    font-size: 38px;
   margin-bottom: 25px;
    color: #2c3e50;
}

.contact-info > p

{
    font-size: 18px;
   line-height    :   1.7;
   color: #555;
   margin-bottom: 40px;
}

.info-blocks		{
    display: flex;
    flex-direction: column;
   gap:    30px;
}

.info-item h4 {
   font-size   :    20px;
    margin-bottom    :        10px;
               color: #667eea;
}

.info-item p {
	color: #666;
    line-height: 1.6;
}

.contact-form-wrapper

{
   background: white;
       padding: 40px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.form-group {
   margin-bottom: 25px;
}

.form-group label {
   color: #2c3e50;
   font-weight: 600;
       display: block;
	margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {

  width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
         border-radius: 8px;
	 font-size: 16px;
  font-family:  inherit;
  transition: border-color 0.3s;
	
     }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
	 outline: none;
   border-color: #667eea;
}

.form-group textarea {

	  resize: vertical;
       min-height: 120px;
     }

.submit-btn {
   width: 100%;
   padding :      15px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  border: none;
  border-radius: 8px;
                    font-size: 18px;
  font-weight: 600;
   cursor     :     pointer;
  transition: all 0.3s;
}

.submit-btn:hover {
  transform: translateY(-2px);
	  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.site-footer {
	background    :        #2c3e50;
  color: white;
  padding:     60px 25px 30px;

}

.footer-content  {
	   max-width: 1200px;
    margin: 0 auto;
    display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
   gap: 50px;
    margin-bottom: 40px;
	}

.footer-logo 
 {
    height: 42px;
  margin-bottom: 20px;
}

.footer-description
	{
  color: #b8c5d6;
   line-height: 1.7;
}

.footer-column h4 {
    color: white;
   margin-bottom: 20px;
   font-size: 20px;
}

.footer-links
{
   list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
  color: #b8c5d6;
  text-decoration: none;
   transition: color 0.3s;
}

.footer-links a:hover {
   color: white;
}

.footer-column p {
   color: #b8c5d6;
  line-height: 1.7;
}

.footer-bottom {
    max-width: 1200px;
         margin :  0 auto;
   padding-top     :     30px;
  border-top: 1px solid rgba(255,255,255,0.1);
	text-align: center;
  color: #b8c5d6;

}

@media (max-width: 768px) {
  .menu-trigger {
    display: flex;
  }
  
  .navigation-links {
    position: fixed;
    top: 78px;
    left: -100%;
    width: 100%;
    background: white;
    flex-direction: column;
    padding: 30px 25px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: left 0.3s;
    align-items: flex-start;
  }
  
  .navigation-links.active {
    left: 0;
  }
  
  .intro-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .text-zone h1 {
    font-size: 36px;
  }
  
  .lead-text {
    font-size: 20px;
  }
  
  .action-buttons {
    flex-direction: column;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .method-layout {
    grid-template-columns: 1fr;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .image-gallery {
    grid-template-columns: 1fr;
  }
  
  .contact-layout {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}.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;
  }
}.about-hero {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.95) 0%, rgba(118, 75, 162, 0.95) 100%), url('../assets/objection_handling_coaching_professional_1.webp') center/cover;
   padding   : 120px 25px 80px;
   text-align: center;
          color:   white;
    position: relative;
}

.hero-overlay {
  max-width     :     900px;
   margin: 0 auto;
}

.hero-text-content h1 {
    font-size: 56px;
    margin-bottom    : 20px;
   font-weight: 700;
}

.hero-subtitle {
    font-size: 24px;
      opacity   : 0.95;
}

.story-section    {
  background: white;
      padding: 80px 25px;
}

.story-grid {
    display: grid;
   grid-template-columns: 1.2fr 1fr;
	gap: 60px;
   align-items: center;
  max-width: 1200px;
   margin: 0 auto;
}

.story-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
   color: #2c3e50;
}

.story-text p {
   font-size: 18px;
   line-height: 1.8;
    color: #555;
        margin-bottom: 20px;
}

.story-visual img {
	  width: 100%;
    border-radius  :  12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);

}

.mission-values {
	background: #f8f9fa;
  padding: 80px 25px;
}

.mission-values h2 {
    text-align:   center;
         font-size: 42px;
  margin-bottom: 60px;
    color: #2c3e50;
}

.values-layout {
    display: grid;
  grid-template-columns: repeat(2, 1fr);
   gap    :   45px;
   max-width: 1200px;
  margin: 0 auto;
}

.value-block {
   background: white;
   padding: 35px;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);

}

.value-icon-wrapper		{
    margin-bottom: 20px;
}

.value-icon {
    width: 70px;
   height: 70px;
  border-radius: 12px;
}

.value-block h3 {
  font-size   :       24px;
  margin-bottom: 15px;
  color: #2c3e50;
	
}

.value-block p {
   color: #666;
  line-height: 1.7;
   font-size: 16px;


}

.team-intro {
    background: white;

	   padding: 80px 25px;
}  

.team-intro h2 {
      text-align: center; 
		font-size: 42px; 
  margin-bottom: 25px; 
    color: #2c3e50;
}

.team-description {
  text-align:      center;
    max-width: 800px;
   margin: 0 auto 50px;
       font-size: 18px;
               line-height: 1.8;
    color: #555;
}

.team-features {
   display: grid;
  grid-template-columns: repeat(4, 1fr);
	gap:       30px;
  max-width: 1200px;
   margin   : 0 auto;
}

.feature-item {
  text-align: center;
   padding :  30px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          border-radius: 12px;
   color  :      white;
}

.feature-number {
	 font-size: 48px;
   font-weight: 700;
  margin-bottom    :  10px;
}

.feature-label  {
	font-size: 16px;

   opacity: 0.95;
}

.approach-section {
    background: #f8f9fa; 
	    padding   :       80px 25px;
}

.approach-layout {
    max-width:       1200px;
    margin: 0 auto;
					align-items: center;
  gap: 60px;
   grid-template-columns: 1.3fr 1fr;
  display: grid;
}

.approach-content h2 {
  font-size     :42px;
  margin-bottom: 25px;
    color: #2c3e50;
}

.approach-content > p {
	 font-size: 18px;

   line-height: 1.8;

   color:   #555;

   margin-bottom: 40px;


}

.approach-points {
  display: flex;
    flex-direction: column;
   gap: 30px;
}

.point-item {
    display  : flex;
  gap: 20px;
    align-items: flex-start;
}

.point-marker {
	  background: white;
	border: 3px solid #667eea;
  color :    #667eea;
  width: 50px;
	height :     50px;
   border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  font-weight: 700;
   font-size: 18px;
   flex-shrink: 0;
	}

.point-text h4 {
  margin-bottom: 8px;

    font-size: 20px;

  color: #2c3e50;
}

.point-text p {
		line-height: 1.7;
    color :  #666;
}

.approach-visual img {
   width: 100%;
    border-radius :        12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.why-choose {
  background: white;
	 padding: 80px 25px;
}

.why-choose h2 {

	  text-align: center;
   font-size: 42px;
    margin-bottom     :    60px;
   color: #2c3e50;

}

.reasons-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  max-width: 1200px;
   margin: 0 auto;
}

.reason-card   {
   	background: #f8f9fa;
  padding: 35px;
        border-radius: 12px;
    transition :      transform 0.3s, box-shadow 0.3s;


}

.reason-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.reason-card h3 {
  font-size: 22px;
	  margin-bottom: 15px;
	    color: #2c3e50;
}

.reason-card p {
  color: #666;
  line-height: 1.7;
}

.philosophy-quote {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 80px 25px;
	color: white;
}

.quote-container {
  max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


.quote-container blockquote {
	border: none;
  margin: 0;
}

.quote-container blockquote p {
   font-size: 28px;
  line-height:      1.7;
  font-style:italic;
  margin-bottom: 30px;



}

.quote-author {
	font-size: 18px;
   font-weight: 600;
  opacity:0.9;
}

.cta-about {
	padding: 80px 25px;
    background: white;
}

.cta-box {
   max-width: 800px;
    margin: 0 auto;
   text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
	padding: 60px 40px;
   border-radius: 12px;
}  

.cta-box h2 {
    font-size  :     38px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-box p {
    font-size: 18px;
          line-height: 1.8;
   color: #555;
    margin-bottom     :     30px;
}

.cta-btn-about
{
  display :        inline-block;
   padding: 18px 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    text-decoration: none;
  border-radius: 8px;
   font-weight: 700;
			font-size: 18px;
          transition: all 0.3s;
}

.cta-btn-about:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
}

.thankyou-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	  padding: 100px 25px 80px; 
	  min-height     :        70vh; 
	    display  :  flex; 
	   align-items:     center;
}

.thankyou-container {
   max-width: 900px;
    margin: 0 auto;
  text-align: center;
    color: white;

}

.success-icon-wrapper {
  margin-bottom: 30px;
	
}

.success-icon {
   width: 100px;
      height    : 100px;
     margin: 0 auto;
     background: rgba(255,255,255,0.2);
      border-radius: 50%;
     display: flex;
   	 align-items  :     center;
       justify-content    : center;
}

.success-icon svg {
    width: 60px;
   height    :  60px;
}

.thankyou-container h1 {
         font-size: 52px;
  margin-bottom: 20px;

}

.thankyou-message {
               font-size: 20px;
               line-height: 1.7;
    margin-bottom: 60px;
   opacity: 0.95;
}

.next-steps h2 {
    font-size: 32px;
   margin-bottom: 40px;
}  

.steps-list {
	    display:   flex;

    flex-direction     :  column;

    gap: 25px;

	 text-align: left;

    margin-bottom :  60px;
	}

.step-box {
  background: rgba(255,255,255,0.15);
  padding: 30px;
    border-radius: 12px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.step-icon {
  width: 60px;
	height : 60px;
    border-radius: 50%;
    display: flex;
  align-items: center;
        justify-content: center;
  font-weight:    700;
    font-size: 24px;
    flex-shrink: 0;
    color: white;
}

.step-info h3 {
   font-size :  22px;
          margin-bottom: 10px;
}

.step-info p {
    font-size: 16px;
      line-height: 1.7;
     opacity   :       0.95;
}

.action-section {
    margin-top: 50px;
}

.action-text {
  font-size: 18px;
  margin-bottom: 25px;
}

.button-group {
	 display: flex;
    gap: 20px;
    justify-content: center;


}

.btn-primary-ty,
.btn-secondary-ty {
   -webkit-border-radius: 8px;
   padding: 15px 32px;
	-moz-border-radius: 8px;
  text-decoration: none;
	-webkit-transition: all 0.3s;
   border-radius: 8px;
				 font-weight :    600;
  -moz-transition: all 0.3s;
    transition: all 0.3s;
  display: inline-block;
}

.btn-primary-ty {
   background: white;
  color: #667eea;
}

.btn-primary-ty:hover {
     transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary-ty {
  background: rgba(255,255,255,0.2);
        color: white;
   border: 2px solid white;
}

.btn-secondary-ty:hover {
  background: rgba(255,255,255,0.3);
}

.useful-info {
    background: white;
	padding:       80px 25px;
	
}

.useful-info h2 {
         text-align: center;
    font-size: 42px;
   margin-bottom: 60px;
    color: #2c3e50;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
  max-width: 1200px;
    margin: 0 auto;
}

.info-card {
       background: #f8f9fa;
    padding: 35px;
   border-radius: 12px;
     }

.info-card h3	{
  font-size :22px;
  margin-bottom :        15px;
  color: #2c3e50;
}

.info-card p {
  color: #666;
  line-height :     1.7;
}

.resources-section {
   background: #f8f9fa;

    padding: 80px 25px; 

}

.resources-section h2 {
      text-align   :        center;
    font-size: 42px;
    margin-bottom: 25px;
  color: #2c3e50;

}

.resources-intro {
	   max-width: 800px;
   text-align: center;
    line-height: 1.8;
  margin: 0 auto 50px;
	color: #555;
   font-size: 18px;


}

.resources-showcase {
  display :   flex;
   flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.resource-item {
   display: grid;
	grid-template-columns: 300px 1fr;
    gap: 35px;
  background: white;
    padding: 30px;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.resource-item img     {
    width: 100%;
         height: 200px;
    object-fit: cover;
   border-radius: 8px;
}

.resource-content h3


{
   font-size: 24px;
  margin-bottom: 15px;
   color: #2c3e50;
}

.resource-content p     {
    color: #666;
	 line-height   :   1.7;
  font-size: 16px;
}@media (max-width: 768px) {
  .hero-text-content h1 {
    font-size: 38px;
  }
  
  .hero-subtitle {
    font-size: 18px;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .values-layout {
    grid-template-columns: 1fr;
  }
  
  .team-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .approach-layout {
    grid-template-columns: 1fr;
  }
  
  .reasons-grid {
    grid-template-columns: 1fr;
  }
  
  .quote-container blockquote p {
    font-size: 22px;
  }
  
  .thankyou-container h1 {
    font-size: 38px;
  }
  
  .button-group {
    flex-direction: column;
  }
  
  .info-grid {
    grid-template-columns: 1fr;
  }
  
  .resource-item {
    grid-template-columns: 1fr;
  }
}