* {
  margin:       0;
    padding: 0;
   box-sizing: border-box; 

}

body {

  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
   color: #2c3e50;
   background: #ffffff;
}

.container {
   max-width: 1200px;
                    margin: 0 auto;
  padding: 0 20px;
	
}

.primary-nav     {
	  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
	position    :      fixed;
               width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #3498db;
	}

.nav-container {
    max-width: 1200px;
  margin :     0 auto;
	 padding: 0 20px;
    display  :    flex;
  justify-content: space-between;
    align-items: center;
  height: 70px;
}

.brand-area .nav-logo {
  height: 45px;
	width: auto;
}

.nav-menu {

  display: flex;
   gap: 40px;
	


}



.nav-link {
	text-decoration: none;
   color: #2c3e50;
    font-weight: 500;
    padding: 8px 16px;
	border-radius: 4px;
   transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
     background: #3498db;
  color: white;
}

.mobile-toggle {
      display: none;
  flex-direction     :      column;
  cursor   :        pointer;
}

.mobile-toggle span {
  width: 25px;
   height: 3px;
   background: #2c3e50;
	 margin: 3px 0;
    transition: 0.3s;
   border-radius: 2px;
}

.hero-section {
   margin-top: 70px;
          padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
	overflow: hidden;
}

.hero-content {
   max-width: 1200px;
	margin: 0 auto;
  padding: 0 20px;
 display: grid;
	grid-template-columns: 1fr 1fr;
      gap: 60px;
   align-items : center;


}

.hero-text h1 {
   font-size: 3.2rem;
   font-weight :700;
	 line-height: 1.2;
    margin-bottom: 24px;
}

.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 40px;
                    opacity: 0.9;
   line-height: 1.6;
}

.hero-actions {
   display  :     flex;
   gap: 20px;
  flex-wrap:        wrap;
}

.btn-primary, .btn-secondary{
    padding: 16px 32px;
  border-radius: 8px;
	text-decoration: none;
   font-weight : 600;
   display:       inline-block;
  transition: all 0.3s ease;
    border:    none;
   cursor: pointer;
  font-size: 16px;
}

.btn-primary {
  background: #e74c3c;
	          color: white;
}

.btn-primary:hover {
    background: #c0392b;

	  transform: translateY(-2px);
}

.btn-secondary {
	background    :        transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
   background: white;
	 color: #667eea;
}

.btn-primary.large


{

    padding: 20px 40px;
    font-size: 18px;


}

.btn-primary.full-width {
   width: 100%;
		 text-align: center;
}

.hero-image img {
    width: 100%;
         border-radius   :     12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.intro-section
	{
    padding: 100px 0;
  background: #f8f9fa;
}

.intro-content h2 {
    font-size: 2.8rem;
  margin-bottom: 30px;
    text-align: center;
  color    :#2c3e50;



}

.intro-content > p {
   font-size: 1.2rem;
    text-align  :       center;
   margin-bottom: 60px;
   max-width: 800px;
   margin-left: auto;
  margin-right     : auto;
  color: #5a6c7d;


}

.benefits-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
   background: white;
     padding: 40px 30px;
   border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  text-align: center;
    border-top: 4px solid #3498db;
}

.benefit-item h3 {
  font-size: 1.5rem;

	   margin-bottom: 20px;

	    color: #2c3e50;
}

.benefit-item p {
  color: #5a6c7d;
  line-height: 1.7;
}

.services-section {
   padding: 100px 0;
  background: #ffffff; 

}

.services-section h2 {
   font-size   :    2.8rem;
   text-align: center;
    margin-bottom: 80px;
       color: #2c3e50;}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap :        50px;
}

.service-card {
   background: #fff;
    border-radius: 15px;
      overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
	  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
   height: 250px;
  object-fit: cover;
}

.service-content

{
   padding: 35px 30px;
}

.service-content h3 {
  font-size: 1.6rem;
   margin-bottom: 20px;
    color   :     #2c3e50;
}

.service-content p {
  line-height :   1.6;
   margin-bottom: 25px;
    color  :        #5a6c7d;
}

.service-content ul {
  list-style: none;
	padding: 0;
} 

.service-content li {
  padding: 8px 0;
   color: #5a6c7d;
   position: relative;
    padding-left: 25px;
}

.service-content li:before {
  content: "✓";
    position    :        absolute;
   left: 0;
   color :    #27ae60;
	font-weight: bold;
}

.cta-section {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
	color: white;
    padding: 80px 0;
     text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem; 
	    margin-bottom: 25px;


}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 40px;
   max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.contact-section {


  padding: 100px 0;
   background: #f8f9fa;


}

.contact-wrapper {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 80px;
  align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
   margin-bottom :   25px;
   color: #2c3e50;
}

.contact-info > p {
  font-size: 1.1rem;
	    margin-bottom: 40px;
	   color: #5a6c7d;
	  line-height: 1.7;


}

.contact-details {
     margin-top: 40px;
}

.contact-item {
  margin-bottom: 30px;


}

.contact-item strong {
	color: #2c3e50;
    display: block;
    margin-bottom: 8px;
    font-size   :    1.1rem;
}

.contact-item p {
  color: #5a6c7d;
    margin: 0;
}

.contact-form {
    background: white;
   padding: 50px 40px;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.form-group	{
   margin-bottom: 25px;
}

.form-group label {
  display: block;
    margin-bottom: 8px;
   color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
	 width     :   100%;
  padding: 15px;
  border: 2px solid #e1e8ed;
    border-radius: 8px;
    font-size: 16px;
   transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus  
  {
    outline: none;
   border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;


}

.site-footer {
  background    :        #2c3e50;

	   color: white;

	    padding: 60px 0 30px;
}

.footer-content {
  display: grid;
   grid-template-columns: 1fr 2fr;
  gap: 60px;
   margin-bottom: 40px;
}

.footer-brand {
    max-width: 350px;
}


.footer-logo {
   height: 50px;
   width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
        line-height: 1.6;
   color    :       #bdc3c7;
}

.footer-links {
         display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column h4 {
  margin-bottom: 20px;
   color: white;
}

.footer-column ul {
		 list-style: none;
            padding: 0;

}

.footer-column li
	{
    margin-bottom: 10px;
}

.footer-column a {
         color: #bdc3c7;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-column a:hover {
   color: #3498db;
}

.footer-column p {
   color: #bdc3c7;
   margin: 0;
   line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid #34495e;
  padding-top: 30px;
   text-align: center; 
	
}

.footer-bottom p {


   color: #bdc3c7;
    margin: 0;


}@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center
    }
    
    .hero-text h1 {
        font-size: 2.8rem
    }
    
    .services-grid {
        grid-template-columns: 1fr
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px
    }
    
    .footer-content {
        grid-template-columns: 1fr
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1)
    }
    
    .nav-menu.active {
        left: 0
    }
    
    .hero-text h1 {
        font-size: 2.2rem
    }
    
    .hero-text p {
        font-size: 1.1rem
    }
    
    .hero-actions {
        justify-content: center
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 24px;
        font-size: 15px
    }
    
    .intro-content h2,
    .services-section h2 {
        font-size: 2.2rem
    }
    
    .benefits-grid {
        grid-template-columns: 1fr
    }
    
    .services-grid {
        grid-template-columns: 1fr
    }
    
    .service-card {
        min-width: auto
    }
    
    .contact-form {
        padding: 35px 25px
    }
    
    .footer-links {
        grid-template-columns: 1fr
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px
    }
    
    .nav-container {
        padding: 0 15px
    }
    
    .hero-section {
        padding: 60px 0
    }
    
    .hero-content {
        padding: 0 15px;
        gap: 40px
    }
    
    .hero-text h1 {
        font-size: 1.9rem
    }
    
    .hero-actions {
        flex-direction: column
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center
    }
    
    .intro-section,
    .services-section,
    .contact-section {
        padding: 60px 0
    }
    
    .intro-content h2,
    .services-section h2 {
        font-size: 1.9rem
    }
    
    .benefit-item {
        padding: 30px 20px
    }
    
    .service-content {
        padding: 25px 20px
    }
    
    .cta-section {
        padding: 60px 0
    }
    
    .cta-content h2 {
        font-size: 2rem
    }
    
    .contact-form {
        padding: 25px 20px
    }
}.mobile-toggle.active span:nth-child(1)	{
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
   opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.about-hero  {
  margin-top   :      70px;
   padding: 120px 0;
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8)), 
                url('../headshots/collaborative_symbiosis_workshop_3.webp') center/cover;
   color: white;
    text-align:    center;
}

.about-hero-content h1 {
  font-size: 3.5rem;
    margin-bottom    :      30px;
    font-weight: 700;
}

.hero-subtitle {
  font-size: 1.3rem;
   opacity: 0.95;
    line-height: 1.7;
   margin: 0 auto;
    max-width: 800px;
}

.mission-section {
   padding:   100px 0;
   background: #fff;
}

.mission-grid {
  display: grid;
    grid-template-columns: 1.2fr 1fr;
   gap: 80px;
    align-items: center;
}

.mission-content h2 {
 color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.8rem;
}

.mission-content > p {
   font-size: 1.2rem;
    margin-bottom: 50px;
	color: #5a6c7d;
   line-height: 1.7;
}

.values-list {
  display: flex;
   flex-direction: column;
    gap: 30px;
}

.value-item h3 {
	font-size: 1.4rem;
   margin-bottom :        12px;
    color: #3498db;
  font-weight: 600;

}

.value-item p {
  color: #5a6c7d;
    line-height: 1.6;
}

.mission-image img {
  width:100%;
               border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.experience-section {
   padding: 100px 0;
  background     :        #f8f9fa;
}



.experience-section h2 {

   font-size: 2.8rem;
        text-align: center;
                    margin-bottom: 60px;
    color: #2c3e50;
     }

.experience-stats {


  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
    margin-bottom: 80px;
	
     }

.stat-item {
   text-align: center; 
          background: white; 
  padding: 40px 20px; 
    border-radius: 12px; 
  box-shadow: 0 8px 25px rgba(0,0,0,0.08); 
	border-top: 4px solid #e74c3c;
}

.stat-number {

	   font-size: 3rem; 
    font-weight  :      700; 
    color: #e74c3c; 
   margin-bottom: 10px;
     }

.stat-label {

   font-size  :       1.1rem;
   color: #2c3e50;
  font-weight: 500;
     }

.experience-content{
  display: grid;
  grid-template-columns: 1.3fr 1fr;
	 gap: 60px;
  align-items: center;
}

.experience-text h3{
  font-size  :        1.8rem;
	margin-bottom    :   25px;
   color    :  #2c3e50;
}

.experience-text p {
  font-size: 1.1rem;
    margin-bottom: 20px;
    color: #5a6c7d;
    line-height: 1.7;
}

.experience-image img {
  width: 100%;
   border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1); 
	
}

.approach-section{
 padding: 100px 0;
   background: #fff;
}

.approach-section h2  {
    font-size: 2.8rem;

  text-align: center;

  margin-bottom: 80px;

    color: #2c3e50;
}

.approach-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 50px; 

}

.approach-item {
    text-align: center;
}

.approach-item img {
    width: 100%;
  height: 200px;
    object-fit    :    cover;
   border-radius: 12px;
  margin-bottom: 30px;
}

.approach-content h3 {
    font-size: 1.5rem;
  margin-bottom: 20px;
  color :        #2c3e50;
}

.approach-content p 
 {
   color: #5a6c7d;
   line-height: 1.6;
}



.certifications-section {
   padding: 100px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}  

.certifications-section h2 {
	font-size   :      2.8rem;
   text-align: center;
  margin-bottom: 80px;
}

.cert-grid   {
      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.cert-item {
  background: rgba(255, 255, 255, 0.1);
    padding: 35px 30px;
        border-radius :     12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.cert-item h4 {
    font-size: 1.3rem;

	  margin-bottom: 15px;

	    font-weight: 600;
}

.cert-item p {
  opacity: 0.9;
  line-height: 1.6;
}

.contact-cta {
     padding: 80px 0;
	background: #2c3e50;
  color: white;
   text-align: center;
}

.cta-content h2 {
   font-size: 2.5rem;
   margin-bottom: 25px;
}

.cta-content p {
  font-size    : 1.2rem;
    margin-bottom: 40px;
  opacity :      0.9;
}

.thankyou-hero {

	  margin-top: 70px;
  padding: 120px 0;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    color: white;
	 text-align: center;
	}

.thankyou-content {
	max-width     :    600px;
    margin: 0 auto;
}

.success-icon {
    margin-bottom: 40px;
}

.checkmark-circle {
    width:       100px;
   height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
   display    :flex;
    align-items: center;
	justify-content: center;
   margin: 0 auto;
   position: relative;
}

.checkmark {
 width: 40px;
    height: 20px;
   border-left: 4px solid white;
    border-bottom: 4px solid white;
  transform: rotate(-45deg);
   margin-top     :  -10px;
}

.thankyou-content h1 {
         font-size: 3.2rem;
  margin-bottom: 25px;
  font-weight :     700;
}

.thankyou-subtitle{
   opacity: 0.95;

   line-height: 1.7;

    font-size: 1.3rem;
}

.next-steps {

   padding: 100px 0;
   background: #f8f9fa;
	}

.next-steps h2 {
    font-size   :  2.8rem;
  text-align: center;
    margin-bottom :        80px;
   color    : #2c3e50;
}

.steps-timeline {
  max-width  :        800px;
  margin: 0 auto;
}  

.step-item {
   display: flex;
   align-items: flex-start;
    gap: 30px;
  margin-bottom: 60px;
   position   :      relative;
}

.step-item:not(:last-child):after {
  content: '';
  position: absolute;
  left: 24px;
	 top: 60px;
   width: 2px;
  height: 40px;
  background: #e1e8ed;
}

.step-number
{
	width: 50px;
   height: 50px;
	background: #3498db;
  color: white;
    border-radius: 50%;
   display: flex;
  align-items: center;
  justify-content: center;
   font-size: 1.3rem;
  font-weight: 600;
  flex-shrink: 0;
}

.step-content h3  
  {
	    font-size: 1.5rem;
   margin-bottom: 15px;
  color: #2c3e50;}

.step-content p {
       color: #5a6c7d;
  line-height: 1.6;
}

.while-you-wait {
    padding: 100px 0;
   background: white;
}

.while-you-wait h2 {
    font-size: 2.8rem;
   text-align: center;
   margin-bottom: 80px;
   color: #2c3e50;
}

.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   gap: 50px;
}

.resource-item {
   background: white;
    border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.resource-item img {
    width: 100%;
   height: 220px;
  object-fit: cover;
}

.resource-content {
  padding: 35px 30px;


}

.resource-content h3  
  {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.resource-content p {

	   color: #5a6c7d;
   line-height: 1.6;
	}

.contact-info
{
  padding: 100px 0;
   background: #f8f9fa;
}

.contact-reminder {
   text-align: center;
  max-width: 800px;
   margin: 0 auto;
}

.contact-reminder h2 {
    font-size: 2.5rem;
  margin-bottom: 25px;
	color: #2c3e50;
}

.contact-reminder p	{
      font-size: 1.2rem;
  margin-bottom: 60px;
    color: #5a6c7d;
    line-height    :        1.7;


}

.urgent-contact {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.contact-method {
  background: white;
   padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-method h4 {
         font-size     :  1.3rem;
   margin-bottom: 15px;
	 color: #2c3e50;
  font-weight: 600;
}

.contact-method p {
  margin: 5px 0;
	color: #5a6c7d;
}

.contact-method strong {
  color: #3498db;
   font-size: 1.1rem;
}

.return-home {
   padding: 80px 0;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
	text-align: center;
}

.return-content h2 {
  font-size: 2.5rem;
	margin-bottom    :25px;
}

.return-content p {
    font-size: 1.2rem;
   margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
  margin-right: auto;
    opacity: 0.9;
}


.return-actions {
  display: flex; 
	   justify-content: center; 
	  flex-wrap: wrap; 
	    gap: 20px;
}@media (max-width: 1024px) {
    .mission-grid,
    .experience-content {
        grid-template-columns: 1fr;
        gap: 50px
    }
    
    .experience-stats {
        grid-template-columns: repeat(2, 1fr)
    }
    
    .approach-grid {
        grid-template-columns: 1fr
    }
    
    .resources-grid {
        grid-template-columns: 1fr
    }
}

@media (max-width: 768px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.5rem
    }
    
    .hero-subtitle,
    .thankyou-subtitle {
        font-size: 1.1rem
    }
    
    .mission-content h2,
    .experience-section h2,
    .approach-section h2,
    .certifications-section h2,
    .next-steps h2,
    .while-you-wait h2 {
        font-size: 2.2rem
    }
    
    .experience-stats {
        grid-template-columns: 1fr;
        gap: 30px
    }
    
    .cert-grid {
        grid-template-columns: 1fr
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 20px
    }
    
    .step-item:not(:last-child):after {
        display: none
    }
    
    .return-actions {
        flex-direction: column;
        align-items: center
    }
}

@media (max-width: 480px) {
    .about-hero,
    .thankyou-hero {
        padding: 80px 0
    }
    
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem
    }
    
    .mission-section,
    .experience-section,
    .approach-section,
    .certifications-section,
    .next-steps,
    .while-you-wait,
    .contact-info {
        padding: 60px 0
    }
    
    .approach-item img {
        height: 180px
    }
    
    .cert-item,
    .contact-method {
        padding: 25px 20px
    }
    
    .resource-content {
        padding: 25px 20px
    }
}.intro-content h3 {
	margin-top: 40px;
   margin-bottom: 20px;
    font-size: 1.8rem;
   color: #2c3e50;
}

.intro-content ul {
	list-style: none; 
	  padding: 0; 
	      margin-bottom: 30px;
}

.intro-content li {

	padding: 10px 0;
  color: #5a6c7d;
    position: relative;
   padding-left: 25px;


}

.intro-content li:before {
    position: absolute;
    color: #27ae60;
   font-weight: bold;
  content: "✓";
    left: 0;
}