* {
   margin: 0; 
	   padding: 0; 
	  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
   background-color: #f8f9fa;
}

.container {
  max-width: 1200px; 
   margin: 0 auto; 
   padding: 0 20px;
}

.main-navigation  
  {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    padding: 1rem 0;
    position:fixed;
    top: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container{
    max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
				 display: flex;
  justify-content: space-between;
  align-items: center;
}

.company-logo {

  height: 45px;
    width   :        auto;


}

.nav-menu {
    display: flex;
  gap   :        2rem;
}

.nav-link {
  color   :    #ecf0f1;
    text-decoration: none;
	 padding: 0.5rem 1rem;
  border-radius: 5px;
   transition: background-color 0.3s ease;
	 font-weight: 500;
}

.nav-link:hover,
.nav-link.active {
    background-color :   #e74c3c;
}

.burger-menu {
   display: none;
  flex-direction: column;
    cursor     :pointer;
    padding: 5px;
	
}

.burger-menu span {
    width: 25px;
    height: 3px;
   background-color: #ecf0f1;
  margin: 3px 0;
   transition: 0.3s;
}

.hero-section {
    margin-top: 80px;
	padding: 4rem 0;
  background: linear-gradient(rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.85)), url('previews/emergency_leadership_coaching_3.webp') center/cover;
  color: white;
  min-height: 600px;
  display: flex;
    align-items: center;
}

.hero-content {
    max-width   :    1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
    grid-template-columns   :1fr 1fr;
   gap: 3rem;
   align-items: center;
}

.hero-text h1 {
  font-size: 3.2rem;
	 margin-bottom  : 1.5rem;
   font-weight: 700;
  line-height: 1.2;
}

.hero-text p


{
  font-size:      1.3rem;
     margin-bottom: 2rem;
      opacity: 0.9;

}

.hero-buttons {
  display: flex; 
	  gap: 1rem; 
				flex-wrap: wrap;
}

.cta-button {
	 padding: 1rem 2rem;
  text-decoration: none;
  text-align: center;
   transition: all 0.3s ease;
      border-radius: 8px;
  display: inline-block;
   font-weight: 600;
}

.cta-button.primary {

	   background-color: #e74c3c;
  color: white;


}

.cta-button.primary:hover {

	    background-color     : #c0392b;
  transform: translateY(-2px);
     }

.cta-button.secondary
	{
    background-color     :    transparent;
    color: white;
    border: 2px solid #ecf0f1;
}

.cta-button.secondary:hover {

	  background-color: #ecf0f1;
          color   :  #2c3e50;

     }

.hero-image img {
     width: 100%;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3); 

}

.features-overview {


   padding    :        5rem 0;
    background-color:     white;
}

.features-overview h2 {
   color: #2c3e50;
		margin-bottom: 3rem;
   font-size:     2.5rem;
   text-align: center;
}

.features-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap   :2rem;
}

.feature-card {
	background     :      white;
  border-radius: 12px;
   padding     :  2rem;
		 text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
 transition : transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-card img {

	   width  :  100%;
  height: 200px;
  object-fit: cover;
   border-radius: 8px;
  margin-bottom :       1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
  color    :       #2c3e50;
    font-size: 1.4rem;
}

.feature-card p {
    color: #7f8c8d;
        line-height: 1.8;
}

.expertise-showcase {
  padding:   5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.expertise-content {
   display  :        grid;
  grid-template-columns: 1fr 1fr;
    gap: 3rem;
                    align-items: center;
}

.expertise-text h2 {
                    font-size :   2.5rem;
  margin-bottom   :   1.5rem;
    color  :     #2c3e50;
}

.expertise-text p {
   font-size: 1.1rem;
    margin-bottom: 2rem;
  color: #6c757d;
    line-height: 1.8;
}

.expertise-list 
 {
   list-style: none;
}

.expertise-list li {

	  padding: 0.8rem 0;
   border-bottom:    1px solid #dee2e6;
   color: #495057;
   position: relative;
    padding-left: 1.5rem;

}

.expertise-list li:before {
    font-weight: bold;
  content: "✓";
  left: 0;
   color: #e74c3c;
    position: absolute; 
	
}

.expertise-visual img {
   width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.cta-section {
    padding: 4rem 0;
	  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
	  color: white;
		 text-align :      center;
}

.cta-content h2 {
	font-size  :     2.8rem;
    margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
	margin-bottom: 2rem;
	opacity: 0.9;
	
}

.cta-button.large {
  padding: 1.2rem 3rem;
    font-size: 1.1rem;
               background-color: white;
	 color: #e74c3c;
}

.cta-button.large:hover {
    background-color: #f8f9fa;
  transform: translateY(-3px);
}

.contact-section {
    padding: 5rem 0;
   background-color: white;
}



.contact-section h2 {
   text-align: center;

	    margin-bottom: 3rem;

	   font-size: 2.5rem;

	   color: #2c3e50;
}

.contact-wrapper {
    display: grid;
  grid-template-columns: 1fr 2fr;
   gap: 3rem;
}

.contact-info h3 {
	 margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
  margin-bottom: 1.5rem;
}

.contact-item strong		{
    color   :   #e74c3c;
  display: block;
   margin-bottom     : 0.5rem;
}  

.contact-form


{
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
   margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
  margin-bottom: 0.5rem;
    font-weight: 600;
   color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid #dee2e6;
   border-radius   :      6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
	border-color   :        #e74c3c;
}

.submit-button {
  background-color: #e74c3c;
   color: white;
   padding: 1rem 2rem;
    border: none;
  border-radius: 6px;
	font-size: 1.1rem;
  font-weight: 600;
  cursor     :    pointer;
  transition: background-color 0.3s ease;
	width: 100%;
}

.submit-button:hover {

  background-color: #c0392b;


}

.main-footer
	{
   background-color: #2c3e50;
    color: #ecf0f1;
  padding: 3rem 0 1rem;
}

.footer-content {
        display: grid;
   grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
   margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
    width: auto;
          margin-bottom  :     1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {

    color: #bdc3c7;
    line-height  :      1.6;
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
	 margin-bottom: 1rem;
                    color    :     #e74c3c;
}

.footer-nav ul,
.footer-legal ul {
   list-style: none;
}

.footer-nav li,
.footer-legal li {
  margin-bottom    :  0.5rem;
}

.footer-nav a,
.footer-legal a {
  color: #bdc3c7;
    text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: #e74c3c;
}

.footer-contact p
{
  color: #bdc3c7;
   margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
   	 padding-top: 2rem;
      border-top: 1px solid #34495e;
       color: #95a5a6;
}@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #2c3e50;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .burger-menu {
        display: flex;
    }

    .burger-menu.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}.page-header {
  margin-top: 80px; 
	   padding: 4rem 0 2rem; 
	  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%); 
	  color: white; 
	    text-align: center;
}

.header-content h1 {

    font-size     :       3rem;
    margin-bottom: 1rem;
  font-weight: 700;
}

.header-content p {
   font-size: 1.2rem;
	    opacity: 0.9;
	   max-width: 600px;
		margin: 0 auto;
}

.company-story {
   padding: 5rem 0;
    background-color: white;
}

.story-content {
   display    :grid;
   grid-template-columns:   2fr 1fr;
  gap: 3rem;
    align-items: center;
}

.story-text h2     {
   font-size: 2.5rem;
   margin-bottom: 2rem;
  color: #2c3e50;
}

.story-text p {
    margin-bottom: 1.5rem; 
  font-size:1.1rem; 
   color   :#5a6c7d; 
  line-height: 1.8;
}

.story-image img {
    width     :     100%;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.mission-values {
   padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-values h2 {
   text-align: center;
    font-size: 2.5rem;
      margin-bottom: 3rem;
  color: #2c3e50;
}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-item {
   background: white;
    padding: 2rem;
      border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.value-item h3 {
    color: #e74c3c;
    margin-bottom:     1rem;
	 font-size: 1.4rem;
}

.value-item p

{
  color:     #6c757d;
   line-height: 1.7;
}

.expertise-areas {
    padding     :   5rem 0;
  background-color: white;
}

.expertise-areas h2     {
  text-align: center;
  font-size   :  2.5rem;
    margin-bottom   :     3rem;
  color: #2c3e50;
}

.expertise-showcase .expertise-item 
 {
    display: grid;
          grid-template-columns  :       1fr 2fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.expertise-showcase .expertise-item:nth-child(even) {

   grid-template-columns: 2fr 1fr;


}

.expertise-showcase .expertise-item:nth-child(even) .expertise-content {
        order: -1;
}


.expertise-item img {

	   width: 100%;
   border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);


}

.expertise-content h3 {

    font-size:   1.6rem;
   margin-bottom: 1rem;
  color: #2c3e50;

}

.expertise-content p {
  color     :    #6c757d;
    line-height: 1.8;
    font-size: 1.05rem;
}

.approach-methodology {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f1f3f4 0%, #e8eaed 100%);
}

.methodology-content {
    display: grid;

      grid-template-columns: 2fr 1fr;

  gap: 3rem;

   align-items: start;
}

.methodology-text h2 {
    font-size: 2.5rem;
   margin-bottom: 1.5rem;
  color: #2c3e50;
}

.methodology-text p {
       line-height: 1.8;
    font-size: 1.1rem;
               margin-bottom: 2rem;
    color   :#5a6c7d;


}

.methodology-text h3 {
   font-size: 1.4rem;
               margin-bottom: 1.5rem;
   color     :    #e74c3c;
}

.process-steps {
   display: flex;
       flex-direction   :        column;
  gap  :        1.5rem;
}

.step {

  display: flex;
    align-items   :        flex-start;
  gap: 1rem;
     }

.step-number {
   background: #e74c3c;
    color: white;
  width: 40px;
    height: 40px;
   border-radius: 50%;
  display: flex;
   align-items: center;
     justify-content: center;
          font-weight: bold;
   flex-shrink: 0;
}

.step h4 {
   margin-bottom   :0.5rem;
    color: #2c3e50;
}

.step p {
  color: #6c757d;
    margin: 0;
}

.methodology-visual img {


    width:     100%;
    border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);

}

.why-choose-us {
     padding: 5rem 0;
   background-color: white;
}



.why-choose-us h2 {
  text-align    :   center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
  color: #2c3e50;

}

.benefits-grid {
    display    : grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.benefit-card {

	  background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
   padding: 2rem;
  border-radius: 12px;
	border-left :       4px solid #e74c3c;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
	}

.benefit-card h3 {
  color: #2c3e50;
        margin-bottom: 1rem;
    font-size     :      1.3rem;
}

.benefit-card p   {
  color: #6c757d;
  line-height: 1.7;
}

.thankyou-main {
	  margin-top:   80px;
    padding: 4rem 0;
  min-height: calc(100vh - 160px);
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);

}

.thankyou-content {


  max-width: 800px;
 margin: 0 auto;
  text-align: center;
      background: white;
   padding: 3rem;
      border-radius    :    16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.success-icon{
   margin-bottom: 2rem;
}

.checkmark-circle {
   margin: 0 auto;
   align-items   :center;
   width: 80px;
   justify-content: center;
	background: #27ae60;
 border-radius: 50%;
   animation     :      scaleIn 0.6s ease-out;
     display :       flex;
    height: 80px;}

.checkmark {
    width: 30px;
  height: 15px;
    border  : 3px solid white;
   border-top: none;
    border-right: none;
  transform: rotate(-45deg);
  margin-top: -5px;
}@keyframes scaleIn {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}.thankyou-content h1 {
   font-size: 2.5rem;
     color: #2c3e50;
      margin-bottom: 1rem;
}

.main-message {
   font-size  :     1.2rem;
   color: #6c757d;
   margin-bottom: 3rem;
    line-height :       1.6; 

}

.next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
   color: #2c3e50;
  margin-bottom: 2rem;
   font-size: 1.8rem;
	
}

.steps-list {
  display: flex;
    flex-direction :        column;
   gap: 1.5rem;
}

.step-item {
   display: flex;
    align-items    :      flex-start;
    -moz-border-radius: 8px;
	-webkit-border-radius: 8px;
   gap :1rem;
    padding: 1rem;
  background: #f8f9fa;
  border-radius: 8px;


}

.step-icon {
  background: #e74c3c;
  color: white;
    width: 30px;
   height     :30px;
	border-radius    :        50%;
    display: flex;
	align-items: center;
   justify-content: center;
   font-weight: bold;
   flex-shrink: 0;
    font-size: 0.9rem;
}

.step-content h3 {
  margin-bottom: 0.5rem;
   color: #2c3e50;
   font-size: 1.1rem;
}

.step-content p {
    line-height     :       1.5;
    margin: 0;
  color: #6c757d;}

.contact-reminder {
   background: #fff3cd;
    -webkit-border-radius: 8px;
   border   :        1px solid #ffeaa7;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom    :   2rem;
}

.contact-reminder h3 {
   color: #856404;
      margin-bottom: 1rem;
	
}

.contact-reminder p {
   color: #856404;
    margin-bottom: 1rem;
}

.phone-link		{
    font-size: 1.2rem;
  color:#e74c3c;
 font-weight: bold;
  text-decoration: none;
}

.phone-link:hover  {
    text-decoration: underline;
}



.additional-resources {
  margin-bottom: 3rem;
}

.additional-resources h3 {
   color: #2c3e50;
   margin-bottom: 1rem;
	
}


.additional-resources p {
  color: #6c757d;
   margin-bottom: 1.5rem;
}

.resource-links {
   display: flex;
    gap: 1rem;
  justify-content: center;
   flex-wrap    :      wrap; 
	
}

.resource-btn {
  background: #e74c3c;
   color: white;
    padding  :        0.8rem 1.5rem;
   text-decoration: none;
	border-radius: 6px;
  transition: background-color 0.3s ease;
   font-weight: 500;
}

.resource-btn:hover
	{
       background: #c0392b;
}

.company-info
{
   border-top: 1px solid #dee2e6;
	 padding-top: 2rem;
}

.company-info h3 {
  color: #2c3e50;
    margin-bottom: 1rem;
}

.company-details {
                    text-align: center;
}

.company-details p {
    color: #6c757d;
   margin-bottom: 0.5rem;
}@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .expertise-showcase .expertise-item,
    .expertise-showcase .expertise-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .expertise-showcase .expertise-item:nth-child(even) .expertise-content {
        order: 0;
    }
    
    .methodology-content {
        grid-template-columns: 1fr;
    }
    
    .values-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content {
        margin: 0 1rem;
        padding: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .resource-links {
        flex-direction: column;
        align-items: center;
    }
    
    .process-steps {
        gap: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 3rem 0 1.5rem;
    }
    
    .header-content h1 {
        font-size: 1.8rem;
    }
    
    .checkmark-circle {
        width: 60px;
        height: 60px;
    }
    
    .checkmark {
        width: 20px;
        height: 10px;
    }
}.policy-section {
  padding   :    5rem 0;
     background-color: white;
}

.policy-content 
 {
   max-width: 800px; 
    margin: 0 auto; 
  padding  :    2rem; 
   background: #f8f9fa; 
    border-radius: 12px; 
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.policy-content h2 {
  text-align: center;
   margin-bottom: 2rem;
   font-size: 2.5rem;
   color: #2c3e50;
}  

.policy-content h3{
   font-size: 1.8rem;
  margin-bottom: 1.5rem;
                    color: #2c3e50;
}

.policy-content p {
   	font-size: 1.1rem;
   line-height: 1.8;
   color: #6c757d;
               margin-bottom: 1.5rem;

}