* {
   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;
}

header {
	position     : fixed;
    top: 0;
    width: 100%;
   z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
        transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.98);
}



.navigation-wrapper {
    position: relative;
}

.nav-container {
   max-width: 1200px;
    margin: 0 auto;
  display: flex;
  justify-content: space-between;
    align-items     :  center;
   padding: 1rem 2rem;
}

.brand-section .logo-image {
    height: 45px;
  width: auto;
}

.menu-items {
    display: flex;
  gap     :       2rem;

}

.nav-link {
    text-decoration   :  none;
  color: #333;
   font-weight: 500;
  transition: color 0.3s ease;
   position    :relative;
}

.nav-link:hover {
    color: #2c5282;
}

.nav-link::after {
  content: '';
	position: absolute;
  bottom: -5px;
  left: 0;
   width: 0;
   height     :2px;
   background: #2c5282;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
  display: none;
    flex-direction: column;
   background: none;
    border: none;
    cursor  :       pointer;
	padding: 5px;}

.hamburger-line {

   width: 25px;
      height: 3px;
	background-color: #333;
  margin: 3px 0;
   transition: 0.3s;


}

.mobile-toggle.active .hamburger-line:nth-child(1) 
 {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active .hamburger-line:nth-child(2) {
   opacity     :   0;
}

.mobile-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-menu-overlay {
  display    :      none;
	    position: absolute;
	   top: 100%;
	  left: 0;
	    width:100%;
	  background: white;
	  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	  padding: 1rem 0;
}

.mobile-nav-item {

	  display: block;
  padding: 0.8rem 2rem;
   text-decoration  :   none;
    color: #333;
  border-bottom: 1px solid #eee;
   transition : background-color 0.3s ease;


}

.mobile-nav-item:hover {
    background-color: #f8f9fa;


}

main {
    margin-top   :77px;
}

.hero-banner {


   padding: 4rem 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   min-height: 60vh;
    display: flex;
  align-items: center;
     }

.hero-content-wrapper {
   max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
  display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 3rem;
  align-items: center;
}

.text-content h1 {
  font-size: 3rem;
  margin-bottom    :     1.5rem;
   line-height: 1.2;
}

.hero-description {


   font-size: 1.2rem;
    margin-bottom :       2rem;
   opacity: 0.9;

}

.cta-buttons 
 {
   	display: flex;
                    gap: 1rem;
    flex-wrap: wrap;

}

.primary-btn, .secondary-btn {
         padding: 0.8rem 2rem;
   text-decoration     :    none;
    border-radius: 5px;
      font-weight: 600;
        transition: all 0.3s ease;
    display  :     inline-block;
}

.primary-btn {
  background  :#ff6b6b;
    color: white;
}


.primary-btn:hover {
    background: #ff5252;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.4);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
	
}

.secondary-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.services-overview {
    padding: 5rem 0;
   background: white;
}

.container {
  padding: 0 2rem;
    max-width: 1200px;
	margin: 0 auto;
}

.services-overview h2 {
 text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
    color: #2c5282;
}

.services-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.service-card {
  border-radius   : 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 2rem;
  border-left: 4px solid #667eea;
  background: #f8f9fa;


}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.15);}

.service-card h3
{
    font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c5282;
}

.service-card p {
     color: #666;
         line-height: 1.7;
}

.about-preview {
	padding: 5rem 0;
	background: #f8f9fa;
}

.about-container {
    max-width: 1200px;
       margin: 0 auto;
  padding: 0 2rem;
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 3rem;
   align-items: center;
}

.about-text h2 {
    font-size: 2.2rem;
	 margin-bottom: 1.5rem;
   color: #2c5282;
}

.about-text p {
    margin-bottom :       1.5rem;
   color: #555;
      line-height: 1.7;
}

.learn-more-btn {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  background: #2c5282;
	color: white;
                    text-decoration: none;
    border-radius    :5px;
   transition: all 0.3s ease;
    font-weight: 600;
}

.learn-more-btn:hover {
  background: #2a4975;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(44, 82, 130, 0.3);
}

.about-image img {
    width: 100%;
   height: auto;
    border-radius: 10px; 
	
}

.cta-section
	{
  padding    :  4rem 0;
  background: linear-gradient(45deg, #ff6b6b, #ee5a24);
               color: white;
  text-align: center;
}

.cta-wrapper {
   max-width: 800px;
  margin: 0 auto;
	padding: 0 2rem;
}

.cta-wrapper h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.cta-wrapper p {
    font-size    :       1.2rem;
  margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-primary-btn {
    display: inline-block;
  padding: 1rem 2.5rem;
  background: white;
    color: #ff6b6b;
   text-decoration  :       none;
	border-radius: 50px;
  font-weight: 700;
   font-size: 1.1rem;
  transition: all 0.3s ease;
}

.cta-primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-section

{
  padding     :      5rem 0;
         background :       white;
}

.contact-container {
   max-width   :       800px;
    margin: 0 auto;
   padding:    0 2rem;
    text-align: center;
}

.contact-section h2 {
      font-size :       2.5rem;
        margin-bottom: 1rem;
  color: #2c5282;
}

.contact-intro {
    font-size: 1.1rem;
        color: #666;
   margin-bottom    :     3rem;
}

.contact-form
{
  text-align: left;
}

.form-row {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 1.5rem;
          margin-bottom: 1.5rem; 

}

.input-group {

	   display: flex; 
	   flex-direction: column;
     }

.input-group.full-width {
         grid-column: 1 / -1;
	   margin-bottom: 1.5rem;
}

.input-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
   color   :   #333;
}

.input-group input,
.input-group select,
.input-group textarea {
   -moz-border-radius: 5px;
	-webkit-transition: border-color 0.3s ease;
   padding :    0.8rem;
      border: 2px solid #e1e5e9;
    -moz-transition: border-color 0.3s ease;
    border-radius: 5px;
      font-size: 1rem;
    transition: border-color 0.3s ease;
}

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
  outline: none;
   border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.input-group textarea {
        resize: vertical;
	   min-height:        120px; 
	
}

.submit-btn {
      width: 100%;
   padding: 1rem;
   background: #667eea;
  color: white;
   border: none;
  border-radius: 5px;
  font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
   transition: all 0.3s ease;
}

.submit-btn:hover{
   background: #5a67d8;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.site-footer		{
     background: #2d3748;
  color: #a0aec0;
    padding: 3rem 0 1rem;
}

.footer-content {
      grid-template-columns: 2fr 1fr 1fr;
  display: grid;
   padding: 0 2rem;
   max-width: 1200px;
   margin   :  0 auto;
	 gap: 2rem;
     }

.footer-logo {
     height: 40px;
    width: auto;
    margin-bottom :1rem;
  filter: brightness(0) invert(1);
}

.company-description {
  line-height: 1.6;
    margin-bottom: 1.5rem;
}

.footer-section h4		{
	color: white;
        margin-bottom: 1rem;
   font-size: 1.1rem;
}

.quick-links ul {
   list-style: none;
}

.quick-links ul li {
  margin-bottom: 0.5rem;
}

.quick-links ul li a {
   color: #a0aec0;
    text-decoration: none;
	transition: color 0.3s ease;
}

.quick-links ul li a:hover {
   color: white;
}

.contact-info p {
    margin-bottom: 0.8rem;
  line-height  : 1.5; 
	
}

.address
{
   margin-bottom: 1rem;
}

.phone {
    font-weight: 600; 
	
}

.footer-bottom {
  border-top: 1px solid #4a5568;
     text-align: center;
     padding: 1.5rem 2rem 0;
       margin-top: 2rem;
}@media (max-width: 768px) {
    .menu-items {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .text-content h1 {
        font-size: 2.2rem;
    }
    
    .about-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .cta-buttons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .text-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .services-overview h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}.nav-link.active {
    color: #2c5282;
         font-weight: 600;
}

.nav-link.active::after 
 {
	  width: 100%;


}

.about-hero {
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);

	  color: white;

	        padding: 6rem 0 4rem;

	    text-align     :     center;
}

.about-hero-content {
  padding: 0 2rem;
   margin: 0 auto;
    max-width: 800px;
}

.about-hero h1 {
    font-size: 3.5rem;
   margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-subtitle {
   font-size: 1.3rem;
  opacity: 0.9;
   line-height: 1.6;
}

.our-story {
   padding: 5rem 0;
   background: white;
}

.story-container
	{
    max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
   display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
  align-items: center;
}

.story-content h2 {
	font-size: 2.5rem;
   margin-bottom  :    1.5rem;
   color: #2c5282;
}

.story-intro {
   font-size: 1.2rem;
  font-weight: 600;
    color: #4a5568;
                    margin-bottom: 2rem;
  line-height: 1.7;
}

.story-details p    {
  margin-bottom: 1.8rem;
    line-height: 1.8;
  color: #555;
}

.story-image img {
    width: 100%;
    height: auto;
   border-radius:        12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15); 

}

.our-approach {
  background: #f7fafc;
    padding: 5rem 0;

}

.approach-wrapper  {

  max-width: 1200px;
  margin: 0 auto;
   padding: 0 2rem;
   text-align: center; 
	


}


.our-approach h2     {
    font-size: 2.5rem;
   margin-bottom: 1.5rem;
  color: #2c5282;
}

.approach-description {
 font-size: 1.1rem;
    color     :        #666;
   margin-bottom: 3rem;
  max-width: 800px;
   margin-left: auto;
    margin-right: auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
  margin-top: 3rem;
}

.approach-item {
    background: white;
    padding: 2.5rem 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.approach-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(44, 82, 130, 0.15);
}

.approach-item h3 {

	    font-size: 1.4rem;
	    margin-bottom: 1rem;
	    color :        #2c5282;

}

.approach-item p {
	   line-height: 1.7;
  color: #666;
}

.team-values {
	   padding: 5rem 0;
  background:white;

}

.values-container {
  max-width: 1200px;
  margin: 0 auto;
  padding    :      0 2rem;
   text-align: center;
}

.team-values h2

{
  font-size    :      2.5rem;
    margin-bottom: 3rem;
   color: #2c5282;
}

.values-grid {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;} 

.value-card {
     background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  padding  :     2rem;
    border-radius: 10px;
  text-align: left;
   transition: transform 0.3s ease;
	}  

.value-card:hover {
  transform: scale(1.03);
}

.value-card h4   {
  font-size: 1.3rem;
   margin-bottom: 1rem;
}

.value-card p {
   line-height: 1.6;
               opacity: 0.95;
}

.why-choose-us {
   padding: 5rem 0;
    background: #f7fafc;
}

.choose-us-wrapper 
 {
			margin: 0 auto;
	align-items: center;
    grid-template-columns: 1.5fr 1fr;
   padding: 0 2rem;
   display: grid;
	gap: 4rem;
	 max-width: 1200px;
}

.choose-content h2 {
      font-size: 2.5rem;
  margin-bottom: 2rem;
   color:       #2c5282;


}

.reasons-list {
   display     :      flex;
  flex-direction : column;
  gap: 2rem;
}

.reason-item h4 {
  font-size: 1.3rem;
   margin-bottom  :       0.8rem;
  color: #2c5282;
}

.reason-item p {
    line-height: 1.7;
    color   :      #666;
}

.choose-image img {
    width: 100%;

	   height: auto;

	    border-radius: 12px;

	  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.cta-about {
   padding: 4rem 0;
  background: linear-gradient(45deg, #2c5282, #4a5568);
    color: white;
    text-align   :      center;
}

.cta-about-content {
  max-width: 800px;

	   margin: 0 auto;

	   padding    :  0 2rem;
}

.cta-about h2 {
   font-size     :    2.5rem;

	    margin-bottom: 1.5rem;
}

.cta-about p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
   opacity: 0.9;
}

.contact-cta-btn {
	display: inline-block;
    padding: 1rem 2.5rem;
	background: #ff6b6b;
   color: white;
   text-decoration: none;
    border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
    transition: all 0.3s ease;
}

.contact-cta-btn:hover {

	  background: #ff5252;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);


}

.thank-you-hero {

  background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
	    color: white;
	  padding: 6rem 0 4rem;
	  text-align :     center;
	}


.thank-you-content {
    max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

.success-message h1 {
     font-size: 3.2rem;
      margin-bottom: 1.5rem;
             font-weight: 700;
}

.success-subtitle {
    font-size: 1.3rem;
  opacity: 0.9;
   line-height: 1.6;
  margin-bottom   : 3rem;
}

.next-steps {
	text-align: left;
  background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.next-steps h2 {
   font-size: 2rem;
    margin-bottom: 2rem;
      text-align: center;
}

.steps-list {
   display: flex;
  flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
   gap: 1.5rem;
    align-items  :flex-start;
}

.step-number {
  background: white;
        color: #38a169;
    width: 40px;
    height: 40px;
   border-radius: 50%;
    display: flex;
    align-items: center;
	 justify-content: center;
	 font-weight:     bold;
  font-size: 1.2rem;
    flex-shrink: 0;
}

.step-content h3 {
	 font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step-content p {
    line-height: 1.6;
  opacity: 0.9;
}

.while-you-wait {
   padding: 5rem 0;
                    background: white;
}


.wait-container {
  padding: 0 2rem;
   max-width: 1200px;
   text-align: center;
	margin: 0 auto;
}

.while-you-wait h2 {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
   color :        #2c5282;
}

.wait-description {
     font-size   : 1.1rem;
  color: #666;
                    margin-bottom: 3rem;
   max-width    :        800px;
   margin-left: auto;
   margin-right: auto;
}

.preparation-tips  
  {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.tip-card {


		background: #f7fafc;
    padding    :  2rem;
   border-radius: 10px;
  text-align  :     left;
   border-left: 4px solid #48bb78;
	transition: box-shadow 0.3s ease;


}

.tip-card:hover {
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);


}

.tip-card h4 {
     font-size: 1.3rem;
    margin-bottom     :        1rem;
  color:       #2c5282;
}

.tip-card p {
    line-height: 1.7;
   color: #666;
}

.additional-resources {
   background: #f7fafc;
	padding: 5rem 0;
}

.resources-wrapper {
    max-width: 1200px;
   margin: 0 auto;
  padding: 0 2rem;
    text-align: center;
}

.additional-resources h2

{
  font-size    : 2.5rem;
  margin-bottom: 3rem;
	color: #2c5282;
}

.resources-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.resource-item {
    background   :  white;
       padding  :      2rem;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
   text-align: left;
}

.resource-item h4 {
    font-size: 1.3rem;
  margin-bottom: 1rem;
    color: #2c5282;
}

.resource-item p {
  line-height  :    1.7;
  color: #666;
   margin-bottom: 1.5rem;
}

.resource-link {

    display: inline-block;
  padding: 0.6rem 1.5rem;
   background: #667eea;
	 color: white;
  text-decoration: none;
  border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
	}


.resource-link:hover {
   background: #5a67d8;
}

.emergency-contact   {
 background: white;
  text-align: center;
    padding :   3rem 0;
}

.emergency-wrapper
	{
  max-width  :    600px;
    margin: 0 auto;
   padding: 0 2rem;
}

.emergency-contact h3 {
  font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.emergency-contact p {
	margin-bottom: 1rem;
  color: #666;
  line-height: 1.6;
}

.emergency-phone		{
  font-size: 1.4rem;
   font-weight: bold;
  color: #e53e3e;
    margin: 1.5rem 0;
}

.emergency-note {
  font-size: 0.9rem;
  color: #888;
   font-style :     italic;
}@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .story-container,
    .choose-us-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .success-message h1 {
        font-size: 2.2rem;
    }
    
    .next-steps {
        padding: 1.5rem;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .preparation-tips,
    .resources-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 2rem;
    }
    
    .our-approach h2,
    .team-values h2,
    .choose-content h2,
    .while-you-wait h2,
    .additional-resources h2 {
        font-size: 2rem;
    }
    
    .approach-item,
    .tip-card,
    .resource-item {
        padding: 1.5rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .success-message h1 {
        font-size: 1.8rem;
    }
    
    .next-steps h2 {
        font-size: 1.6rem;
    }
}.container h1 {
   font-size: 2.5rem;
   color :     #2c5282;
	margin-bottom: 1.5rem;
   text-align     :       center;
}

.container h2 {
   font-size: 1.8rem;
    color: #2c5282;
   margin: 2rem 0 1rem;
}

.container p {
    color: #555;
    line-height: 1.7;
  margin-bottom: 1.5rem;
}

.container ul {

	  list-style: disc;
   margin-left: 2rem;
  margin-bottom: 1.5rem;


}

.container ul li {
  color:        #555;
  line-height: 1.7;
  margin-bottom: 0.5rem;
} 