* {
  margin: 0;
		 padding: 0;
  box-sizing   :    border-box;}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   line-height: 1.6;
       color: #333;
  background: #fafafa;
}  

.container {
   max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-navigation {
  position: fixed;
    top: 0;
	width: 100%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
   transition: all 0.3s ease;
  border-bottom: 1px solid #e0e0e0;
}

.main-navigation.scrolled


{
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width:       1200px;
  margin: 0 auto;
  display: flex;
   justify-content: space-between;
  align-items: center;
    padding: 15px 20px;
}

.brand-logo {
	   height: 45px;
   width: auto;

}

.nav-links {
	    display: flex;
	list-style: none;
  gap: 2rem;

}

.nav-links a {
   text-decoration: none;
    color: #333;
    font-weight     :      500;
        transition     :       color 0.3s ease;
	position: relative;
}

.nav-links a:hover {
 color: #2563eb;
}

.nav-links a::after {
  content: '';
    position: absolute;
  width: 0;
  height: 2px;
    bottom:     -5px;
 left: 0;
    background: #2563eb;
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.burger-menu   {
  display: none;
	  flex-direction     :  column;
	   cursor: pointer;
	        gap: 4px;
}

.burger-menu span {
       width: 25px;
         height   :3px;
  background: #333;
    transition: 0.3s;



}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0; 

}

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.hero-banner {
   margin-top: 80px;
        padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  display: flex;
  align-items: center;
  min-height: 600px;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
   display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
   font-size: 3.5rem;
    font-weight: 700;
  margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-content p {
  font-size: 1.3rem;
  margin-bottom: 2rem;
         opacity: 0.9;
}

.hero-buttons {
    display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-primary, .cta-secondary {

  padding: 15px 30px;
    text-decoration: none;
    -moz-border-radius: 8px;
  border-radius: 8px;
   font-weight: 600;
   transition: all 0.3s ease;
        display: inline-block;
     }

.cta-primary {

	                    background: #fff;
  color: #667eea;

}

.cta-primary:hover {
   background: #f0f0f0;
  transform: translateY(-2px);
}

.cta-secondary {
  background:        transparent;
  color: white;
   border: 2px solid white;
}

.cta-secondary:hover {
  background: white;
        color: #667eea;
}

.hero-visual img {

	  width     :100%;
    max-width: 500px;
    border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);


}

.introduction-block {
   padding: 100px 0;
    background: white;
}

.intro-grid {
     display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.intro-text h2  {
  font-size     :        2.8rem;
    margin-bottom: 2rem;
    color: #2d3748;
}

.intro-text p {
    font-size: 1.1rem;
          margin-bottom    :      1.5rem;
               color: #4a5568;
}

.intro-image img {
       width: 100%;
        border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	}

.services-section {
   padding: 100px 0; 
    background: #f8fafc;


}

.services-section h2 {
  text-align: center;
  font-size: 2.8rem;
    margin-bottom: 3rem;
  color: #2d3748;
}

.services-grid {
  display    : grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
	
}

.service-card
	{
    background: white;

          padding: 2rem;

	 border-radius   :       16px;

  box-shadow: 0 10px 25px rgba(0,0,0,0.05);

  transition: transform 0.3s ease, box-shadow 0.3s ease;

   text-align: center;
}



.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.service-card img {
	width: 100%;
    height: 200px;
	object-fit: cover;
   border-radius: 8px;
   margin-bottom: 1.5rem;
}

.service-card h3 {
      font-size: 1.5rem;
   margin-bottom: 1rem;
    color: #2d3748;
	}

.service-card p {
  color: #4a5568;
  line-height :   1.6;

}

.methodology-section {
    padding: 100px 0;
    background   :     white;
}

.methodology-section h2 {
    text-align: center;
   font-size: 2.8rem;
         margin-bottom: 3rem;
  color: #2d3748;
}

.methodology-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;
	
}

.step-item {

  text-align: center;
    padding: 2rem;


}

.step-number 
 {
   font-size: 3rem;
    font-weight: 700;
    color: #667eea;
  margin-bottom: 1rem;
}

.step-item h3 {
  font-size: 1.3rem;
   margin-bottom: 1rem;
   color: #2d3748;
}

.step-item p


{
    color: #4a5568;
  line-height: 1.6;
}

.cta-section {
          padding     :       80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: white;
   text-align: center;
}

.cta-content h2 {
  margin-bottom: 1rem;
   font-size: 2.5rem;
}

.cta-content p {
   font-size: 1.2rem;
	 margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button-large {

	   background: white;
    color    :     #667eea;
   padding: 18px 40px;
	text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
   font-size: 1.1rem;
  transition :     all 0.3s ease;
    display:       inline-block;
}

.cta-button-large:hover
{
  background: #f0f0f0;
  transform: translateY(-2px);
	
}

.contact-section {
    padding    :100px 0;
   background: #f8fafc;
}


.contact-section h2		{
   text-align: center;
    font-size: 2.8rem;
   margin-bottom: 3rem;
   color: #2d3748;
}

.contact-content {
   display: grid;
    grid-template-columns: 2fr 1fr;
   gap   :    4rem;
}

.contact-form {
    background: white;
  padding   :      2.5rem;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.form-group {
    margin-bottom    :       1.5rem;
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
         width: 100%;
   padding    : 15px;
  border: 2px solid #e2e8f0;
    border-radius  : 8px;
   font-size: 1rem;
  transition: border-color 0.3s ease;
   background   :      #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
      border-color: #667eea;
    background:  white;
}

.form-group.focused input,
.form-group.focused select,
.form-group.focused textarea {
    border-color: #667eea;
    background :      white;
}

.submit-btn {

	    width   :   100%;
  padding:       15px;
   background     : #667eea;
    color: white;
  border: none;
    border-radius: 8px;
    font-size: 1.1rem;
   font-weight     :        600;
    cursor  : pointer;
   transition: background 0.3s ease;
}



.submit-btn:hover {
    background: #5a67d8;
}

.contact-info {


    display: flex;
      flex-direction: column;
    gap: 2rem;
} 

.info-item {
    background   :       white; 
	    padding: 2rem; 
	    border-radius: 12px; 
	  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.info-item h3 {
    font-size: 1.3rem;
   margin-bottom: 1rem;
	color: #2d3748;
}

.info-item p {
   color: #4a5568;
	line-height: 1.6;
}

.main-footer {
    background: #1a202c;
  color: white;
    padding: 60px 0 20px;
}

.footer-container {
   max-width: 1200px;
   margin: 0 auto;
    padding: 0 20px;
}

.footer-main {
    display     :       grid; 
  grid-template-columns: 2fr 1fr 1fr 1fr; 
   gap: 2rem; 
   margin-bottom: 2rem;
}

.footer-logo {
  height: 40px;
	width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;
}

.footer-brand p {
   color: #a0aec0;
  line-height: 1.6;
}

.link-column h4
{
   margin-bottom: 1rem;
  color:      white;
}

.link-column ul {
	list-style: none;
	
}

.link-column ul li {
    margin-bottom    :       0.5rem;
}

.link-column ul li a {
  -o-transition: color 0.3s ease;
  text-decoration: none;
  transition: color 0.3s ease;
	color: #a0aec0;}

.link-column ul li a:hover {
    color: white;

}

.footer-contact h4
{
    margin-bottom: 1rem;
        color: white;
}

.footer-contact p {
  color: #a0aec0;

	  margin-bottom: 0.5rem;
}

.footer-bottom {
   border-top: 1px solid #2d3748;
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: #a0aec0;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 78px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 78px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        left: 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .services-section h2,
    .methodology-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-banner {
        padding: 60px 0;
    }

    .introduction-block,
    .services-section,
    .methodology-section,
    .contact-section {
        padding: 60px 0;
    }
}.service-card.animate {


   animation  :        slideUp 0.6s ease forwards;
     }@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.about-hero {
   margin-top: 80px;
    padding: 100px 0;
  background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
   color: white;
    text-align: center;
}

.about-hero-content h1 
 {
   font-size: 3.2rem;
	font-weight: 700;
   margin-bottom: 1.5rem;
}

.about-hero-content p {
    font-size: 1.4rem;
    opacity: 0.9;
  max-width: 600px;
   margin: 0 auto;
}

.about-intro {
   padding: 100px 0;
  background: white;
	
}

.about-intro-grid {
    display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 4rem;
   align-items: center;
}

.intro-content h2 {
	margin-bottom :2rem; 
    font-size: 2.5rem; 
   color: #1e293b;
}

.intro-content p {

  font-size: 1.1rem;
   line-height: 1.7;
    margin-bottom: 1.5rem;
  color: #475569;
	}

.intro-visual img {
    width: 100%;
    border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.team-philosophy {
 padding: 100px 0;
   background  :     #f8fafc;
     }

.team-philosophy h2 {
    text-align :     center;
   font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1e293b;
}

.philosophy-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.philosophy-item {


    background: white; 
	  padding: 2rem; 
	   border-radius: 12px; 
	  box-shadow: 0 8px 25px rgba(0,0,0,0.06); 
	   text-align: center; 
		transition: transform 0.3s ease;
}

.philosophy-item:hover {
  transform: translateY(-5px);
}

.philosophy-item h3 {
	font-size: 1.4rem;
    margin-bottom: 1rem;
       color: #4f46e5;
}

.philosophy-item p
{
         color: #64748b;
       line-height: 1.6;

}

.experience-section {
  padding: 100px 0;
   background: white; 

}

.experience-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 4rem;
   align-items: center;
}

.experience-text h2 {
   font-size: 2.5rem;
   	margin-bottom: 2rem;
      color:#1e293b;
}

.experience-text p {
			font-size: 1.1rem;
      line-height: 1.7;
   margin-bottom: 2rem;
  color: #475569; 
	
}

.stats-container {

  display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 1.5rem;
   margin-top: 2rem;

}

.stat-item {
    text-align: center;
   padding: 1.5rem;
   background: #f1f5f9;
    border-radius: 8px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #4f46e5;
  margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
   color :        #64748b;
  font-weight: 500;
}

.experience-image img	{
   width     :  100%;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.values-section		{
    padding: 100px 0;
   background: #f8fafc;
}

.values-section h2 {
   text-align: center;
 font-size     :       2.5rem;
  margin-bottom: 3rem;
    color: #1e293b;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.value-card {
   background: white;
  border-radius: 16px;
   overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
         transition: transform 0.3s ease;

}

.value-card:hover {
  transform: translateY(-8px);
}

.value-card img {
    width: 100%;
	height: 200px;
    object-fit: cover;
}

.value-card h3 {
   font-size: 1.4rem;
  margin: 1.5rem 1.5rem 1rem;
  color  :  #1e293b;
}


.value-card p {
    margin: 0 1.5rem 1.5rem;
   color: #64748b;
  line-height: 1.6;
}

.expertise-areas {
  padding: 100px 0;
  background: white;
}

.expertise-areas h2		{
    text-align: center;

    font-size: 2.5rem;

    margin-bottom     :  3rem;

    color: #1e293b;
}

.expertise-list {
  display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

	    gap     :     2rem;
}

.expertise-item {
	 padding: 2rem;

	   border-left: 4px solid #4f46e5;

	   background: #f8fafc;

	    border-radius: 0 8px 8px 0;
}

.expertise-item h3 {
    font-size: 1.3rem;
   margin-bottom    :    1rem;
   color: #1e293b;
}

.expertise-item p {
  color  :   #64748b;
   line-height: 1.6;
}

.thankyou-hero {
    margin-top    :        80px;
  padding: 120px 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
   color    :       white;
   text-align: center;
}

.thankyou-content h1 {

  font-size: 3rem;
  font-weight     :    700;
	margin-bottom: 1rem;
}



.thankyou-subtitle {
   font-size: 1.3rem;
   opacity: 0.9;
    margin-bottom: 2rem;
}

.success-icon {
                    margin-bottom: 2rem;
  display   :      flex;
    justify-content: center;
}

.checkmark-circle {
   width: 80px;
    height: 80px;
   border-radius  :   50%;
  background: rgba(255,255,255,0.2);
  display: flex;
    align-items: center;
	justify-content : center;
   animation: scaleIn 0.5s ease-out;
}



.checkmark {
    width: 30px;
   height: 30px;
    border: 3px solid white;
   border-top: none;
                    border-right: none;
  transform: rotate(-45deg);
	margin-top    :      -5px;
}  @keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}.confirmation-details {
    padding: 100px 0;
         background: white;
}

.confirmation-grid {
  display: grid;
    grid-template-columns :1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.confirmation-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #1e293b;
}

.next-steps {
    display: flex;
   flex-direction: column;
    gap: 2rem;
}

.step {
      gap: 1.5rem; 
	  align-items: flex-start; 
	  display :        flex; 

}

.step-icon {
	width: 40px;
	 height: 40px;
   background: #10b981;
   color: white;
    border-radius: 50%;
       display: flex;
         align-items: center;
   justify-content: center;
  font-weight: 600;
   font-size: 1.1rem;
   flex-shrink: 0; 

}

.step-content h3 {
         font-size: 1.3rem;
   margin-bottom: 0.5rem;
    color: #1e293b;
}

.step-content p {
   color: #64748b;
	line-height: 1.6;
}

.confirmation-visual img {
    width: 100%;
	 border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.while-waiting{
   padding: 100px 0;
	 background: #f8fafc;
}

.while-waiting h2 {
               text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
  color: #1e293b;
}



.waiting-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.waiting-item {
    background: white;
  border-radius: 16px;
   overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    text-align: center;
}



.waiting-item img {
  width: 100%;
  height    :        180px;
   object-fit  :      cover;
}

.waiting-item h3		{
    font-size: 1.3rem;
    margin: 1.5rem 1.5rem 1rem;
  color: #1e293b;
}

.waiting-item p {
   margin: 0 1.5rem 1.5rem;
  color:   #64748b;
 line-height: 1.6;
}

.additional-info  
  {
  padding: 80px 0;
    background: white;
}

.info-cards {
               display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.info-card {
        background: #f8fafc;
  padding: 2.5rem;
	border-radius  :   12px;
    text-align: center;
    border: 2px solid #e2e8f0;
}

.info-card h3 {
   font-size: 1.4rem;
     color: #1e293b;
       margin-bottom: 1rem;
}

.info-card p {
    color: #64748b;
   margin-bottom: 1.5rem;
   line-height: 1.6;
}

.contact-phone {
    font-size: 1.5rem;
   font-weight: 600;
  color: #10b981;
}

.info-link {
   background: #4f46e5;
  color: white;
   padding: 12px 24px;
  text-decoration: none;
      border-radius: 6px;
  font-weight :     500;
   transition: background 0.3s ease;
   display  :   inline-block;
}


.info-link:hover {
  background: #4338ca; 

}

.return-home {
   padding    :     80px 0;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color :     white;
    text-align: center;
}

.return-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.return-content p {
    font-size: 1.2rem;
   opacity: 0.9;
    margin-right: auto;
    margin-left: auto;
	 max-width: 600px;
    margin-bottom: 2rem;
}  

.home-button {
               background   :     white;
    color: #10b981;
   padding: 15px 30px;
  text-decoration: none;
   border-radius: 8px;
   font-weight: 600;
    transition: all 0.3s ease;
        display: inline-block;
}

.home-button:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
}@media (max-width: 768px) {
    .about-intro-grid,
    .experience-content,
    .confirmation-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.5rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .philosophy-grid,
    .values-grid,
    .expertise-list,
    .waiting-grid,
    .info-cards {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .thankyou-hero {
        padding: 80px 0;
    }

    .confirmation-details,
    .experience-section,
    .about-intro,
    .team-philosophy,
    .values-section,
    .expertise-areas,
    .while-waiting {
        padding: 60px 0;
    }

    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2rem;
    }

    .team-philosophy h2,
    .experience-text h2,
    .values-section h2,
    .expertise-areas h2,
    .confirmation-text h2,
    .while-waiting h2,
    .return-content h2 {
        font-size: 2rem;
    }
}.cookies-section,
.privacy-section {
  padding: 100px 0;
    background: white; 
	
}

.cookies-section h1,
.privacy-section h1 {
    font-size: 2.8rem;
       margin-bottom: 2rem;
    color: #2d3748;
	text-align   :center;
}

.cookies-section h2,
.privacy-section h2 {
  font-size: 1.8rem;
  margin: 2rem 0 1rem;
  color: #2d3748;

}

.cookies-section p,
.privacy-section p {
		font-size: 1.1rem;
                    color: #4a5568;
    margin-bottom: 1.5rem;
   line-height: 1.6;}

.cookies-section ul,
.privacy-section ul		{
    list-style: disc;
   margin-left: 2rem;
   margin-bottom: 1.5rem; 

}

.cookies-section ul li,
.privacy-section ul li {
    font-size: 1.1rem;
  color: #4a5568;
	margin-bottom   :   0.5rem;
}