* {
   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-color: #ffffff;
}

.container{
    max-width: 1200px;
   margin: 0 auto;
  padding: 0 20px;
}

.navigation-wrapper {
  position: fixed;
  top : 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
   z-index: 1000;
	 border-bottom  :       1px solid #e0e6ed;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
    padding: 15px 20px;
	display: flex;
   justify-content: space-between;
  align-items: center;
}

.company-logo {
  height: 45px;
   width: auto;
}

.menu-desktop {
  display: flex;
	gap: 2rem;
}

.nav-link {
    text-decoration: none;
   color: #34495e;
   font-weight: 500;
    transition: color 0.3s ease;
  position  :   relative;
}

.nav-link:hover {
  color: #3498db;
}

.nav-link::after {
  content: '';
  position    :       absolute;
  width: 0;
    height: 2px;
  bottom    :    -5px;
   left: 0;
   background-color :  #3498db;
    transition: width 0.3s ease;

	}

.nav-link:hover::after {
       width: 100%;


}

.burger-menu {
  display: none;
   flex-direction: column;
  cursor: pointer;
}

.burger-menu span	{
  width: 25px;
   -webkit-transition: 0.3s;
    height: 3px;
   -moz-transition: 0.3s;
    background-color: #34495e;
       margin: 3px 0;
               transition: 0.3s;
    -o-transition: 0.3s;
}

.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);
}

.mobile-menu {
   display: none;
   flex-direction: column;
  background: white;
	padding: 20px;
   border-top: 1px solid #e0e6ed; 

}

.mobile-link {
    color: #34495e;
  padding: 10px 0;
   border-bottom: 1px solid #ecf0f1;
	 text-decoration: none;
}

.hero-section {
 padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
   display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 4rem;
	align-items: center;
}

.text-section h1 {


  font-size: 3.2rem;
   font-weight: 700;
    color: #2c3e50;
    margin-bottom:       1.5rem;
    line-height: 1.2;
     }

.hero-description {
  font-size: 1.1rem;
    color: #5d6d7e;
   margin-bottom: 2rem;
    line-height  :      1.7;
}

.cta-buttons {
          display:flex;
    gap: 1rem;
   flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
   text-decoration: none; 
	  padding: 14px 28px; 
	    border-radius  :       8px; 
	    font-weight: 600; 
	   transition: all 0.3s ease; 
	               display: inline-block;
}

.primary-btn  
  {


  background: #3498db;
    color     :        white;
  box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
     }

.primary-btn:hover {
     background: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 152, 219, 0.4);
}

.secondary-btn {
  background: transparent; 
	   color: #3498db; 
		 border: 2px solid #3498db;
}

.secondary-btn:hover {
   background: #3498db;
   color    : white;
  transform: translateY(-2px);


}

.hero-image img {
	width: 100%; 
   height: auto; 
         border-radius: 12px; 
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}


.benefits-area {
    padding: 80px 0;
   background: white;
}

.benefits-area h2    {
    text-align: center; 
	   font-size: 2.5rem; 
	 margin-bottom: 3rem; 
	    color: #2c3e50;
}

.benefits-grid {


   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap     : 2rem;


}

.benefit-card {
    -webkit-border-radius :  10px;
  -moz-transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: #f8f9fa;
   padding: 2rem;
  border-radius: 10px;
	 -moz-border-radius: 10px;
  text-align: center;
   transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.benefit-card h3     {
    font-size: 1.5rem;
    margin-bottom: 1rem;
	color: #3498db;
}

.services-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-section h2 {
  text-align     :        center;
   font-size: 2.5rem;
  margin-bottom: 3rem;
    color: #2c3e50;
}

.services-layout {
    display: flex;
   flex-direction: column;
    gap: 3rem;
}

.service-item
{
   display: grid;
  grid-template-columns: 1fr 2fr;
    gap: 2rem;
          align-items: center;
       background     :        white;
    padding :      2rem;
   border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.service-item:nth-child(even) {
    grid-template-columns: 2fr 1fr;


}

.service-item:nth-child(even) .service-content {
   order: -1;
}

.service-item img {
   width: 100%;
   height: 250px;
  object-fit: cover;
	 border-radius: 8px;
}

.service-content h3
	{
  font-size: 1.8rem;
  margin-bottom:     1rem;
        color   :    #2c3e50;
}

.service-content p {
    color: #5d6d7e;
	 line-height: 1.6;
}

.cta-section {
     padding: 80px 0;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
    color: white;
   text-align: center;
}

.cta-content h2 {
   font-size: 2.5rem;
	margin-bottom: 1.5rem;
}

.cta-content p {
	  font-size     :  1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
    margin-left: auto;
	margin-right: auto;


}

.cta-button {
  font-weight   :        600;
  border-radius: 8px;
	background: white;
      padding: 16px 32px;
   display: inline-block;
  color  :    #3498db;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.conference-section {
	   padding: 80px 0;
  background: white;
}

.conference-layout {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.conference-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;}

.conference-highlights {
   list-style     :    none;
   margin: 1.5rem 0;
}

.conference-highlights li {
    padding: 8px 0;
   position: relative;
    padding-left    :    25px;
}

.conference-highlights li::before {
  content: '✓';
          position: absolute;
  left: 0;
  color: #27ae60;
  font-weight: bold;
}

.conference-btn {
    display: inline-block;
  background: #e74c3c;
   color: white;
    padding: 14px 28px;
    text-decoration: none;
    border-radius    :      8px;
   font-weight: 600;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.conference-btn:hover {
   background: #c0392b;
  transform: translateY(-2px);
}

.conference-image img {
  width: 100%;
   height: auto;
   border-radius   :    12px;
}

.contact-section {
   background: #f8f9fa;
   padding: 80px 0;
}

.contact-section h2 {
       text-align: center;
   font-size: 2.5rem;
   margin-bottom     :        3rem;
     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 {
	display: block;
    margin-bottom: 0.5rem;
	 color    :       #3498db;
}

.contact-form  {
               background: white;
    padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {


    display: block;
  margin-bottom: 0.5rem;
   font-weight: 500;
    color:  #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea
{
    width: 100%;
       padding:  12px;
   	 border: 1px solid #ddd;
     -webkit-border-radius: 6px;
       border-radius: 6px;
     font-size: 1rem;
       -moz-transition: border-color 0.3s ease;
      transition: border-color 0.3s ease;
       -webkit-transition: border-color 0.3s ease;
       -o-transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-btn {
  background: #3498db;
    color  :  white;
   padding: 14px 28px;
   border: none;
	border-radius: 8px;
     font-size: 1rem;
  font-weight: 600;
   cursor: pointer;
 -moz-transition: all 0.3s ease;
         transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
 -webkit-transition: all 0.3s ease;
	width: 100%;
}

.submit-btn:hover {

	    background: #2980b9;
  transform: translateY(-2px);
	}

.footer-section {
  background: #2c3e50;
	 color: white;
	padding: 50px 0 20px;
}

.footer-content {
  display: grid;
    grid-template-columns: 2fr 1fr 1fr;
   gap   :        3rem;
    margin-bottom: 2rem;
	
}

.footer-logo {
  height   :       40px;
    width: auto;
   margin-bottom     :       1rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  line-height: 1.6;
  color: #bdc3c7;
}

.link-column h4 {
					margin-bottom: 1rem;
   color: #ecf0f1;


}

.link-column a {
   display: block;
	color: #bdc3c7;
   text-decoration: none;
   margin-bottom: 0.5rem;
  transition :color 0.3s ease;
}

.link-column a:hover


{


    color :  #3498db;

}

.footer-contact h4 {
   margin-bottom     :        1rem;
 color: #ecf0f1; 
	
}

.footer-contact p {
    color: #bdc3c7;
	 margin-bottom: 0.5rem;
}

.footer-bottom
	{
  border-top: 1px solid #34495e;
        padding-top: 20px;
  text-align: center;
	color: #95a5a6;
}@media (max-width: 768px) {
    .menu-desktop {
        display: none;
    }
    
    .burger-menu {
        display: flex;
    }
    
    .mobile-menu.active {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .text-section h1 {
        font-size: 2.5rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .service-item,
    .service-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .service-item:nth-child(even) .service-content {
        order: 0;
    }
    
    .conference-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .text-section h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-btn,
    .secondary-btn {
        width: 100%;
        text-align: center;
    }
}.nav-link.active    {
  color: #3498db;
}

.nav-link.active::after


{


   width: 100%;
}

.about-hero   {
    padding: 120px 0 60px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
      color: white;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem; 
	    margin-bottom: 1rem; 
	   font-weight :      700;
}

.hero-subtitle {
  font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
     margin: 0 auto;
 line-height: 1.6; 
	
}

.story-section {
    padding: 80px 0;
    background: white;
}

.story-layout		{
   display: grid;
    grid-template-columns: 1fr 1fr;
       gap: 3rem;
  align-items  :       center;
}

.story-content h2 {
	font-size    : 2.2rem;
    margin-bottom: 1.5rem;
  color: #2c3e50;
}

.story-content p {
  margin-bottom: 1.5rem;
	 color: #5d6d7e;
    line-height:      1.7;
}

.story-image img {
   width  :  100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.mission-section {
	padding     :80px 0;
    background: #f8f9fa;
}

.mission-grid {
       display  :    grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem; 
	}

.mission-item {
    background: white;
  padding  :        2.5rem;
   border-radius    :  12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.mission-item:hover {
  transform: translateY(-5px);
}

.mission-item h3 {
                    font-size: 1.6rem;
    margin-bottom     : 1rem;
   color: #3498db;

}

.mission-item p {
    color:#5d6d7e;

  line-height: 1.6;
}

.methodology-section {
   padding: 80px 0;
	 background:      white;
}

.methodology-section h2 {
   text-align :center;
   font-size: 2.5rem;
   margin-bottom: 3rem;
    color: #2c3e50;
}

.methodology-content {
  display: flex;
  flex-direction: column;
	gap: 3rem; 

}

.method-item  
  {
   display: grid;
   grid-template-columns: 1fr 2fr;
         gap: 2rem;
  align-items: center;
    background: #f8f9fa;
  padding: 2rem;
    border-radius  :12px;
}

.method-item:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.method-item:nth-child(even) .method-description {
  order: -1;
}

.method-item img {
    width: 100%;
  height: 200px;
   object-fit: cover;
  border-radius: 8px;
}

.method-description h3 {
   font-size: 1.7rem;
    margin-bottom: 1rem;
   color: #2c3e50;
}

.method-description p {
   color: #5d6d7e;
    line-height: 1.6;
}

.experience-section {
   padding  :     80px 0;
  background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
  color: white;
  text-align     :      center;
}

.experience-section h2 {
  font-size: 2.5rem;
   margin-bottom: 3rem;
}

.stats-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 2rem;
}

.stat-item {
      text-align: center;
}

.stat-number {
  font-size: 3rem;
   font-weight: 700;
	margin-bottom  :     0.5rem;
    color: #ecf0f1;
}  

.stat-label {
   font-size: 1.1rem;
    opacity: 0.9;
}

.approach-section {
  padding: 80px 0;
    background: white; 
	
}

.approach-layout


{
  display: grid;

	    grid-template-columns: 2fr 1fr;

	  gap: 3rem;

	   align-items: center;
}

.approach-text h2 {


  font-size: 2.2rem;
   margin-bottom :        2rem;
  color: #2c3e50;
     }

.advantage-list {
   display: flex;
  flex-direction: column;
    gap: 1.5rem;
}

.advantage-item h4     {
  font-size: 1.3rem;
          margin-bottom: 0.5rem;
   color: #3498db;
}

.advantage-item p {
   color: #5d6d7e;
    line-height   :      1.6;
}

.approach-image img {
  width: 100%;
  height: auto;
	 border-radius :    12px;
}

.specialization-section {
   padding: 80px 0;
    background: #f8f9fa;
}

.specialization-section h2 {


    text-align: center;
   font-size    :2.5rem;
  margin-bottom: 3rem;
  color   :#2c3e50;

}  

.specialization-grid {
   display   :     grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.spec-card {
  background: white;
   padding: 2rem;
   border-radius:        12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   text-align: center;
}

.spec-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.spec-card h3 {
   font-size: 1.5rem;
   margin-bottom: 1rem;
    color     :       #e74c3c;
}

.spec-card p {

	   color: #5d6d7e;
		line-height: 1.6;
} 

.thankyou-main {
   padding   :120px 0 80px;
  background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    min-height: 100vh;
}

.thankyou-content
	{

	    text-align: center;
    color   : white;

}



.success-icon
	{
   margin-bottom: 2rem;
}

.checkmark {
  width: 80px;
    height: 80px;
  background: rgba(255,255,255,0.2);
    border-radius:   50%;
	display: flex;
               align-items: center;
    justify-content: center;
               font-size: 2.5rem;
    font-weight     :     bold;
 margin: 0 auto;
  animation: successPulse 2s ease-in-out infinite;
}@keyframes successPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}.thankyou-content h1 {
    font-size   :    3rem;
   margin-bottom: 1.5rem;
   font-weight :   700;
}

.thankyou-message {
   font-size: 1.2rem;
  margin-bottom: 3rem;
  max-width: 600px;
      margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    line-height: 1.6; 
	
}

.next-steps {
  background: rgba(255,255,255,0.1);
  padding: 3rem;
   border-radius: 15px;
    margin-bottom: 3rem;
}

.next-steps h2 {
	margin-bottom: 2rem;
  color: #ecf0f1;
  font-size: 2rem;
}

.steps-grid   {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 2rem;


}

.step-item {
   text-align: center;
}

.step-number {
	width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display     :    flex;
    align-items: center;
  justify-content: center;
    font-size    :        1.5rem;
   font-weight: bold;
    margin: 0 auto 1rem;
}

.step-item h3 {
   font-size: 1.3rem;
   margin-bottom: 0.5rem;
   color: #ecf0f1;
}

.step-item p {


   opacity: 0.9;
  font-size: 0.9rem;
   line-height: 1.5;

}

.useful-info {

    margin-bottom: 3rem;
     }  

.useful-info h2 {


	font-size     :   2rem;
   margin-bottom: 2rem;
   color: #ecf0f1;
}

.info-cards {
  display:      grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap :2rem;

}

.info-card {
  background: rgba(255,255,255,0.1);
   padding:        2rem;
  border-radius :       12px;
   text-align: center;
}

.info-card h3 {
  font-size: 1.4rem;
    margin-bottom :  1rem;
  color: #ecf0f1;
}

.info-card p {
	margin-bottom: 1.5rem;
    opacity: 0.9;
  line-height: 1.5;
}

.info-link {
    display: inline-block;
  background: rgba(255,255,255,0.2);
    color: white;
  padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
   transition: all 0.3s ease;
	
}

.info-link:hover 
 {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px); 
	
}

.contact-reminder {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
    border-radius: 12px;
    text-align: center;
}

.contact-reminder h3 {
  font-size   :1.5rem;
  margin-bottom: 1rem;
	color: #ecf0f1;
}

.contact-reminder p {
    margin-bottom: 1rem;
   opacity: 0.9;

}

.phone-contact {
  font-size: 1.5rem;
    font-weight     :     bold;
          margin: 1.5rem 0;
   color: #ecf0f1;
}


.office-info {
  font-style     :italic;
    opacity: 0.8;
}@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .story-layout {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .method-item,
    .method-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .method-item:nth-child(even) .method-description {
        order: 0;
    }
    
    .approach-layout {
        grid-template-columns: 1fr;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .next-steps {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .mission-item {
        padding: 1.5rem;
    }
    
    .next-steps {
        padding: 1.5rem;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
}.cookies-section,
.privacy-section 
 {
    padding: 120px 0 80px;
    background: #f8f9fa;
}

.cookies-content,
.privacy-content


{
   max-width: 800px;
    margin: 0 auto;
   color: #5d6d7e;
   line-height: 1.7;
}

.cookies-content h1,
.privacy-content h1 {
               font-size: 2.5rem;
    color: #2c3e50;
   margin-bottom: 2rem;
	 text-align: center;


}

.cookies-content p,
.privacy-content p {
  margin-bottom: 1.5rem;
   font-size: 1.1rem;
}@media (max-width: 768px) {
    .cookies-content,
    .privacy-content {
        padding: 0 15px;
    }

    .cookies-content h1,
    .privacy-content h1 {
        font-size: 2rem;
    }
}