* {
    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;
	}

.header-wrapper {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     box-shadow: 0 2px 15px rgba(0,0,0,0.1);
       position: fixed;
       width  : 100%;
     top: 0;
      z-index: 1000;
}



.navigation-container {
   max-width     :  1200px;
   margin: 0 auto;
   padding: 0 20px;
  display: flex;
    justify-content: space-between;
    align-items: center;
	height    :    70px;
}

.brand-logo {
   display: flex;
                    align-items: center;
    color: white;
   text-decoration: none;
	font-size: 1.5em;
  font-weight: bold;
}

.brand-logo img {
   margin-right :       10px;
  height: 40px;
}

.primary-nav {
  display: flex;
	    list-style: none;
	  gap: 2rem;
}

.primary-nav a {
   color: white;
    text-decoration: none;
	padding: 8px 16px;
   border-radius    :    5px;
    transition: background-color 0.3s ease;
}

.primary-nav a:hover {
  background-color: rgba(255,255,255,0.2); 

}

.menu-toggle {
	         display: none;
  background: none;
    border: none;
  color: white;
    font-size:  1.5em;
    cursor: pointer;
     }

.hero-section {
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('../profiles/systems_thinking_leadership_4.webp');
    background-size: cover;
   background-position: center;
    height: 100vh;
    display: flex;
	align-items: center;
  text-align: center;
    color    :white;
    margin-top: 70px; 

}

.hero-content {
       max-width: 800px;
  margin: 0 auto;
    padding: 0 20px;
} 

.hero-title {
   font-size: 3.5em;

		margin-bottom: 20px;

	  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.4em;
    margin-bottom: 30px;
  opacity: 0.9;
}

.cta-button {
 display: inline-block;
  background: #e74c3c;
	color: white;
	padding: 15px 35px;
 text-decoration: none;
  border-radius: 50px;
    font-size: 1.1em;
    font-weight :  bold;
    transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}


.cta-button:hover
	{
   background:       #c0392b;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.services-section {
    padding: 80px 0;
  background: white;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
	padding     :  0 20px;
}

.section-title {
  text-align: center;
               font-size: 2.5em;
  margin-bottom: 20px;
    color   :   #2c3e50;
}

.section-subtitle


{

	  text-align: center;
   font-size   : 1.2em;
    color   :      #7f8c8d;
  margin-bottom: 60px;
	max-width: 600px;
    margin-left: auto;
   margin-right: auto;


}

.services-grid {
    display :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.service-card {
    background: white;
  padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}



.service-icon {
  width: 80px;
   height: 80px;
  background: linear-gradient(135deg, #667eea, #764ba2);
                    border-radius: 50%;
  margin: 0 auto 20px;
	display     :        flex;
   align-items: center;
   justify-content  :     center;
   font-size: 2em;
  color     : white;
}

.about-section {
	 padding: 80px 0;
  background: #f8f9fa;
}

.about-content {
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items   :   center;
}

.about-text h2 {
  font-size: 2.2em;
  margin-bottom     :    20px;
	color: #2c3e50;
}

.about-text p   {
  font-size: 1.1em;
  line-height: 1.8;
         margin-bottom: 20px;
   color: #5a6c7d;
}

.about-image {
   border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
   display: block; 

}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 80px 0;
   text-align: center;
	color: white;
}

.cta-content h2 {

  font-size: 2.5em;
       margin-bottom: 20px;

}

.cta-content p {
    font-size: 1.2em;
  margin-bottom:  30px;
  opacity: 0.9;
}


.cta-button-secondary {
    border-radius: 50px;
   display: inline-block;
  transition: all 0.3s ease;
    font-size: 1.1em;
   text-decoration: none;
  padding: 15px 35px;
  background: white;
   color: #667eea;
    font-weight: bold;


}

.cta-button-secondary:hover {
  transform: translateY(-2px);
    background: #f8f9fa;
}

.contact-section {
	padding: 80px 0;
  background: white;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: #f8f9fa;
	 padding: 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;
    font-weight: bold;
        color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
   width   :     100%;
  padding: 12px 15px;
    border: 2px solid #e9ecef;
   border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #667eea;
   outline: none;
}

.form-group textarea {
  resize:   vertical;
  min-height: 120px;
}

.submit-button {
  background: linear-gradient(135deg, #667eea, #764ba2);
         color: white;
   padding: 15px 30px;
    border: none;
          border-radius: 8px;
   font-size: 1.1em;
   font-weight     :        bold;
   cursor: pointer;
   width: 100%;
    transition: transform 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);
}

.footer-section {
    background: #2c3e50;
    color: white;
	 padding: 50px 0 30px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap    :        40px;
  margin-bottom   :   30px;
}

.footer-column h3 {
	margin-bottom: 20px;
   font-size: 1.3em;
}

.footer-column p,
.footer-column a {
  color :   #bdc3c7;

		 text-decoration: none;

	  margin-bottom: 10px;

	   display: block;
}

.footer-column a:hover  {
   color: white;
}

.footer-logo {
  height: 40px;
  filter: brightness(0) invert(1);
   margin-bottom: 15px;
}

.footer-bottom {
       border-top: 1px solid #34495e;
   padding-top: 20px;
    text-align: center;
   color: #bdc3c7;
}@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .primary-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(102, 126, 234, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 0;
    }

    .primary-nav.active {
        display: flex;
    }

    .primary-nav a {
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hero-title {
        font-size: 2.5em;
    }

    .hero-subtitle {
        font-size: 1.2em;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 2em;
    }

    .contact-form {
        margin: 0 20px;
        padding: 30px 20px;
    }
}