* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
}

.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 rgba(0,0,0,0.1);
}

.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: 1rem 2rem;
}

.brand-logo .logo-img {
    height: 45px;
    width: auto;
}

.navigation-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #3498db;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(45deg, #3498db, #2ecc71);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background: #34495e;
    margin: 3px 0;
    transition: all 0.3s ease;
}

.mobile-toggle.active .burger-line:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .burger-line:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hero-banner {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 100"><path d="M0,50 Q250,0 500,50 T1000,50 V100 H0 Z" fill="rgba(255,255,255,0.1)"/></svg>') repeat-x;
    background-size: 1000px 100px;
    animation: wave 20s linear infinite;
}

@keyframes wave {
    0% { background-position-x: 0; }
    100% { background-position-x: 1000px; }
}.hero-content-wrapper {
   max-width: 1200px;
               margin: 0 auto;
         padding: 0 2rem;
    display: grid;
   grid-template-columns: 1fr 1fr;
    gap     :4rem;
    align-items: center;
}


.main-headline {
   font-size: 3.2rem;
   font-weight: 700;
   margin-bottom: 1.5rem;
  line-height: 1.2;

	}

.hero-description {
  font-size: 1.2rem;
    margin-bottom: 2rem;
   opacity: 0.9;
}

.hero-actions {
    display :flex; 
	    gap:1.5rem; 
	   flex-wrap: wrap;
}

.primary-button, .secondary-button {
    padding: 14px 28px;
   text-decoration: none;
    border-radius :8px;
  font-weight: 600;
   transition: all 0.3s ease;
    display: inline-block;
}

.primary-button {
  background: linear-gradient(45deg, #e74c3c, #f39c12);
    color: white;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.3);
}

.secondary-button {
   background: transparent;
 color: white;
  border: 2px solid rgba(255,255,255,0.8);
}

.secondary-button:hover {
   background: white;
   color: #667eea;
}

.hero-image {
    width: 100%;

			height    :   auto;

      border-radius: 15px;

  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.introduction-block {
   padding :      80px 0;
	background     :white;
}

.content-container {
   max-width     : 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.intro-grid {
   display: grid;

	  grid-template-columns: 1fr 1fr;

	  gap: 4rem;

	    align-items :        center;
}  

.section-title

{
	font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
	font-weight: 700;
}

.intro-text p {
	 font-size: 1.1rem;
  margin-bottom: 1.5rem;
    color: #5a6c7d;
}

.intro-image {
   width: 100%;
    height: auto;
   border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.services-showcase {
  padding: 80px 0;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
   color: white;
}

.services-headline

{
   text-align: center;
   font-size: 2.8rem;
	margin-bottom: 3rem;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap  :  2.5rem;
}

.service-card {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  border-radius: 20px;
   padding: 2rem;
	 transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);


}

.service-card:hover  
  {

  transform: translateY(-10px);
  background: rgba(255,255,255,0.25);


}

.service-image {
   width: 100%;
    height: 200px;
    object-fit: cover;
	border-radius: 12px;
  margin-bottom: 1.5rem;

}

.service-title {
  font-size: 1.5rem;
    margin-bottom: 1rem;
   font-weight    :  600;
}

.service-description {
  opacity:     0.9;
     line-height: 1.6;
}

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
  text-align: center;
  position: relative;
}

.cta-container {
    max-width  :  800px;
         margin   :   0 auto;
	 padding: 0 2rem;
}

.cta-title {
  font-size: 2.8rem;
    color :white;
   margin-bottom   :        1.5rem;
 font-weight: 700;
}

.cta-text {
    font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
   margin-bottom: 2.5rem;
   line-height: 1.7;
}

.cta-button {
    display: inline-block;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
  color: white;
 padding: 18px 35px;
   text-decoration: none;
    border-radius    : 50px;
    font-weight: 700;
   font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 107, 0.4); 
	
}

.expertise-section    {


    padding: 80px 0;
  background: white;
}

.expertise-title {
  text-align: center;
    font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom: 3rem;
   font-weight: 700;
}

.expertise-grid
{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 2.5rem;
}

.expertise-item {
   text-align: center;
    padding:    2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color     :       white;
 border-radius: 15px;
    transition: all 0.3s ease;
}

.expertise-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(118, 75, 162, 0.3);
}

.expertise-item h3    {
   font-size   :   1.4rem;
    margin-bottom: 1rem;
  font-weight: 600;
}

.contact-section {

	  padding: 80px 0;
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);


}

.contact-container {
    max-width     :     1200px;
  margin: 0 auto;
  padding: 0 2rem;
    display: grid;
      grid-template-columns: 1fr 1fr;
  gap: 4rem;
    align-items    : start;
}

.contact-title {
 font-size: 2.5rem;
    color: #2c3e50;
	 margin-bottom: 1.5rem;
					font-weight: 700;
}

.contact-description {
   font-size: 1.1rem;
   color: #5a6c7d;
	margin-bottom: 2rem;
   line-height: 1.6;
	}

.contact-details


{
    margin-top: 2rem;
}

.contact-item 
 {
   margin-bottom    :    1rem;
    color: #34495e;
}

.contact-form {
   background     :        white;
    padding: 2.5rem;
    border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-group {


  margin-bottom     :   1.5rem;
}

.form-row {

	  display: grid;
  grid-template-columns: 1fr 1fr;
   gap: 1rem; 
	
}  

.half-width {
    margin-bottom   :      1.5rem;
}

.form-label {
	   display: block;
    margin-bottom:  0.5rem;
   color:      #2c3e50;
  font-weight: 600;}

.form-input, .form-select, .form-textarea {
   width  :     100%;
  padding: 12px 15px;
	 border: 2px solid #e1e8ed;
  border-radius: 8px;
	 font-size: 1rem;
          transition: all 0.3s ease;
    background: #fafbfc;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none; 
         border-color   :    #3498db; 
    background: white; 
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-input.error, .form-select.error, .form-textarea.error {
   border-color: #e74c3c;
}

.submit-button {
    width :     100%;
  background: linear-gradient(45deg, #667eea, #764ba2);
      color   :     white;
  padding: 15px;
    border: none;
  border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
   cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
  transform: translateY(-2px);

	  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.3);
}

.site-footer		{
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
		 color: white;
   padding: 60px 0 0;
}

.footer-container {
  max-width: 1200px;
    margin     :  0 auto;
  padding: 0 2rem;
   display   :        grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
}

.footer-logo		{
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
    margin-bottom: 1rem;


}

.footer-description {
	color: #bdc3c7;
  line-height   :       1.6;
}

.footer-links     {
       display: grid;
  grid-template-columns: repeat(3, 1fr);
       gap: 2rem;}

.footer-heading {
    margin-bottom: 1rem;
 font-size: 1.2rem;
  font-weight   :        600;
   color: #ecf0f1;
}

.footer-nav		{
  list-style: none;
}

.footer-nav li {
   margin-bottom: 0.5rem;
}

.footer-link {
   color: #bdc3c7;
  text-decoration: none;
    -webkit-transition: color 0.3s ease;
    transition    :       color 0.3s ease;
	-o-transition     :  color 0.3s ease;
}

.footer-link:hover {
	   color   :  #3498db;
}

.footer-contact {
	 color: #ecf0f1;
    font-weight: 600;
   margin-bottom: 1rem;
}

.footer-address {
  color: #bdc3c7;
         font-style: normal;
    line-height: 1.5;
}

.footer-bottom


{
    text-align: center;
          padding: 2rem 0;
       margin-top: 3rem;
   border-top: 1px solid #34495e;
}

.copyright {
          color: #95a5a6;
   font-size: 0.9rem;
}

.animate-in {
   animation: fadeInUp 0.8s ease forwards;
}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .navigation-links {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .navigation-links.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1rem 0;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .main-headline {
        font-size: 2.2rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .section-title {
        font-size: 2rem;
        text-align: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2.2rem;
    }

    .services-headline {
        font-size: 2.2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .content-container {
        padding: 0 1rem;
    }

    .hero-banner {
        padding: 100px 0 60px;
    }

    .main-headline {
        font-size: 1.8rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .primary-button, .secondary-button {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }
}

.about-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #a8e6cf 0%, #dcedc1 100%);
    color: #2c3e50;
    text-align: center;
    position: relative;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 20"><defs><linearGradient id="grad" x1="0%" y1="0%" x2="100%" y2="0%"><stop offset="0%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /><stop offset="50%" style="stop-color:rgba(255,255,255,0.3);stop-opacity:1" /><stop offset="100%" style="stop-color:rgba(255,255,255,0.1);stop-opacity:1" /></linearGradient></defs><polygon fill="url(%23grad)" points="0,20 100,20 80,0 20,0"/></svg>') repeat-x;
    animation: floatPattern 15s ease-in-out infinite;
}

@keyframes floatPattern {
    0%, 100% { transform: translateX(0px); }
    50% { transform: translateX(-20px); }
}.about-hero-content {
  max-width     :800px;
  margin    :      0 auto;
    padding: 0 2rem;
   position: relative;
	z-index: 2;
}

.about-main-title {
	 margin-bottom  :     1.5rem;
      font-weight: 700;
  color: #34495e;
               font-size: 3rem;
}

.about-hero-text {
   font-size: 1.2rem;
   opacity: 0.8;
  line-height: 1.7;
}

.story-section {
   padding: 80px 0;
    background   :white;
} 

.story-layout {


   display: grid;
  grid-template-columns: 2fr 1fr;
    gap: 4rem;
	align-items: center;
	
}

.story-title {
    font-size: 2.5rem;
	color: #2c3e50;
  margin-bottom: 2rem;
    font-weight:   700;
} 

.story-text {
  font-size: 1.1rem;
  line-height: 1.7;
   margin-bottom   :    1.8rem;
  color: #5a6c7d;


}

.story-image    {
   	width: 100%;
	 height: auto;
  border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.philosophy-section {


  padding: 80px 0;
  background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    color: white;
     }

.philosophy-headline {
    text-align: center;
   color: #fff;
  font-weight    :   700;
         font-size: 2.8rem;
   margin-bottom: 3rem;
}

.philosophy-grid {
  display: grid; 
	  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
	    gap: 2.5rem; 

}

.philosophy-card    {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(15px);
    padding: 2.5rem;
	 border-radius : 18px;
    transition: all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.3);
}

.philosophy-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.3);
}

.philosophy-title {
       font-size: 1.4rem;
         margin-bottom: 1.2rem;
   font-weight: 600;


}

.philosophy-description	{
   line-height: 1.6;
   opacity  :     0.95;
}

.expertise-showcase
{

    padding: 80px 0;

    background: white;



}

.expertise-layout	{
    display: grid;
  grid-template-columns :  1fr 1.5fr;
  gap: 4rem;
   align-items: center; 

}

.expertise-image

{

	      width:        100%;
    height: auto;
    border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);}

.expertise-section-title {
   font-size: 2.5rem;
          color: #2c3e50;
    margin-bottom: 2.5rem;
    font-weight: 700;
}

.expertise-highlights    {
     display: flex;
    flex-direction: column;
	gap: 2rem;
}

.highlight-item {

		 padding: 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
     border-radius: 12px;
        transition: all 0.3s ease;

}

.highlight-item:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 25px rgba(118, 75, 162, 0.25);
	
}  

.highlight-title {
	 font-size: 1.3rem;
  margin-bottom:     0.8rem;
    font-weight: 600;
}

.highlight-text {
    opacity:   0.9;
   line-height: 1.6;
}

.approach-methodology {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
}

.methodology-title {
   text-align: center;
	font-size: 2.8rem;
   margin-bottom: 3rem;
  font-weight: 700;
}

.methodology-steps

{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap:  2.5rem;
}

.method-step {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
   padding: 2.5rem;
  border-radius: 20px;
   position: relative;
  transition:  all 0.3s ease;
  border: 1px solid rgba(255,255,255,0.2);
}

.method-step:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-5px);
}

.step-number {
  position :    absolute;
   top: -15px;
     left: 2.5rem;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
   color: white;
  width     :50px;
  height  :     50px;
	border-radius: 50%;
   display: flex;
    align-items: center;
   justify-content: center;
  font-weight   :       700;
        font-size: 1.2rem;
}

.step-title {
       font-size: 1.5rem;
    margin: 1rem 0;
	font-weight: 600;
}

.step-description {
  line-height:     1.6;
   opacity :    0.9;
}

.impact-testimonials {
    padding: 80px 0;
  background: white;
	
}

.testimonials-title

{
    text-align: center;
    font-size: 2.5rem;
  color :        #2c3e50;
     margin-bottom: 3rem;
	font-weight     :700;
}

.testimonials-grid	{

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2.5rem;
	} 

.testimonial-card {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
    padding: 2.5rem;
    border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.testimonial-text {
      font-size: 1.1rem;
    line-height: 1.7;
   margin-bottom: 1.5rem;
    color: #34495e;
    font-style: italic;
	}

.testimonial-author {
   font-weight: 600;
  color: #2c3e50;
	 text-align: right;
}

.commitment-section {
       padding: 80px 0;
  background: linear-gradient(135deg, #a8e6cf 0%, #dcedc1 100%);
}

.commitment-wrapper {
    max-width: 1200px;
         margin: 0 auto;
   padding  :  0 2rem;
}

.commitment-title {
               text-align: center;
   font-size: 2.5rem;
   color:      #2c3e50;
    margin-bottom: 3rem;
    font-weight: 700;
}

.commitment-points {
   display: flex;
   flex-direction: column;
	gap: 3rem;
}

.commitment-item {
      gap: 3rem;
   align-items     :     center;
    display: grid;
          grid-template-columns: 300px 1fr;
     }

.commitment-item:nth-child(even)     {
	grid-template-columns: 1fr 300px;
}

.commitment-item:nth-child(even) .commitment-image {
    order: 2;

}

.commitment-item:nth-child(even) .commitment-text {
  order: 1;
}

.commitment-image {
   width : 100%;
    height: 200px;
	object-fit: cover;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1); 
	
}

.commitment-text h3 {
    margin-bottom: 1rem;
  color: #2c3e50;
	 font-size: 1.5rem;
   font-weight: 600;
}

.commitment-text p {
    color :      #5a6c7d;
  line-height: 1.6;
   font-size: 1.1rem;
}

.thankyou-hero {
    padding: 120px 0 80px;
  background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
	 text-align: center;
  min-height: 60vh;
	display    :       flex;
		align-items: center;
}

.thankyou-content {
	 max-width: 800px;
				 margin: 0 auto;
  padding: 0 2rem;


}

.success-indicator {
  margin-bottom: 2rem;

}  

.checkmark-circle {
  width: 80px;
	height: 80px;
  background: linear-gradient(45deg, #2ecc71, #27ae60);
   border-radius: 50%;
  display: flex;
   align-items: center;
    justify-content:     center;
   margin: 0 auto;
  position: relative;
    animation  :       scaleIn 0.6s ease-out;
}@keyframes scaleIn {
    0% { transform: scale(0); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}.checkmark {
   width: 25px;
   height: 15px;
    border: solid white;
	border-width: 0 0 4px 4px;
  transform: rotate(-45deg);
    margin-top: -5px;
   animation: checkmarkDraw 0.3s ease-out 0.3s both;
}@keyframes checkmarkDraw {
    0% { width: 0; height: 0; }
    100% { width: 25px; height: 15px; }
}.thankyou-title {
  font-size: 3.2rem;
    color: #2c3e50;
    margin-bottom  :  1.5rem;
   font-weight: 700;
}

.thankyou-description {
    font-size: 1.2rem;
    color: #34495e;
    line-height: 1.7;
  opacity: 0.9;
}  

.next-steps {
	 margin-top: 4rem;
   background: white;
   padding: 3rem 2rem;
  border-radius    :  20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	
}

.steps-title {
	 font-size: 2.2rem;
 color: #2c3e50;
      margin-bottom: 2.5rem;
    font-weight: 700;
}

.steps-list {
  display: flex;
    flex-direction :column;
  gap: 2rem;
}

.step-item   {

	   display: grid;
   grid-template-columns: auto 1fr;
    gap: 1.5rem;
  text-align: left;
  align-items: start;
}

.step-icon
{
    width: 50px;
    height: 50px;
  background: linear-gradient(45deg, #667eea, #764ba2);
   color     :   white;
   border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  font-weight :700;
    font-size: 1.2rem;
       flex-shrink     :0;
}

.step-heading {
   font-size: 1.3rem;
  color: #2c3e50;
    margin-bottom: 0.5rem;
  font-weight :  600;
}

.step-text {
      color: #5a6c7d;
                    line-height: 1.6;
}

.preparation-section {
  padding: 80px 0;
  background :      white;
}

.preparation-title {
  text-align: center;
   font-size: 2.5rem;
   color: #2c3e50;
          margin-bottom: 3rem;
   font-weight: 700;
}

.preparation-grid

{
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
 gap: 2.5rem;
}

.preparation-card {
  background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
	border-radius: 20px;
  padding: 2rem;
    transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.preparation-card:hover    {

  transform: translateY(-10px); 
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);}

.prep-image {
   width: 100%;
      height: 180px;
      object-fit: cover;
       border-radius: 12px;
      margin-bottom: 1.5rem;
}

.prep-title {
   			font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
   font-weight: 600;
}


.prep-description {
    color: #5a6c7d;
  line-height: 1.6;
}

.confidence-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   text-align: center;
}

.confidence-wrapper

{
    padding: 0 2rem;
  max-width    :  1000px;
        margin :0 auto;
}

.confidence-title {
	font-size: 2.8rem;
    margin-bottom :3rem;
  font-weight: 700;
}

.confidence-stats {
  grid-template-columns: repeat(3, 1fr);
   gap: 2rem;
   margin-bottom: 2.5rem;
    display: grid;
     }

.stat-item {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
	 padding: 2rem;
    border-radius: 15px;
  border: 1px solid rgba(255,255,255,0.2);
}

.stat-number     {
	          font-size: 3rem;
    font-weight: 700;
   margin-bottom: 0.5rem;
  background: linear-gradient(45deg, #ff6b6b, #feca57);
               background-clip: text;
}

.stat-label     {
  font-size: 0.9rem;
    opacity:  0.9;
}

.confidence-message {
         font-size: 1.2rem;
  line-height: 1.7;
   opacity  :     0.9;
}

.resources-section {
    padding: 80px 0;
    background: white;
}

.resources-title {
    margin-bottom: 3rem;
   color    :    #2c3e50;
    text-align: center;
   font-weight: 700;
    font-size: 2.5rem;
}

.resources-content {


   display: grid;
     grid-template-columns: 1.5fr 1fr;
   gap: 4rem;
   align-items: center;
     }

.resource-intro {
  font-size: 1.1rem;
   color: #5a6c7d;
  line-height   :1.7;
    margin-bottom: 2rem;
}

.tips-title {
  font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom   :    1.5rem;
    font-weight: 600;

}

.tips-list {
  list-style: none;
    padding  :     0;
}

.tip-item  {
    padding:    0.8rem 0;
  border-left: 4px solid #3498db;
          padding-left    : 1.5rem;
	margin-bottom: 1rem;
		color: #34495e;
    transition: all 0.3s ease;
}

.tip-item:hover {
   border-left-color:     #e74c3c;
  transform: translateX(5px);
}

.resource-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}



.contact-reminder {
      padding: 80px 0;
  background: linear-gradient(135deg, #a8e6cf 0%, #dcedc1 100%);
  text-align: center; 
	
	} 

.reminder-container {
  max-width: 800px;
  margin: 0 auto;
   padding: 0 2rem;
}

.reminder-title {
	font-size:     2.5rem;
               color: #2c3e50;
  margin-bottom: 1.5rem;
    font-weight :      700;
}

.reminder-text {
   margin-bottom  :2.5rem;
   color: #5a6c7d;
   font-size: 1.1rem;
   line-height: 1.7;
}  

.contact-info {
  background: white;
               padding: 2rem;
   border-radius: 15px;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.contact-item {
    margin-bottom: 1.5rem;
    color: #34495e;
    font-size: 1.1rem;
}

.return-action {
	margin-top: 2rem;
}

.return-button {
    display: inline-block;
  background: linear-gradient(45deg, #667eea, #764ba2);
   color: white;
    padding: 15px 30px;
  text-decoration   :      none;
   border-radius: 8px;
  font-weight: 600;
   transition: all 0.3s ease;
  font-size: 1.1rem;
}

.return-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(118, 75, 162, 0.3);
}@media (max-width: 768px) {
    .about-main-title {
        font-size: 2.2rem;
    }

    .story-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
    }

    .expertise-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .methodology-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .commitment-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .commitment-item:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .commitment-item:nth-child(even) .commitment-image {
        order: 1;
    }

    .commitment-item:nth-child(even) .commitment-text {
        order: 2;
    }

    .thankyou-title {
        font-size: 2.5rem;
    }

    .confidence-stats {
        grid-template-columns: 1fr;
    }

    .resources-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .about-main-title {
        font-size: 1.8rem;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .next-steps {
        padding: 2rem 1rem;
    }

    .step-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .step-icon {
        margin: 0 auto 1rem;
    }
}.policySection {
  padding: 80px 2rem;
  background: #f8f9fa;

}

.policyContainer {
    max-width:   800px;
  margin: 0 auto;
   text-align    :        left;
}


.policyContainer h2     {
  font-size: 2.5rem;
   color: #2c3e50;
    margin-bottom: 1.5rem;
  font-weight: 700;
}

.policyContainer p {
  margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #7f8c8d;
  line-height: 1.7;
}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}