* {
               margin: 0;
    padding: 0;
     box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
      color: #333;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
}

.main-navigation {


  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
   padding: 15px 0;
  position: sticky;
    top: 0;
    z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1); 
	

}

.nav-wrapper {


   padding: 0 20px;
   max-width: 1200px;
	justify-content    :    space-between;
   margin: 0 auto;
   display     :       flex;
   align-items: center;
}

.company-logo {
   height: 45px;

	    width: auto;
}

.nav-links {
  display: flex;
               gap: 30px;
}


.nav-item {
	     color: #ecf0f1;
    text-decoration   :   none;
	 font-weight: 500;
  transition: all 0.3s ease;
   padding: 8px 16px;
         border-radius: 5px;
}

.nav-item:hover,
.nav-item.active {
  background-color: rgba(255,255,255,0.1);
   color: #3498db;
}

.burger-menu {
   display: none; 
	          flex-direction: column; 
	    cursor   :       pointer; 
	    gap: 4px;
	}



.burger-menu span {
    width     :       25px;
  height: 3px;
  background-color: #ecf0f1;
   transition  :       0.3s;
  border-radius: 2px;
}

.mobile-menu {
   display: none;
   background-color: #2c3e50;
    padding:    20px;
    flex-direction: column;
	 gap: 15px;
}

.mobile-nav-item {
  color: #ecf0f1;
    text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-section {


  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
   color: white;
  display: flex;
   align-items: center;
   min-height: 70vh;
     }


.hero-content {
   max-width: 1200px;
    margin: 0 auto;
  display: grid;
    grid-template-columns: 1fr 1fr;
               gap: 60px;
    align-items: center;
	padding:     0 20px;
}

.hero-content h1 {
    font-size: 3.2rem;
   font-weight: 700;
    margin-bottom: 20px;
   line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.3rem;

    margin-bottom: 35px;

   opacity: 0.9;

                    line-height: 1.5;
}

.hero-actions {
   display: flex;
  gap: 20px;
   flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
		padding: 15px 30px;
  text-decoration: none;
  border-radius    :        8px;
    font-weight     : 600;
   transition: all 0.3s ease;
  display: inline-block;


}

.cta-primary {
  background-color     :#e74c3c; 
    color: white;
}

.cta-primary:hover {
    background-color    :    #c0392b;
  -webkit-transform: translateY(-2px);
  -ms-transform: translateY(-2px);
  transform: translateY(-2px);
}

.cta-secondary {
  background-color : transparent;
  color: white;
    border: 2px solid white;
}

.cta-secondary:hover    {
	  background-color: white;
               color: #667eea;

}

.hero-image img {
   width: 100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.services-overview {
 padding: 80px 0;
  background-color: white;

}

.services-overview h2 {
  text-align: center;
	   font-size :   2.5rem;
	   margin-bottom: 50px;
	 color: #2c3e50;
}

.services-grid {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
	}

.service-card {

    background: white;
    padding: 30px;
   border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.service-card:hover {
	  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card img {
    width: 100%;
	   height: 200px;
	    object-fit: cover;
	  border-radius: 8px;
	  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.5rem;
  margin-bottom:     15px;
    color: #2c3e50;
}

.service-card p {
    color: #666;
  line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  padding: 80px 0;
  text-align: center;
	 color: white;
}

.cta-content h2 {
  font-size: 2.8rem;
   margin-bottom: 20px;
}

.cta-content p {
          font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.9;
}

.cta-button

{
    background-color: white;
  color: #f5576c;
    padding: 18px 40px;
   text-decoration: none;
    border-radius: 50px;
   font-weight: 700;
    font-size    :   1.1rem;
    transition: all 0.3s ease;
	 display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px); 
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.training-programs {

    padding: 80px 0;
   background-color: #f8f9fa;

}

.training-programs h2 {
   text-align: center;
  font-size: 2.5rem;
   margin-bottom: 50px;
         color: #2c3e50;
}

.program-item		{
	display: grid;
  grid-template-columns: 1fr 2fr;
 gap: 40px;
   align-items: center;
    background: white;
  padding: 40px;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.program-item img {
   width: 100%;
  height: auto;
    border-radius: 10px;
}

.program-details h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.program-details p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.6;
}

.program-details ul {
   list-style: none;
  padding-left: 0;
}

.program-details li {
    padding  : 8px 0; 
    color: #555; 
    position: relative; 
   padding-left :       25px;
}

.program-details li:before  {
  content: '✓';
    position: absolute;
  left: 0;
    color: #27ae60;
   font-weight: bold;
	}

.contact-section {


    padding: 80px 0;
    background-color: white;
	}

.contact-section h2 {


    font-size: 2.5rem;
  margin-bottom: 50px;
  text-align: center;
    color: #2c3e50;
	}

.contact-layout {
   display: grid;
  grid-template-columns: 2fr 1fr;
   gap: 50px;
    align-items: start;
}

.contact-form	{
     background: #f8f9fa;
     padding: 40px;
  border-radius   : 15px;}

.form-group {
       margin-bottom: 25px;}

.form-group label {
    display: block;
   margin-bottom: 8px;
    color: #2c3e50;
	 font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea  
  {
    width: 100%;
  padding: 12px 15px;
    border: 2px solid #ddd;
    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;
}

.submit-btn {


  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
               color: white;
    padding: 15px 40px;
        border: none;
  border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
}

.submit-btn:hover    {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.contact-info {
    background: #2c3e50;
	 color: white;
   padding: 40px;
    border-radius: 15px;
	
}

.contact-info h3 {
    margin-bottom: 30px;
  font-size     :      1.5rem;
}

.info-item     {
   margin-bottom: 20px;
}

.info-item strong {
   display: block;
   margin-bottom: 5px;
    color: #3498db;
}

.main-footer {
    background: #2c3e50;
   color: white;
         padding: 50px 0 20px;
}


.footer-content		{
  max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
    display :  grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
}

.footer-logo {
    height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-links {

    display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 30px; 
	


}

.link-column h4 {
   margin-bottom: 15px; 
   color: #3498db;
}

.link-column a {
	 display: block;
    color: #ecf0f1;
                    text-decoration: none;
    margin-bottom: 8px;
  transition: color 0.3s ease;
}

.link-column a:hover {
                    color: #3498db;
	
}

.footer-contact h4 {
     margin-bottom: 15px;
   color: #3498db;
     }  

.footer-contact p {
   margin-bottom: 10px;
  line-height: 1.5;



}

.footer-bottom {
   max-width: 1200px;
  margin: 30px auto 0;
  padding     :20px;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #bdc3c7;
}@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .program-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }
}.about-hero {
  background: linear-gradient(rgba(44, 62, 80, 0.8), rgba(52, 73, 94, 0.8)), url('../portraits/funding_negotiation_course_2.webp');
 background-size: cover;
    background-position: center;
   padding: 120px 0;
    color: white;
   text-align: center;
  position: relative;
	}

.hero-overlay {
   position: relative;
	z-index: 2;
}

.about-hero h1 {
   font-size: 3.5rem;
   margin-bottom: 25px;
  font-weight: 700;
}

.hero-description {
    font-size: 1.4rem;
  max-width: 800px;
   margin: 0 auto;
         opacity    : 0.95;
	line-height: 1.6;
}

.company-story {
  padding: 90px 0;
  background-color: white;
}

.story-layout {
  display: grid;
       grid-template-columns: 1.2fr 1fr;
    gap: 60px;
          align-items: center;
}

.story-content h2 {
      font-size: 2.6rem;
                    color: #2c3e50;
    margin-bottom: 30px;
     }

.story-content p {
  margin-bottom    :     25px;
    line-height: 1.8;
  color: #555;
   font-size: 1.1rem;
}

.story-image img {
	    width: 100%;
    height: auto;
	border-radius  :  15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);

}

.mission-values {
   padding: 90px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.mission-values h2 {
	    text-align     :      center;
   font-size: 2.5rem;
   color: #2c3e50;
	 margin-bottom: 60px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
         gap: 40px;
}

.value-item {
  background: white;
  padding: 40px;
  border-radius:     12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   text-align: center;
   transition: transform 0.3s ease;
}

.value-item:hover {
  transform: translateY(-8px);
}

.value-item h3 {
    margin-bottom: 20px;
    font-size: 1.6rem;
 color: #2c3e50;
}

.value-item p {
	  color   :   #666;
   line-height: 1.7;
}

.expertise-areas {
         padding: 90px 0;
    background-color: white;
}

.expertise-areas h2 {

	               text-align: center;
   font-size: 2.5rem;
    color:  #2c3e50;
   margin-bottom: 60px;




}

.expertise-layout {
	   display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;}

.expertise-item

{
   margin-bottom: 40px;
}

.expertise-item h3 {
    font-size: 1.5rem;
   color: #2c3e50;
  margin-bottom    :15px;
}

.expertise-item p {
  color: #666;
  line-height    :        1.7;
}

.expertise-image img {

	 width: 100%;
	 height: auto;
    border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);}

.achievements {
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.achievements h2  
  {
   text-align: center;
    font-size: 2.5rem;
   margin-bottom: 60px;


}

.achievements-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
     }

.achievement-card {

	    text-align     :       center;
   padding: 30px;
  background: rgba(255,255,255,0.1);
   border-radius: 15px;
  backdrop-filter: blur(10px);
}

.achievement-card h4 {
  font-size    :3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #f1c40f;
}

.achievement-card p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.why-choose-us {
         background-color: white;
               padding     :       90px 0;
}

.why-choose-us h2 {
	text-align: center;
    font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 60px;


}

.reasons-layout {
   display: grid;
    grid-template-columns: 1fr 1fr;
	 gap: 60px;
    align-items: center;
}

.reasons-image img{
   width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);


}

.reason-point     {
  margin-bottom: 35px;
  padding-left: 25px;
   position: relative; 
	
}

.reason-point:before {
  content: '→';
    position:        absolute;
    left: 0;
   top: 5px;
	color: #3498db;
  font-size: 1.5rem;
  font-weight: bold;
}

.reason-point h3 {
  font-size: 1.4rem;
   color: #2c3e50;
    margin-bottom: 12px;
}

.reason-point p {
   color: #666;
  line-height: 1.7;
	
}

.thankyou-main {
    padding: 100px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
          min-height: 80vh;
}

.thankyou-content {
    max-width: 900px;
  margin: 0 auto;
   text-align: center;
	 background: white;
    padding: 60px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.success-icon {
        margin-bottom: 40px;
}

.checkmark-circle {
   width: 80px;
    height: 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
	border-radius: 50%;
	display: inline-flex;
   align-items  :       center;
   justify-content     :center;
   animation: pulse 2s infinite;
}

.checkmark   {
  width: 30px;
  height: 15px;
   border: 4px solid white;
    border-top: none;
    border-right: none;
  transform: rotate(-45deg);
}@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}.thankyou-content h1 {
    font-size  :       2.8rem;
	color: #2c3e50;
   margin-bottom: 25px;
}

.thankyou-message {
   font-size: 1.2rem;
    color: #666;
   line-height: 1.7;
   margin-bottom: 50px;
}


.next-steps {
    margin-bottom: 50px;
}

.next-steps h2 {
   font-size: 2rem;
  color: #2c3e50;
    margin-bottom  :     40px;
}

.steps-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 30px;
   margin-bottom: 40px;
}

.step-item {
    text-align: center;
       padding: 25px;
}

.step-number {
	width: 50px;
   height: 50px;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
   color: white;
   border-radius: 50%;
    display: inline-flex;
   align-items: center;
    justify-content: center;
   font-size: 1.4rem;
    font-weight: bold;
   margin-bottom: 20px;
}

.step-item h3   {
    font-size: 1.3rem;
	color: #2c3e50;
    margin-bottom: 15px;
}

.step-item p {
    color: #666;
   line-height: 1.6;
   font-size: 0.95rem;
}

.additional-info {
   margin-bottom: 40px;
}

.info-card {
  display: grid;
  grid-template-columns: 1fr 2fr;
   gap: 30px;
    align-items: center;
   text-align: left;
          background: #f8f9fa;
    padding: 30px;
   border-radius: 12px;
}

.info-card img  {
  width: 100%;
  height: auto;
   border-radius: 8px;
}



.info-content h3 {
   font-size: 1.4rem;
    color: #2c3e50;
   margin-bottom: 15px;
}

.info-content p		{
  color: #666;
  line-height: 1.6;
}

.action-buttons {
  display: flex;
    gap: 20px;
  justify-content: center;
   margin-bottom: 40px;
     flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
       padding: 15px 30px;
   text-decoration: none;
                    border-radius: 8px;
  font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;}

.btn-primary {
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;


}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(52, 152, 219, 0.3);
}

.btn-secondary {
        background:        transparent;
    color: #3498db;
  border: 2px solid #3498db;
}  

.btn-secondary:hover {
   background: #3498db;
   color: white;
}

.contact-reminder {
   background: #fff3cd;
	  border: 1px solid #ffeaa7;
	   padding: 25px;
	        border-radius: 10px;
	 text-align: center;
}

.contact-reminder h3 {
    color: #856404;
   margin-bottom: 10px;
}

.contact-reminder p {
   color: #856404;
   margin-bottom: 15px;
}

.phone-link {
   color: #2c3e50;
  font-size: 1.3rem;
  font-weight   :     bold;
   text-decoration: none;
	
}

.phone-link:hover {
  color: #3498db;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .story-layout,
    .expertise-layout,
    .reasons-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .info-card {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .thankyou-content {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 0;
    }
    
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
}.privacy-section,
.cookies-section {
   padding: 80px 0;
    background-color: white;
}

.privacy-section h1,
.cookies-section h1 {
  color: #2c3e50;
   margin-bottom: 30px;
    text-align: center;
      font-size: 2.5rem;
}

.privacy-section h2,
.cookies-section h2	{
    font-size: 1.8rem;
   margin: 30px 0 15px;
	 color: #2c3e50;
}

.privacy-section p,
.cookies-section p {
	color: #666;
    line-height: 1.6;
   margin-bottom: 20px;
}