* {
  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: #f8f9fa;
}

.main-header {


  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
   top   :        0;
   width :  100%;
   z-index: 1000;
     }

.nav-container 
 {
     max-width: 1200px;
   margin: 0 auto;
    display: flex;
  justify-content: space-between;
   align-items: center;
  padding: 1rem 2rem;
}

.brand-section {
   display: flex;
   align-items: center;
    gap: 12px;
}

.company-logo {
  height: 40px;
    width: auto; 

}

.brand-name {
  font-size: 1.5rem;
   font-weight     :  bold;
  color: #2c5aa0;
}

.nav-menu {
    display   :    flex;
  list-style: none;
  gap: 2rem;
}  

.nav-link {
    text-decoration     :  none;
   color: #333;
  font-weight: 500;
	 transition: color 0.3s ease;
   position: relative;
}

.nav-link:hover,
.nav-link.active {
 color: #2c5aa0;
}

.nav-link.active::after {
  content: '';
        position: absolute;
  bottom: -5px;
    left: 0;
   width: 100%;
   height: 2px;
    background: #2c5aa0;
}

.mobile-toggle {
    display: none;
   flex-direction: column;
   cursor: pointer;
    gap: 4px;
}

.burger-line {
   width: 25px;
          height: 3px;
    background : #333;
  transition: 0.3s;
}

.mobile-toggle.active .burger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-6px, 6px);
	
}

.mobile-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .burger-line:nth-child(3) {
  transform: rotate(45deg) translate(-6px, -6px);

}

.primary-content {
  margin-top: 80px;
  min-height: calc(100vh - 80px);
}

.hero-banner {
  padding    : 4rem 2rem;
    margin: 0 auto;
    align-items: center;
    max-width: 1200px;
   gap: 3rem;
	display: flex;
   min-height: 70vh;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: 700;
   color: #1e3a8a;
    margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-subtitle {
   font-size: 1.3rem;
   color: #64748b;
    margin-bottom  :     2.5rem;
 max-width: 600px;
}

.hero-actions {
        display: flex;
	gap: 1rem;
    flex-wrap: wrap;
}

.primary-button, .secondary-button {
   padding  :       14px 28px;
    border-radius: 8px;
  text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display :        inline-block;
}

.primary-button {
  background: #2c5aa0;
        color: white;
}

.primary-button:hover {
   background   :  #1e3a8a;
  transform: translateY(-2px);
}

.secondary-button {

    background   :    transparent;
    color     :    #2c5aa0;
  border: 2px solid #2c5aa0;

}

.secondary-button:hover {
     background: #2c5aa0;
   color: white;
     }  

.hero-visual {
   flex: 1;
}

.hero-image {
   width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.services-overview {
  padding: 5rem 2rem;
   background: white;
}


.section-container {
     max-width    :        1200px;
  margin: 0 auto;
     }

.section-heading {
  text-align: center;
 font-size: 2.5rem;
    color: #1e3a8a;
    margin-bottom: 3rem;
}

.services-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
	}

.service-card {
    background: #f8fafc;
    padding: 2rem;
	border-radius: 12px;
    text-align:    center;
  transition: transform 0.3s ease;
}

.service-card:hover {

	  transform: translateY(-5px);}

.service-image {
     object-fit    :     cover;
  margin-bottom: 1.5rem;
    border-radius: 8px;
  height: 200px;
  width: 100%; 

     }

.service-card h3 {
  font-size    :1.4rem;
    color: #1e3a8a;
  margin-bottom: 1rem;
}



.transformation-showcase {
  padding: 5rem 2rem;
   background: #f1f5f9;
}

.showcase-content {
	 max-width :       1200px;
   margin: 0 auto;
      display  : grid;
  grid-template-columns: 1fr 1fr;
    gap    :3rem;
  align-items: center;
}

.showcase-text h2 {
  font-size: 2.2rem;
    color: #1e3a8a;
   margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
	  margin-top:    2rem;
}

.benefits-list li {
  position: relative;
    padding: 0.5rem 0;
	 padding-left: 1.5rem;
}

.benefits-list li::before {
  content: '✓';
    position: absolute;
   left: 0;
   color: #10b981;
    font-weight: bold;
}

.transformation-img	{
                       -moz-border-radius   :12px;
   width: 100%;
   height: auto;
  border-radius: 12px;
         -webkit-border-radius: 12px;
}

.cta-section {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
   padding: 4rem 2rem;
   text-align: center;
   color: white;
}


.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
	{
   background: white;
  color: #2c5aa0;
    padding: 16px 32px;
   border-radius: 8px;
    text-decoration :        none;
	font-weight: 600;
   transition: transform 0.3s ease;
   display   :inline-block;
}

.cta-button:hover {
     transform: translateY(-2px);

}

.contact-section {
   padding: 5rem 2rem;
  background: white; 

}

.contact-container {
    max-width  :      800px;
  margin     :   0 auto;
}

.contact-container h2 {
  text-align: center;
	font-size: 2.5rem;
               color: #1e3a8a;
   margin-bottom    :  3rem;


}

.contact-form {
   display: grid;
    gap: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
      display: flex;
  flex-direction: column;
}

.form-group label {
  margin-bottom: 0.5rem;
     font-weight: 600;
   color: #374151;
}

.form-group input,
.form-group select,
.form-group textarea {
   padding :        12px 16px;
    border: 2px solid #e5e7eb;
  border-radius: 8px;
    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: #2c5aa0;
}

.submit-button {
    background:      #2c5aa0;
   color: white;
   padding: 16px 24px;
  border  :      none;
   border-radius     :    8px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor   :        pointer;
    transition: background 0.3s ease;
   margin-top: 1rem;
}

.submit-button:hover {
   background :       #1e3a8a;
}

.site-footer {
  padding: 3rem 2rem 1rem;
    background   :#1f2937;
   color: white;
}

.footer-content {
   max-width: 1200px;
    margin: 0 auto;
  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-section h3,
.footer-section h4 {
          margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section ul {
    list-style  :    none;
	
}

.footer-section ul li {


  margin-bottom: 0.5rem; 
	}

.footer-section a {
  color    :    #d1d5db;
   text-decoration: none;
               transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
  padding-top    :  2rem;
  border-top : 1px solid #374151;
   color: #9ca3af;
}

.about-page .about-hero {
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
   padding    :        4rem 2rem;
    text-align: center;

}

.page-title {
   font-size: 3rem;

	  color: #1e3a8a;

	    margin-bottom: 1.5rem;
}

.hero-description


{
    font-size: 1.3rem;
  color: #64748b;
  max-width: 800px;
    margin: 0 auto;
}

.company-story {
    padding: 5rem 2rem;
   background: white;
}

.story-container {


  max-width:   1200px;
   margin: 0 auto;
               display   :     grid;
    grid-template-columns: 2fr 1fr;
  gap: 3rem;
   align-items: center;
     }

.story-text h2	{
    font-size: 2.3rem;
    color: #1e3a8a;
  margin-bottom: 2rem;
}

.story-text p {
	 margin-bottom  :       1.5rem;
    font-size: 1.1rem;
     line-height: 1.7;
}

.about-img {
	   height     :  auto;
    border-radius: 12px;
	width: 100%;


}

.expertise-areas {
    padding: 5rem 2rem;
	    background: #f8fafc;
}

.section-title {
    text-align: center;
   		font-size: 2.5rem;
      color: #1e3a8a;
     margin-bottom: 3rem;
}

.expertise-grid {
   max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.expertise-item {
  background     :     white;
    padding: 2rem;
          border-radius: 12px;
    border-left: 4px solid #2c5aa0;
}

.expertise-item h3		{
   font-size:   1.4rem;
	color: #1e3a8a;
  margin-bottom   :       1rem;
}

.approach-methodology     {
               padding: 5rem 2rem;
   background   :   white;
}

.methodology-content {
	max-width: 1200px; 
    margin: 0 auto; 
  display: grid; 
   grid-template-columns: 2fr 1fr; 
   gap   :    3rem; 
          align-items: start;
} 

.methodology-text h2 {
  font-size: 2.3rem;
	 color: #1e3a8a;
    margin-bottom: 1.5rem;
}

.process-steps {
    margin-top: 2rem;
    display: grid;
   gap :  1.5rem;
}

.process-step {
   background: #f1f5f9;
  padding: 1.5rem;
      border-radius: 8px; 
	
}

.process-step h4 {
  font-size: 1.2rem;
    color :#1e3a8a;
		 margin-bottom: 0.5rem;
}

.methodology-img {
  width: 100%;
	 height: auto;
   border-radius    :   12px; 

}

.values-section {
  padding: 5rem 2rem; 
    background    :        #f8fafc;
}

.values-section h2 {
   text-align :        center;
  font-size: 2.5rem;
    color: #1e3a8a;
   margin-bottom: 3rem;
}

.values-grid    {
    max-width: 1200px;
	margin: 0 auto;
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.value-card {
  background: white;
  padding: 2rem;
   border-radius: 12px;
   text-align: center;
   transition: transform 0.3s ease;
}

.value-card:hover
	{
     transform: translateY(-5px);}


.value-card h3 {
  font-size: 1.4rem;
     color     :    #1e3a8a;
  margin-bottom: 1rem;
}

.why-choose-us {
  padding: 5rem 2rem;
    background: white;
}

.choose-us-content {
   max-width: 1200px;
   margin    :    0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
  align-items: center;
}

.choose-img {
  width: 100%;
  height     :       auto;
 border-radius  :    12px;
}

.choose-us-text h2 {
   font-size: 2.3rem;
	color: #1e3a8a;
          margin-bottom: 2rem;
}

.advantages-list {
  list-style: none;
}

.advantages-list li {
    padding: 0.8rem 0;
    position: relative;
    padding-left: 2rem;
    font-size: 1.1rem;
}

.advantages-list li::before {
  content: '→';
    position: absolute;
    left: 0;
               color: #2c5aa0;
  font-weight: bold;
    font-size: 1.2rem;
}

.clients-results {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a8a 100%);
   color: white;
  text-align: center;
}

.clients-results h2		{
    font-size    :  2.5rem;
  margin-bottom: 3rem;

}

.results-stats {
  max-width: 800px;
      margin: 0 auto;
  display   :   grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
}

.stat-item {
   text-align: center; 

}

.stat-number {

	   display: block;
                    font-size: 3rem;
   font-weight: bold;
  color: #fbbf24;
	 margin-bottom: 0.5rem;
	}

.stat-item p {
   font-size: 1.1rem;
    opacity: 0.9;
}

.thankyou-page .thankyou-hero {
  padding: 4rem 2rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
}

.thankyou-container		{
  max-width: 1200px;
    margin: 0 auto;
	display: grid;
    grid-template-columns: 2fr 1fr;
   gap: 3rem;
	 align-items: center;
}

.thankyou-title {
  font-size: 3.2rem;
    margin-bottom: 1.5rem;


}

.thankyou-subtitle     {
   font-size: 1.3rem;
   opacity: 0.9;
}

.thankyou-image {
	 width: 100%;
    height: auto;
	border-radius: 12px;
}

.next-steps {

    padding: 5rem 2rem;
        background: white;

}

.steps-container {
   max-width: 800px;
   margin: 0 auto;
}

.steps-container h2 {
   text-align: center;
    font-size: 2.5rem;
   color: #1e3a8a;
  margin-bottom: 3rem;
}

.timeline-steps {

	   gap: 2rem;
  display  :      grid;
	}

.timeline-item {
   display   :    flex;
    gap    : 1.5rem;
          align-items: start;
}

.step-number {
  justify-content: center;
   border-radius     :    50%;
    width: 40px;
    align-items: center;
  display: flex;
   background: #2c5aa0;
   color: white;
   height: 40px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.step-content p {
   color: #64748b;
	margin-bottom   :        0.5rem;
}

.step-time {
    color : #059669;
  font-weight: 600;
    font-size: 0.9rem; 

}

.while-you-wait{
  padding: 5rem 2rem;
    background: #f8fafc;
}

.wait-content {
  max-width: 1200px;
	margin: 0 auto;
}

.wait-content h2 {
   text-align: center;
   font-size    :      2.5rem;
  color: #1e3a8a;
   margin-bottom: 3rem;
}  

.resources-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 2rem;
}



.resource-card {
    background:    white;
    padding: 2rem;
    border-radius: 12px;
	text-align: center;
}

.resource-image {
	width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
   margin-bottom: 1.5rem;
}

.resource-card h3     {
  font-size: 1.4rem;
    color: #1e3a8a;
	margin-bottom: 1rem;
}

.contact-reminder {
    padding: 4rem 2rem; 
      background: white; 
  text-align: center;
}

.reminder-content {
    max-width    :    600px;
  margin: 0 auto;
}

.reminder-content h2 {
  font-size: 2.2rem;
  color: #1e3a8a;
  margin-bottom: 1.5rem;
}

.contact-details {
	margin-top    : 2rem;
  display: grid;
  gap: 1rem;
}

.contact-item {
    display :flex;
  justify-content  :space-between;
        align-items: center;
    padding: 1rem;
   background: #f8fafc;
  border-radius: 8px;
}

.navigation-suggestions		{
	 padding: 4rem 2rem;
    background: #f1f5f9;
}

.suggestions-content {
   max-width: 800px;
    margin: 0 auto;
} 

.suggestions-content h2 {
  color: #1e3a8a;
    text-align: center;
  font-size: 2.2rem;
    margin-bottom: 3rem;
}

.nav-suggestions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.suggestion-link {
     background: white;
    padding: 2rem;
   border-radius: 12px;
  text-decoration: none;
   color     :inherit;
   transition: transform 0.3s ease;
  display: block;
}

.suggestion-link:hover {
	  transform: translateY(-5px);
     }

.suggestion-link h3 {
   font-size: 1.4rem;
   color: #1e3a8a;
  margin-bottom: 1rem;


}

.suggestion-link p
	{
	color: #64748b;
}@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        flex-direction: column;
        padding: 1rem 2rem;
    }

    .nav-menu.active {
        display: flex;
    }

    .hero-banner {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .showcase-content,
    .story-container,
    .methodology-content,
    .choose-us-content,
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .services-grid,
    .expertise-grid,
    .values-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .results-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-title {
        font-size: 2.3rem;
    }

    .thankyou-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-heading,
    .section-title {
        font-size: 2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .results-stats {
        grid-template-columns: 1fr;
    }
}.cookies-page .company-story,
.privacy-page .company-story {


   padding: 5rem 2rem;
   background   :   #f8fafc;


}

.cookies-page .story-text h2,
.privacy-page .story-text h2 {
       font-size: 2rem;
    color: #1e3a8a;
    margin-bottom: 1.5rem;


}

.cookies-page .story-text p,
.privacy-page .story-text p {
  font-size: 1.1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}@media (max-width: 768px) {
    .cookies-page .story-container,
    .privacy-page .story-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}