* {
    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-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin :        0 auto;
    padding: 0 20px;
}



.main-navigation {
  background-color: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: fixed;
    top: 0;
  width: 100%;
	 z-index  :       1000;


}

.nav-wrapper {
   		max-width: 1200px;
  margin: 0 auto;
   display   :   flex;
    justify-content: space-between;
   align-items     :   center;
       padding   :     0 20px;
	height: 70px;

     }

.company-logo {
   height: 45px;
   width: auto;
}

.menu-items {
    display: flex;
    gap: 30px;
}

.nav-link {
  text-decoration: none;
    color     :   #333;
    font-weight: 500;
  transition: color 0.3s ease;
  font-size    :16px;
	}

.nav-link:hover {
    color: #2563eb;
}

.mobile-menu-toggle {
    display: none;
  flex-direction: column;
  background    :  none;
  border: none;
 cursor: pointer;
  padding: 5px;
}

.burger-line {
 width    :        25px;
	height: 3px;
					background-color: #333;
		 margin: 2px 0;
  transition :0.3s;
}

.hero-section {
   margin-top: 70px;
   padding: 60px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.hero-content {
	    margin: 0 auto;
   max-width :1200px;
    display: grid;
  gap: 50px;
      align-items: center;
   grid-template-columns: 1fr 1fr;
  padding: 0 20px;
} 

.hero-text h1 {
   font-size: 3.2rem;
  font-weight: 700;
   margin-bottom: 20px;
  line-height  :   1.2;
}

.hero-subtitle {
               font-size: 1.3rem;
    margin-bottom     :     30px;
   opacity     : 0.95;
  line-height: 1.5;
}

.hero-buttons {
       display: flex;
	   gap: 20px;

}

.primary-btn, .secondary-btn {
    padding  :15px 30px;
    text-decoration: none;
   border-radius: 8px;
  font-weight: 600;
   transition: all 0.3s ease;
   display: inline-block;
}

.primary-btn {
  background-color: #fff;
    color: #2563eb;
}

.primary-btn:hover {
  background-color     :    #f1f5f9;
  transform: translateY(-2px);
}

.secondary-btn {
  background-color: transparent;
  color: white;
    border: 2px solid white;
}

.secondary-btn:hover {
    background-color: white;
  color   : #2563eb;
}

.hero-image img {
	      width: 100%;
    height: auto;
    border-radius     :       12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);

}

.services-overview 
 {

	   padding: 80px 0;
	 background-color: #fff;
     }

.services-overview h2 {

		 text-align: center;
	font-size: 2.5rem;
   margin-bottom: 50px;
    color: #1f2937;

	}

.services-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
}

.service-card {
	 background: white;
   border-radius: 12px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-image img {
  width: 100%;
  height: 200px;
   object-fit: cover;
               border-radius: 8px;
         margin-bottom: 20px;
}

.service-card h3 {
   font-size: 1.4rem;
	margin-bottom   :        15px;
    color: #1f2937;
}

.service-card p {
      color: #6b7280;

  line-height: 1.6;
}

.expertise-section {
    padding: 80px 0;
   background-color :#f8fafc;
}  

.expertise-content {
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
}

.expertise-text h2 {
    font-size: 2.3rem;
   margin-bottom: 30px;
    color: #1f2937;
}

.point {

	               margin-bottom: 25px;


}

.point h4 {
   font-size: 1.2rem;
    margin-bottom: 10px;
	 color: #2563eb;
}

.point p {
  line-height: 1.6;
   color: #6b7280;
}

.expertise-image img {
    width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.cta-section {
    padding: 80px 0;
  background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
    color: white;
   text-align: center;
}

.cta-content h2 {
          font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
   font-size: 1.2rem;
   margin-bottom: 30px;
   opacity:        0.95;
}

.cta-button {
      background-color: #fff;
   color: #1e3a8a;
  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:hover {
    background-color: #f1f5f9;
  transform: translateY(-2px);
}

.contact-section {
      padding: 80px 0;
  background-color: #fff;
}

.contact-section h2 {
   text-align: center;
   font-size: 2.5rem;
  margin-bottom: 50px;
    color: #1f2937;
}

.contact-wrapper {

	    display: grid;
   grid-template-columns: 1fr 2fr;
  gap: 60px;
	}

.contact-info h3 {
    font-size: 1.5rem;
  margin-bottom: 25px;
    color: #1f2937;
}

.contact-item {


    margin-bottom :       20px;
	}

.contact-item strong {
    color: #2563eb;
   display: block;
      margin-bottom: 5px;
}

.contact-form {

  background-color: #f8fafc; 
	   padding: 40px; 
	    border-radius: 12px;
	}


.form-group {
    margin-bottom :       25px;
}

.form-group label {
                    display: block;
  margin-bottom: 8px;
   font-weight: 500;
   color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
    padding: 12px 16px;
   border: 2px solid #e5e7eb;
  border-radius: 6px;
 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: #2563eb;

}

.submit-btn {
    background-color: #2563eb;
  color: white;
  padding     :        15px 30px;
   border: none;
   border-radius: 6px;
    font-size: 16px;
                    font-weight: 600;
   cursor: pointer;
	transition: background-color 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
  background-color :  #1d4ed8;
}

.main-footer {
    background-color: #1f2937;
  color: white;
   padding: 60px 0 20px;
}

.footer-content {
  max-width: 1200px;

   margin: 0 auto;

    display: grid;

  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

   gap: 40px;

   padding: 0 20px;
}

.footer-logo {
	height: 40px;
    width: auto;
  margin-bottom: 15px;
  filter: brightness(0) invert(1);
}

.footer-section h4 {
        color: #f9fafb;
  margin-bottom: 15px;
} 

.footer-links {
    list-style: none;
}

.footer-links li {
   margin-bottom: 8px;
}

.footer-links a {
   color     :     #d1d5db;
  text-decoration: none;
    transition   :      color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}  

.footer-bottom {
    border-top: 1px solid #374151;
  margin-top: 40px;
   padding-top: 20px;
    text-align: center;
 max-width: 1200px;
    margin-left: auto;
   margin-right: auto;
   color: #9ca3af;
}@media (max-width: 768px) {
    .menu-items {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        transition: left 0.3s ease;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .menu-items.active {
        left: 0;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .mobile-menu-toggle.active .burger-line:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active .burger-line:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expertise-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .services-overview h2,
    .contact-section h2,
    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}.page-hero {
   margin-top: 70px;
  padding :   80px 0;
  background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
  color: white;
  text-align: center; 

}

.hero-content-about h1 {
   font-size    : 3rem;
      font-weight: 700;
   margin-bottom: 20px;
}

.hero-description {
  font-size: 1.3rem;
         max-width: 800px;
               margin: 0 auto;
   opacity: 0.95;
  line-height: 1.6;
}

.nav-link.active {
  font-weight    :600;
    color: #2563eb;
}

.company-story {
    padding: 80px 0;
  background-color: #fff;
}

.story-content {
  display: grid;
  grid-template-columns    :      2fr 1fr;
   gap: 60px;
    align-items     :       center;
}

.story-text h2 {
  font-size: 2.4rem;
   margin-bottom: 25px;
   color: #1f2937;
}


.story-text p {
     margin-bottom: 20px;
	color: #6b7280;
   font-size: 1.1rem;
	 line-height: 1.7;
}

.company-stats {
	  display: flex;
  gap: 40px;
   margin-top: 40px;
}

.stat-item {
	    text-align: center;

}

.stat-number {
  display: block;
  font-size: 2.5rem;
   font-weight   :  700;
    color: #2563eb;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
   color    :   #6b7280;
    font-weight: 500;
}

.story-image img {
    width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.methodology-section {

	   padding: 80px 0;
    background-color: #f8fafc;
}

.methodology-section h2 {
  text-align: center;
	 font-size: 2.4rem;
  margin-bottom: 50px;
		color: #1f2937;
	
}

.methodology-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 40px;
}

.method-card {
	background: white;
  padding: 40px 30px;
   border-radius: 12px;
   text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition  :      transform 0.3s ease;
}

.method-card:hover {
  transform: translateY(-5px);
}

.method-icon{
   margin-bottom: 25px;
}

.icon-placeholder   {
    width: 80px;
   height: 80px;
  border-radius: 50%;
    margin  :0 auto;
}

.method-icon-1 {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);


}

.method-icon-2
	{

	  background: linear-gradient(135deg, #10b981, #059669);}

.method-icon-3 {
  background: linear-gradient(135deg, #f59e0b, #d97706);
} 

.method-card h3  
  {
    font-size: 1.4rem;
   margin-bottom: 15px;
    color: #1f2937;
}

.method-card p {
  color: #6b7280;
  line-height: 1.6;
}

.team-showcase    {
       padding: 80px 0;
    background-color: #fff;
}

.team-showcase h2 {
   text-align  :        center;
    font-size     :   2.4rem;
  margin-bottom: 50px;
   color: #1f2937;
}

.showcase-content {
  display: grid;
  grid-template-columns:   1fr 1fr;
    gap: 60px;
  align-items: center;


}

.showcase-image img {
	width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.point-item {
  margin-bottom: 30px;
}

.point-item h4 {
   font-size: 1.3rem;
  margin-bottom   :12px;
  color: #2563eb;
}

.point-item p {
  color: #6b7280;
  line-height: 1.6;
}

.specializations {
	padding: 80px 0;
    background-color: #f8fafc;
}

.specializations h2 {
   text-align: center;
   font-size: 2.4rem;
  margin-bottom: 50px;
    color: #1f2937;
}

.spec-item {
    display: grid;
    grid-template-columns    :1fr 2fr;
    gap:       40px;
   align-items    :   center;
    margin-bottom: 60px;
  background: white;
	padding: 40px;
   border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.spec-item:nth-child(even)
	{
  grid-template-columns: 2fr 1fr;
}

.spec-item:nth-child(even) .spec-image {
	    order: 2;
     }

.spec-image img {

 width: 100%;
		 height: 250px;
  object-fit: cover;
   border-radius: 8px;
}

.spec-content h3 {
   font-size: 1.5rem;
               margin-bottom:        15px;
  color   :     #1f2937;
	
}



.spec-content p {
   margin-bottom: 20px;
    color: #6b7280;
  line-height: 1.6;
}

.spec-benefits  
  {
  list-style: none;
}

.spec-benefits li {
  padding: 8px 0;
   position: relative;
   padding-left: 25px;
        color: #374151;
}

.spec-benefits li:before
	{
  content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.values-section {
       padding     :  80px 0;
    background-color: #fff;
}

.values-section h2 {
  text-align    : center;
   font-size: 2.4rem;
    margin-bottom: 50px;
 color: #1f2937;
}

.values-grid {
   display     :grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-card {
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 30px;
   border-radius : 12px;
  text-align: center;
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-3px);
}

.value-card h3 {
    font-size: 1.3rem;
	 margin-bottom: 15px;
   color: #1f2937;
}

.value-card p  {
    color: #6b7280;
    line-height     :       1.6;
}

.thankyou-main     {
  margin-top: 70px;
   padding: 60px 0;
  min-height: calc(100vh - 70px);
   background-color     :#f8fafc;
}

.thankyou-content
	{
     max-width: 800px;
	margin: 0 auto;
}

.success-message {
    text-align: center;
      background: white;
    padding: 60px 40px;
	border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
	margin-bottom: 40px;
}

.success-icon {
  margin-bottom: 30px;
}

.checkmark-circle {
  width: 80px;
   height: 80px;
    border-radius: 50%;
  background: linear-gradient(135deg, #10b981, #059669);
  margin: 0 auto;
     display: flex;
   align-items: center;
   justify-content     : center;
  animation: pulse 2s infinite;
}

.checkmark {
  width    : 30px;
  height: 15px;
    border: 3px 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); }
}.success-message h1 {
  font-size  :      2.5rem;
  color: #1f2937;
   margin-bottom:20px;
}

.thank-message {
               font-size: 1.2rem;
  color: #6b7280;
    line-height: 1.6;
}

.next-steps {
  background: white;
	padding: 40px;
  border-radius: 12px;
   margin-bottom: 30px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.next-steps h2


{

    text-align: center;
    font-size: 2rem;
   margin-bottom: 30px;
    color: #1f2937;


}

.steps-timeline {
  display: flex;
      flex-direction: column;
  gap: 30px;
}

.step-item {
   display:    flex;
    gap: 20px;
  align-items: flex-start;
}

.step-number {
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
	 color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
     display    :        flex;
    align-items: center;
    justify-content: center;
        font-weight: bold;
          flex-shrink: 0;
}

.step-content h3 {
  font-size: 1.2rem;
 margin-bottom: 8px;
    color: #1f2937;
}

.step-content p {
       color: #6b7280;
    line-height: 1.6;}

.additional-info {
     margin-bottom: 30px;
}

.info-cards {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 20px;

}

.info-card {


  background: white;
   padding: 25px;
    border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
     }

.info-card h3     {
      font-size  :  1.1rem;
    margin-bottom: 10px;
   color    :       #2563eb;
	}

.info-card p {
    color: #6b7280;
    font-size: 0.9rem;
       line-height: 1.5;
}

.contact-reminder {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
		 padding: 30px;
       border-radius: 12px;
  text-align: center;
    margin-bottom: 30px;
}

.contact-reminder h3 {
    font-size: 1.3rem; 
	   margin-bottom: 15px; 
	   color: #92400e;
}

.contact-reminder p {
    margin-bottom: 15px;
	 color: #78350f;
}

.urgent-contact {
    display: flex;
   flex-direction: column;
    gap: 5px;
}

.urgent-contact strong {
  font-size: 1.5rem;
  color: #92400e;
}

.urgent-contact span {
                    font-size: 0.9rem;
   color    :   #78350f;
}

.return-navigation 
 {
   display: flex;
  gap :20px;
 justify-content: center;
}

.btn-return, .btn-about {
    padding: 15px 30px;
    text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
    text-align: center;
}

.btn-return {
  background-color: #2563eb;
   color: white;
}

.btn-return:hover {
  background-color :       #1d4ed8;
  transform: translateY(-2px);
}

.btn-about {
  background-color :       transparent;
   color: #2563eb;
   border: 2px solid #2563eb;
}

.btn-about:hover {
   background-color   :   #2563eb;
	 color: white;
}@media (max-width: 768px) {
    .hero-content-about h1 {
        font-size: 2.2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-stats {
        justify-content: center;
        gap: 30px;
    }

    .methodology-grid {
        grid-template-columns: 1fr;
    }

    .showcase-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .spec-item {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }

    .spec-item:nth-child(even) .spec-image {
        order: 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .success-message {
        padding: 40px 20px;
    }

    .success-message h1 {
        font-size: 2rem;
    }

    .return-navigation {
        flex-direction: column;
        gap: 15px;
    }

    .steps-timeline {
        gap: 25px;
    }

    .info-cards {
        grid-template-columns: 1fr;
    }

    .urgent-contact {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero-content-about h1 {
        font-size: 1.8rem;
    }

    .company-stats {
        flex-direction: column;
        gap: 20px;
    }

    .spec-item {
        padding: 25px;
    }

    .success-message {
        padding: 30px 15px;
    }

    .next-steps {
        padding: 25px;
    }

    .contact-reminder {
        padding: 20px;
    }
}.privacy-section,
.cookies-section {
  padding   :80px 0; 
	    background-color     :  #fff;
}

.privacy-section h1,
.cookies-section h1 {
       font-size: 2.5rem;
   margin-bottom: 30px;
  color: #1f2937;
    text-align: center;
	}

.privacy-section h2,
.cookies-section h2
{
  font-size: 1.8rem;
	margin: 30px 0 15px;
   color: #2563eb;
}

.privacy-section p,
.cookies-section p {
      margin-bottom: 20px;
    line-height: 1.6;
    color     :      #6b7280;
}