* {
    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: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	padding: 1rem 0;
        position: fixed;
  width: 100%;
	top: 0;
    z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1); 
	
}  

.nav-container {
	max-width: 1200px;
    margin: 0 auto;
   display:     flex;
          justify-content: space-between;
       align-items: center;
   padding: 0 20px;

}

.brand-logo {
    height    : 45px;
  width: auto;
}

.nav-links {


    display: flex;
    list-style: none;
  gap: 2rem;


}

.nav-links a   {
  color: white;
  text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
  padding: 8px 16px;
    border-radius: 5px;
}

.nav-links a:hover {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}


.burger-menu {
   display: none;
  flex-direction: column;
  cursor: pointer;
   gap: 4px;
}

.burger-menu span {
                    width: 25px;
  height: 3px;
  background-color  :    white;
   transition: 0.3s;
}

.hero-section {
  display:    flex;
  align-items: center;
   min-height: 100vh;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
 padding: 80px 20px 40px;
}

.hero-content {
   flex: 1;
    max-width: 600px;
	margin-right: 40px;
}

.hero-content h1 {


    font-size:       3.2rem;
    font-weight: 700;
       margin-bottom: 1.5rem;
    line-height:       1.2;}

.hero-description {
  font-size: 1.3rem;
   margin-bottom: 2.5rem;
    opacity: 0.95;

}

.hero-actions {

	   display: flex;
   gap: 1rem;
  flex-wrap: wrap;
     }

.primary-btn, .secondary-btn {
	padding: 14px 30px;
   border-radius: 8px;
   text-decoration     : none;
  font-weight   :        600;
   transition   :        all 0.3s ease;
    display: inline-block;
}

.primary-btn {
    background-color: #ffffff;
                    color: #f5576c;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.primary-btn:hover  {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.secondary-btn {
    background-color: transparent;
	color: white;
   border    :2px solid white;
}  

.secondary-btn:hover {
   background-color: white;
 color: #f5576c;
}

.hero-visual {
  flex: 1;
   -ms-flex: 1;
      -webkit-flex: 1;
    text-align: center;
} 

.hero-visual img {
   max-width    :     100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.expertise-overview {
    padding: 80px 0;
         background-color: #ffffff;
}

.expertise-overview h2 {
     text-align: center;
   font-size: 2.8rem;
  margin-bottom: 3rem;
    color: #2c3e50;
}

.expertise-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

  gap: 2rem;
}

.expertise-card {
   background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.expertise-card:hover {
  transform: translateY(-8px);
}

.expertise-card img
	{
  width: 100%;
         height: 220px;
  object-fit: cover;
} 

.expertise-card h3 {
       font-size: 1.5rem;
  margin: 1.5rem;
   color: #2c3e50;
}

.expertise-card p {
  margin: 0 1.5rem 1.5rem;
   color: #666;
   line-height: 1.7;
}

.cta-consultation {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 60px 0;
}

.cta-consultation .container {
      display   : flex;
                    align-items: center;
   gap: 3rem;
	}

.cta-content {

    -webkit-flex:     1;
    flex: 1;


}

.cta-content h2


{
  font-size: 2.5rem;
   margin-bottom     : 1rem;
}

.cta-content p {

    font-size: 1.2rem;
   margin-bottom :    2rem;
  opacity: 0.9;}

.cta-button {
     transition: all 0.3s ease;
    background-color: #f5576c;
  display   :     inline-block;
  padding: 16px 35px;
  font-weight :      600;
  color  :        white;
	border-radius: 8px;
       text-decoration: none;
} 

.cta-button:hover {
			background-color: #e74c3c;
  transform: translateY(-2px);
}

.cta-image {
  flex: 1;
}

.cta-image img {
     width: 100%;
        border-radius: 12px;
}

.services-detail  {
	padding     :       80px 0;
   background-color: #f8f9fa;
}

.services-detail h2 {
    text-align  :      center;
  font-size  :2.8rem;
    margin-bottom: 3rem;
  color: #2c3e50;
	
}

.services-list {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
}

.service-item {
    background: white;
   padding: 2rem;
    border-radius    :      12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.service-item h3 {
    font-size: 1.6rem;
    color: #2c3e50;
   margin-bottom: 1rem;
}

.service-item p		{
  color: #666;
      margin-bottom: 1.5rem;
   line-height: 1.7; 
	
}

.service-features {
    display: flex;
  flex-wrap :     wrap;
  gap: 0.8rem;
}

.service-features span {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 5px 12px;
	border-radius: 20px;
	font-size: 0.9rem;
}

.contact-section {
  padding: 80px 0;
   background-color: #ffffff;
}

.contact-section h2 {
   text-align: center;
         font-size: 2.8rem;
   margin-bottom: 3rem;
  color    :  #2c3e50;
}

.contact-wrapper {
  display    :  grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.contact-info h3 {
	 font-size: 1.8rem;
    margin-bottom: 2rem;
 color: #2c3e50;
}

.info-item {
	    margin-bottom:  1.5rem;
}

.info-item strong {
   color: #667eea;
   	display: block;
       margin-bottom     :      0.5rem;
}

.contact-form {
   border-radius: 12px;
   background: #f8f9fa;
   padding: 2rem;
}

.form-group {
   margin-bottom: 1.5rem;


}

.form-group label {
	   display: block;
   margin-bottom: 0.5rem;
                    font-weight: 600;
   color: #2c3e50;


}

.form-group input,
.form-group select,
.form-group textarea {
   width: 100%;
	 padding: 12px;
  border: 2px solid #e1e5e9;
   border-radius: 6px;
  font-size: 1rem;
   transition: border-color 0.3s ease;
}


.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
        border-color: #667eea;
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color :       white;
   padding: 14px 30px;
   border: none;
    border-radius: 8px;
    font-size: 1rem;
  font-weight: 600;
       cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover  {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.main-footer		{
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding: 3rem 0 1rem;
}

.footer-container {
        max-width     :1200px;
   margin: 0 auto;
   padding: 0 20px;
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
} 

.footer-logo     {
   height:40px;
    width  :   auto;
  filter: brightness(0) invert(1);
    margin-bottom: 1rem;
}

.footer-brand p {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-nav h4,
.footer-legal h4,
.footer-contact h4 {
   margin-bottom: 1rem;
    color: #ecf0f1;
}

.footer-nav ul,
.footer-legal ul {
  list-style: none;
}

.footer-nav a,
.footer-legal a     {
  color :      #bdc3c7;
		text-decoration: none;
		 transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
    color   :  white;
}


.footer-contact p {

  opacity: 0.8;
    margin-bottom: 0.5rem;
}  

.footer-bottom {
    text-align: center;
  padding-top: 2rem;
   margin-top: 2rem;
               border-top :    1px solid #34495e;
  opacity: 0.7;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 120px 20px 40px;
    }
    
    .hero-content {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .cta-consultation .container {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-grid,
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .expertise-overview h2,
    .services-detail h2,
    .contact-section h2 {
        font-size: 2.2rem;
    }
}.nav-links a.active {
     background-color: rgba(255,255,255,0.25);
   border-radius: 6px;}

.about-hero {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
	 color: white;
  padding: 120px 0 60px;
  text-align     :  center;
}

.about-hero-content h1 {

    font-size   :3rem;
  font-weight: 700;
	 margin-bottom: 1.5rem;
    line-height: 1.2;}

.about-hero-text


{
  font-size: 1.3rem;
    max-width: 800px;
   margin: 0 auto;
    opacity: 0.95;
}

.story-section
{
	padding: 80px 0;
	 background-color: #fff;
}

.story-content {
  display     :       grid;
	  grid-template-columns     :   1fr 1fr;
	                    gap: 3rem;
	   align-items :      center;

}

.story-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.story-text p {
  line-height: 1.8;
  font-size: 1.1rem;
  margin-bottom     :   1.5rem;
    color: #555;
}

.story-image img {
  width: 100%;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.methodology-section {
	padding :  80px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.methodology-section h2 {
   margin-bottom: 3rem;
   font-size: 2.8rem;
   text-align: center;
}

.methodology-grid {
    display:     grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   	gap: 2rem;
}

.method-card {
	  background: rgba(255,255,255,0.1);
    padding: 2rem;
   border-radius: 15px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
     }

.method-number {
   font-size: 3rem;
    font-weight: 700;
   color: #fff;
    margin-bottom: 1rem;


}

.method-card h3 {
    font-size: 1.5rem;
	margin-bottom  :1rem;
}

.method-card p {
 line-height:       1.7;
    opacity: 0.9;
}

.expertise-showcase {

  padding:      80px 0;
	background-color: #f8f9fa;

}

.expertise-content {


	display  :    grid;
    grid-template-columns: 1fr 1fr;
         gap: 3rem;
   align-items   :      center; 
}

.expertise-images {
               position: relative;
	
}

.expertise-img-main {
    width: 100%;
    border-radius   :12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
	
}

.expertise-img-secondary {
   position: absolute;
   bottom: -20px;
   right: -20px;
   width: 60%;
   border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.expertise-text h2 {
	 font-size  :    2.5rem;
               color: #2c3e50;
    margin-bottom   : 2rem;
}

.expertise-text p {
  color: #555;
   line-height: 1.8;
        margin-bottom: 2rem;
}

.expertise-stats {
  display: flex;
	gap: 2rem;
    margin: 2rem 0; 
}

.stat-item


{
   text-align :       center;
}

.stat-number {
	 display: block;
    font-size: 2.5rem;
  font-weight: 700;
   color: #667eea;
}

.stat-label    {
   font-size    :      0.9rem;
  color   :       #666;
  text-transform    :   uppercase;
	 letter-spacing: 1px;
}

.approach-section {
  padding: 80px 0;
  background-color: #fff;
}

.approach-section h2     {
       text-align: center;
  font-size:  2.8rem;
  color: #2c3e50;
    margin-bottom:        3rem;
}

.approach-grid {
  display: grid;
  gap: 3rem;
}

.approach-item {
               display: grid;
   grid-template-columns: 1fr 2fr;
  gap: 2rem;
   align-items: center;
}

.approach-item:nth-child(even) {
    grid-template-columns: 2fr 1fr;
}

.approach-item:nth-child(even) img {
	order: 2;
}

.approach-item img
	{
	    width: 100%;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
     }

.approach-content h3 {

	   font-size: 1.8rem;
  color: #2c3e50;
    margin-bottom: 1rem;}

.approach-content p {
	color: #555;
  line-height: 1.8;
    font-size: 1.1rem;
}

.values-section {
   padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}  

.values-section h2 {
  text-align    : center;
  font-size: 2.8rem;
  margin-bottom: 3rem;
}

.values-list {
  display: grid;
    gap: 2rem;
}

.value-item {
  background: rgba(255,255,255,0.1);
  padding: 2rem;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
}

.value-item h3 {

	  font-size: 1.6rem;
   margin-bottom: 1rem;

}

.value-item p {
   line-height: 1.7;
	opacity: 0.9;
}

.thankyou-hero {
  background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
  color: white;
   padding :120px 0 80px;
    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;
}

.checkmark-circle {
  width    :     80px;
   height: 80px;
    border-radius: 50%;
  background: rgba(255,255,255,0.2);
   display  :       flex;
    align-items     :   center;
    justify-content: center;
    margin: 0 auto;
  backdrop-filter: blur(10px); 

}

.checkmark {
   width: 30px;
    height: 15px;
  border: 3px solid white;
    border-top: none;
   border-right: none;
  transform: rotate(-45deg);

}

.next-steps {

                    padding: 80px 0;
	 background-color: #fff;

}

.steps-grid  
  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}  

.step-card {
   text-align: center;
    padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  background: #f8f9fa;
}

.step-number {
	 width: 60px;
  height: 60px;
    border-radius: 50%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    display: flex;
    align-items: center;
   justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.step-card h3 {


    font-size: 1.5rem;
  color: #2c3e50;
               margin-bottom: 1rem;


}

.step-card p 
 {
    color   :        #666;

	    line-height: 1.7;
}

.anticipation-section  {
    padding: 80px 0;
  background-color  :#f8f9fa;

}

.anticipation-content {
   display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  align-items:        center;
}

.anticipation-text h2 {

	  font-size: 2.5rem;
    color     :     #2c3e50;
   margin-bottom  :       2rem; 
	
     }

.anticipation-text p {
    color: #555;
  line-height: 1.8;
   margin-bottom: 2rem;
}

.benefits-list {
                    display: grid;
    gap: 1.5rem;
}

.benefit-item h4 {
  color: #667eea;
         font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: #666;
    margin: 0;
  font-size: 0.95rem;
}

.anticipation-visual img {
  width  :        100%;
  border-radius  : 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.resources-section {
 padding: 80px 0;
        background-color: #fff;
}

.resources-section h2 {
   text-align: center;
    font-size: 2.5rem;
  color: #2c3e50;
	margin-bottom: 1rem;
}

.resources-intro {
    text-align:     center;
                    font-size: 1.2rem;
  color: #666;
   margin-bottom: 3rem;
  max-width: 700px;
    margin-left: auto;
   margin-right: auto;
}

.resources-grid {
   display:    grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 2rem;
}

.resource-card {
  background: #f8f9fa; 
  padding: 2rem; 
    border-radius: 12px; 
	border-left     :     4px solid #667eea;

}

.resource-card h3 {
  color:    #2c3e50;
         font-size: 1.4rem;
  margin-bottom: 1rem;
}

.resource-card p {
   color: #666;
    line-height: 1.7;
}

.contact-reminder {
	padding:     60px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  text-align: center;
}

.reminder-content h2 {

    font-size: 2.2rem;
    margin-bottom :   1rem; 
	
	}

.reminder-content p {
   font-size: 1.1rem;
  margin-bottom: 2rem;
	opacity: 0.9;
}

.contact-details {
    display: flex;
    justify-content: center;
   gap: 3rem;
}

.contact-item strong {
    display: block;
   font-size: 1.2rem;
  margin-bottom :      0.5rem;
}

.contact-item p {
   margin: 0;
        opacity: 0.9;
}@media (max-width: 768px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 2.2rem;
    }
    
    .story-content,
    .expertise-content,
    .anticipation-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-item,
    .approach-item:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .approach-item:nth-child(even) img {
        order: 0;
    }
    
    .expertise-img-secondary {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }
    
    .expertise-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .methodology-grid,
    .steps-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1,
    .thankyou-content h1 {
        font-size: 1.8rem;
    }
    
    .story-text h2,
    .expertise-text h2,
    .anticipation-text h2 {
        font-size: 2rem;
    }
    
    .methodology-section h2,
    .approach-section h2,
    .values-section h2,
    .resources-section h2 {
        font-size: 2.2rem;
    }
}.cookies-section,
.privacy-section {
  padding: 120px 0 80px;
    background-color: #fff;
}

.cookies-section h1,
.privacy-section h1 {
   font-size: 2.8rem;
   color: #2c3e50;
    text-align: center;
  margin-bottom    :   2rem;
}

.cookies-intro,
.privacy-intro  {
	font-size: 1.2rem;
   color: #666;
   text-align  :        center;
   max-width: 800px;
   margin: 0 auto 3rem;
	
}

.cookies-section h2,
.privacy-section h2

{
	    font-size     :   1.8rem;
  color: #2c3e50;
  margin: 2rem 0 1rem;


}

.cookies-section p,
.privacy-section p {
   color: #555;
	 line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cookies-list  
  {
    margin-bottom: 1.5rem;
   list-style: none;
	
}

.cookies-list li {
  margin-bottom: 1rem;
    font-size: 1.1rem;
  color: #555;
}

.cookies-list li strong {
    color: #667eea;
}@media (max-width: 768px) {
    .cookies-section h1,
    .privacy-section h1 {
        font-size: 2.2rem;
    }

    .cookies-intro,
    .privacy-intro {
        font-size: 1.1rem;
    }

    .cookies-section h2,
    .privacy-section h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .cookies-section h1,
    .privacy-section h1 {
        font-size: 1.8rem;
    }

    .cookies-section,
    .privacy-section {
        padding: 100px 0 60px;
    }
}