* {
        margin: 0; 
	   padding: 0; 
	    box-sizing :border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
   line-height: 1.6;
    color: #2c3e50;
   background: #ffffff;
}

.primary-nav {
  background: #ffffff;
  box-shadow: 0 2px 15px rgba(0,0,0,0.08);
        position: sticky;
	top: 0;
    z-index: 1000;
   padding: 1.2rem 0;
} 

.wrapper-nav {
   max-width: 1200px;
	margin: 0 auto;
	padding: 0 2rem;
   display: flex;
	justify-content: space-between;
	align-items: center;

}

.brand-section .brand-img {
    height: 45px;
	width :    auto;

}

.menu-links {
   display: flex;
    list-style :        none;
   gap: 2.5rem;
  align-items: center;
}

.menu-links li a {
    color: #2c3e50;
   font-weight: 500;
  text-decoration: none;
   position: relative;
   transition: color 0.3s ease;
  font-size  :  1.05rem;
}

.menu-links li a:hover {
  color: #3498db;
} 

.menu-links li a::after
	{
  content: '';
      bottom    :       -5px;
          height: 2px;
    width: 0;
    transition: width 0.3s ease;
   left: 0;
  position:     absolute;
    background: #3498db;
}

.menu-links li a:hover::after {
    width: 100%;

}

.burger-menu {
    gap: 5px;
	   cursor: pointer;
	   display :    none;
	   flex-direction: column;
}

.burger-menu span {
  -moz-border-radius: 2px;
	 width: 28px;
    -o-transition: all 0.3s ease;
   -webkit-border-radius: 2px;
 height: 3px;
               -webkit-transition: all 0.3s ease;
	background: #2c3e50;
    transition: all 0.3s ease;
   border-radius: 2px;
}

.burger-menu.active span:nth-child(1)   {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
   opacity: 0;
}  

.burger-menu.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}@media(max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .menu-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        transform: translateY(-120%);
        opacity: 0;
        transition: all 0.3s ease;
        gap: 1.5rem;
    }
    
    .menu-links.active {
        transform: translateY(0);
        opacity: 1;
    }
}.hero-section	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
 padding: 5rem 2rem;
  color: #ffffff;
}

.container-hero {
    max-width: 1200px;
    margin: 0 auto;
   display: grid;
       grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1    {
   font-size: 2.8rem;
   margin-bottom    :   1.5rem;
  line-height: 1.2;
   font-weight: 700;
}

.lead-text 
 {
   margin-bottom: 2.5rem;
    font-size: 1.2rem;
    line-height: 1.7;
   opacity: 0.95;
}

.cta-buttons {
    display: flex;
   gap: 1.5rem;
   flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
   padding: 1rem 2.5rem;
	   border-radius: 8px;
	  text-decoration: none;
	   font-weight: 600;
	  font-size:  1.05rem;
	       transition: all 0.3s ease;
	   display : inline-block;
}

.btn-primary {
  background: #ffffff;
               color    :        #667eea;
}



.btn-primary:hover  
  {


  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent; 
	    color: #ffffff; 
	    border: 2px solid #ffffff;
}  

.btn-secondary:hover {
                    background    : #ffffff;
   color  :#667eea;
}

.hero-visual img {
    width    :   100%;

  height: auto;

    border-radius   :  12px;

  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}@media(max-width: 968px) {
    .container-hero {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
}.container-standard {
         max-width: 1200px;
    margin: 0 auto;
    padding :0 2rem;
}

.intro-section {
   padding: 5rem 0; 
	 background  :    #f8f9fa;
}

.intro-grid {
	display: grid;
  grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
   align-items: center;
}

.intro-text h2 {
	   font-size: 2.2rem;
   margin-bottom: 1.5rem;
    color: #2c3e50;
     }

.intro-text p {
   margin-bottom: 1.5rem;

    font-size : 1.1rem;

  color: #555;
}



.benefits-list {

	    list-style: none;
       margin-top: 2rem;}

.benefits-list li
	{
    padding: 0.8rem 0 0.8rem 2rem;
   position: relative;
   font-size: 1.05rem;
    color: #444;
}

.benefits-list li::before {
  content: '✓';
	 position: absolute;
  left: 0;
   color: #667eea;
   font-weight: bold;
    font-size: 1.3rem;
}

.intro-image img {
                    width: 100%;
	border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}@media(max-width: 968px) {
    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}.services-section {
               padding: 5rem 0;
  background: #ffffff;
}

.section-heading {
   font-size: 2.5rem;
  text-align: center;
     margin-bottom: 3.5rem;
    color: #2c3e50;
}

.services-grid {
  display: grid;
	  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	    gap: 2rem;
}

.service-card   {
    background: #f8f9fa;
  padding   :   2.5rem;
    border-radius: 10px;
        transition: all 0.3s ease;
    border: 2px solid transparent; 

}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
	border-color: #667eea;
}

.service-content h3 {
	 font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.service-content p {
  color: #666;
 margin-bottom: 1.5rem;
   line-height    :   1.7;
}

.service-details {
	 display   :    flex;
   flex-direction: column;
  gap: 0.5rem;
    margin-top: 1.5rem;
}

.detail-item {
    font-size: 0.95rem;
               color :  #667eea;
  font-weight: 500;
}

.approach-section {
   padding: 5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.approach-section h2 {
  text-align: center;
  margin-bottom: 3rem;
   color: #2c3e50;
  font-size: 2.5rem;
}

.approach-content {
    display: grid;
          grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
    align-items: start;
}

.approach-image img {
   width: 100%;
   border-radius: 10px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
}

.approach-steps {
    display: flex;
   flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
  align-items: start;
}

.step-number {
    background: #667eea;
   color: #ffffff;
  width: 60px;
    height: 60px;
    border-radius: 50%;
   display: flex;
  align-items: center;
   justify-content: center;
	font-size: 1.3rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-info h4 {
    font-size: 1.4rem;
   margin-bottom  :        0.8rem;
  color: #2c3e50;
}

.step-info p {
  color: #555;
   line-height: 1.7;
}@media(max-width: 968px) {
    .approach-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}.cta-banner {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 5rem 2rem;
  text-align: center;
   color: #ffffff;
}

.cta-content h2 {
   font-size : 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
    max-width: 800px;
  opacity   :    0.95;
   font-size: 1.2rem;
  margin-bottom: 2.5rem;
  margin-left: auto;
   margin-right: auto;

}

.btn-cta {
    background: #ffffff;
	color: #667eea;
  padding    : 1.2rem 3rem;
   border-radius   : 8px;
  text-decoration: none;
    font-weight: 700;
    font-size   :        1.15rem;
  display: inline-block;
	 transition: all 0.3s ease;


}

.btn-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.portfolio-section	{
                    padding: 5rem 0;
	    background:        #ffffff;
}

.portfolio-section h2 {

	   color: #2c3e50;
   font-size: 2.5rem;
   text-align    :  center;
  margin-bottom: 3.5rem;
     }

.portfolio-grid {


      display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;


}

.portfolio-item {
   border-radius: 10px;
    overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
	transition: transform 0.3s ease;
}

.portfolio-item:hover {
  transform: translateY(-8px);
}

.portfolio-item img {
    width: 100%;
	   height: auto;
	  display     :    block;
}

.portfolio-info		{
  padding: 2rem; 
	  background     :       #f8f9fa;
}

.portfolio-info h4 {
   font-size  :     1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.portfolio-info p {

   color: #666;
    line-height: 1.7;
}@media(max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
}.contact-section {

    padding: 5rem 0;
   background: #f8f9fa;
     }

.contact-wrapper {
   display: grid;
                    grid-template-columns  :       1fr 1.3fr;
    gap: 4rem;
}

.contact-info h2 {

	   font-size   :    2.5rem;
  margin-bottom     :    1.5rem;
     color: #2c3e50; 
	
     }



.contact-info p {
   font-size: 1.1rem;
    color: #666;
        margin-bottom: 2.5rem;
                    line-height: 1.7;
}

.info-blocks {
	    display: flex;
   flex-direction: column;
  gap: 2rem;
}

.info-block h4 {
  font-size     :   1.2rem;
    margin-bottom: 0.8rem;
  color :      #667eea; 
	
}

.info-block p {
         color: #555;
  font-size: 1rem;
   line-height     :     1.6;
}

.contact-form-wrapper {
  background: #ffffff;
	padding: 3rem;
    border-radius    :      12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.contact-form {
         display     :     flex;
   flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
	 flex-direction: column;
  gap: 0.5rem;
}

.form-group label		{
   font-weight: 600;
	color  :        #2c3e50;
	font-size: 1rem;
}

.form-group input,
.form-group select,
.form-group textarea {
                    padding: 1rem;
   border: 2px solid #e0e0e0;
    border-radius: 8px;
   font-size: 1rem;
   font-family: inherit;
    transition: border-color 0.3s ease;
	}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;
    border-color  :        #667eea;


}

.form-group textarea {
    resize: vertical;
   min-height: 120px;
}

.btn-submit    {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color    :      #ffffff;
   padding: 1.2rem 2.5rem;
  border: none;
  border-radius: 8px;
    font-size: 1.1rem;
   font-weight:       700;
  cursor: pointer;
               transition: all 0.3s ease;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}@media(max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}.main-footer {
	 background :       #1a1a2e;
   color: #ffffff;
   padding: 4rem 0 2rem;
}

.footer-grid


{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
       margin-bottom    :    3rem;
}

.footer-brand p {
      color     :        #b8b8b8;
    line-height: 1.7;
   margin-top: 1.5rem;
}

.footer-logo {
  height: 40px;
    width: auto;
  filter: brightness(0) invert(1);
}

.footer-links h4 {
       margin-bottom:  1.2rem;
   font-size: 1.2rem;
        color: #ffffff;
     }

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
  margin-bottom    :   0.8rem;
}

.footer-links ul li a {
   -moz-transition: color 0.3s ease;
   -webkit-transition: color 0.3s ease;
    color: #b8b8b8;
    text-decoration: none;
 transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
}

.footer-links ul li a:hover {
   color: #667eea;
}

.footer-contact h4 {
     margin-bottom: 1.2rem;
	 font-size: 1.2rem;
  color: #ffffff;
}

.footer-contact p {

  color: #b8b8b8;
		 line-height:        1.7;
	 margin-bottom:    0.8rem;
     }

.footer-bottom {
   border-top    :1px solid #333;

   padding-top: 2rem;

   text-align     :      center;
	}

.footer-bottom p {

	  color: #888;
  font-size:    0.95rem;


}
@media(max-width: 968px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media(max-width: 580px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}.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 {
   color: #7f8c8d;
  margin-bottom: 1.5rem;
    line-height: 1.7;
	font-size: 1.1rem;


}@media (max-width: 768px) {
    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer p {
        font-size: 1rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}.page-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  padding: 4rem 2rem;
      color: #ffffff;
   text-align: center;
}

.page-hero-content h1  {
   font-size: 3rem;
   margin-bottom: 1.2rem;
    font-weight: 700;
}

.hero-description {
          font-size: 1.25rem;
   max-width: 800px;
    margin: 0 auto;
  opacity    :      0.95;
 line-height: 1.7;
	}

.story-section {
   padding: 5rem 0;
  background: #ffffff;

}

.story-layout {
    display: grid;
   grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
  align-items: center; 
	
}

.story-content h2 {
	font-size  :        2.5rem;
    margin-bottom: 2rem;
   color  :     #2c3e50;
}

.story-content p {
  margin-bottom: 1.5rem;
          font-size: 1.1rem;
      color: #555;
       line-height: 1.8;
}



.story-image img {
	width: 100%;
 border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}@media(max-width: 968px) {
    .story-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}.mission-section {
	    padding    :     5rem 0;
    background: #f8f9fa;
     }

.mission-section h2 {
   font-size: 2.5rem;
    text-align: center;
	 margin-bottom: 3.5rem;
  color: #2c3e50;
}

.mission-grid		{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap  :     2.5rem;
}

.mission-card   {
   background: #ffffff;
  padding: 2.5rem;
    border-radius: 10px;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.mission-icon {
   width: 65px;
	    height: 65px;
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	  color: #ffffff;
	    border-radius: 50%;
	   display: flex;
	  align-items: center;
	   justify-content: center;
	    font-size: 1.5rem;
	    font-weight: bold;
	   margin-bottom: 1.5rem;
}



.mission-card h3 {
   font-size: 1.5rem;
                    margin-bottom: 1rem;
  color  :     #2c3e50;
}

.mission-card p {
    color: #666;
  line-height: 1.7;
}

.approach-detail-section
{

   padding: 5rem 0;
   background: #ffffff;
     }

.approach-detail-section h2		{
    font-size: 2.5rem;
					text-align: center;
  margin-bottom: 3.5rem;
    color:       #2c3e50;
}

.approach-detail-content {
  display     :      grid;
   grid-template-columns: 1fr 1.4fr;
	gap :     4rem;
	 align-items: start;
}

.approach-visual img		{
  width: 100%;
   border-radius :10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.approach-text p {
    margin-bottom: 1.5rem;
		font-size: 1.1rem;
   color: #555;
	line-height: 1.8;

}

.approach-text h3 {
    font-size: 1.6rem;
     margin-top: 2rem;
   margin-bottom: 1rem;
   color: #2c3e50;
}@media(max-width: 968px) {
    .approach-detail-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}.expertise-section  
  {

    padding  :      5rem 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);}

.expertise-section h2 {

	font-size: 2.5rem;
  text-align     :  center;
          margin-bottom: 3.5rem;
  color: #2c3e50;}

.expertise-wrapper {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.expertise-item {


   background: #ffffff;
  padding:        2rem;
  border-radius :    8px;
	-moz-border-radius: 8px;
  border-left: 4px solid #667eea;
    transition: all 0.3s ease;
     }

.expertise-item:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.expertise-item h4 {
  font-size :  1.3rem;
	 margin-bottom: 0.8rem;
   color: #2c3e50;
}

.expertise-item p {
  color: #666;
    line-height: 1.7;
}

.results-section

{
	 background   :        #ffffff;
  padding: 5rem 0;
}

.results-section h2 {
       color  : #2c3e50;
	font-size: 2.5rem;
  margin-bottom: 3.5rem;
  text-align: center;
}

.results-stats {
	   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));

	   gap: 2.5rem;

	   margin-bottom: 4rem;
	}

.stat-box {
    text-align   :  center;
   padding: 2rem;
   background: #f8f9fa;
    border-radius: 10px;
}

.stat-number {
   font-size :3rem;
  font-weight: bold;
   color: #667eea;
  margin-bottom: 0.5rem;
}

.stat-label 
 {
   font-size  :      1.1rem;
	color: #555;
}

.results-testimonial {
       display: grid;
  grid-template-columns: 1.5fr 1fr;
    gap     :       3rem;
   align-items: center;
	background  :  #f8f9fa;
    padding: 3rem;
  border-radius: 12px;


}

.testimonial-text {
   font-size: 1.2rem;
   color: #555;
   line-height: 1.8;
    font-style :       italic;
   margin-bottom: 2rem;
}


.testimonial-author strong {
   display: block;
  font-size: 1.1rem;
		 color: #2c3e50;
	 margin-bottom: 0.3rem;

}

.testimonial-author span {


    color: #888;
   font-size:0.95rem;
     }

.testimonial-image img   {
   width    :    100%;
   border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}@media(max-width: 968px) {
    .results-testimonial {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}.why-us-section {
   padding: 5rem 0;
		background: #f8f9fa;

}

.why-us-section h2 {
	    font-size: 2.5rem;
  text-align: center;
    margin-bottom: 3.5rem;
   color: #2c3e50;


}

.why-us-grid {
    display    :grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
}

.why-item {
   background: #ffffff;
    padding    : 2.5rem;
   border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.why-item h4 {
        font-size     :       1.4rem;
  margin-bottom: 1rem;
    color: #667eea;
}

.why-item p


{
	   color: #666;
     line-height: 1.7;
	}

.cta-about-section {
		padding: 5rem 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  text-align   :center;
    color: #ffffff;
}


.cta-about-content h2 {
    font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-about-content p {
  font-size: 1.2rem;
   max-width: 700px;
   margin: 0 auto 2.5rem;
   opacity: 0.95;
}

.thankyou-section     {
      padding: 5rem 2rem;
  background: #f8f9fa;
	min-height: 70vh;

}

.thankyou-box {
  max-width: 800px;
    margin: 0 auto;
	background: #ffffff;
    padding     :     4rem;
   border-radius: 15px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
  text-align: center;
}  

.thankyou-icon
	{
    width: 100px;
    height: 100px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   border-radius: 50%;
   display: flex;
  align-items: center;
    justify-content: center;
    color: #ffffff;
}

.thankyou-box h1 {
    font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.thankyou-message {
	font-size     :       1.15rem;
    color: #555;
   line-height: 1.8;
  margin-bottom: 3rem;
}

.thankyou-info {
                    border-radius: 10px;
    margin-bottom: 3rem;
  background: #f8f9fa;
    padding: 2.5rem;
	text-align: left;
}

.thankyou-info h3 {
  font-size: 1.6rem;
    color: #2c3e50;
   margin-bottom  :       1.5rem;
    text-align: center;


}

.next-steps{
               list-style: none;
}

.next-steps li {
  padding: 1rem 0 1rem 2.5rem;
    position:  relative;
   font-size  :    1.05rem;
   color: #555;
       border-bottom: 1px solid #e0e0e0;
}

.next-steps li:last-child {
  border-bottom: none;
}

.next-steps li::before {

	  content: '→';
    position: absolute;
  left: 0;
   color: #667eea;
        font-weight  :       bold;
   font-size     :   1.3rem;

}

.thankyou-actions   {
   margin-bottom: 3rem;
	   justify-content: center;
			 gap: 1.5rem;
	   flex-wrap: wrap;
	  display: flex; 
	
}

.thankyou-contact-info {
   border-top: 2px solid #e0e0e0;
  padding-top: 2.5rem;
	
}

.thankyou-contact-info > p {

	    font-size: 1.05rem;
   color: #666;
  margin-bottom: 1.5rem;
     }

.contact-details


{
    display: flex;

	    gap: 3rem;

	   justify-content: center;

	  flex-wrap: wrap;
}

.contact-detail-item  
  {
	    display: flex;
  flex-direction: column;
   gap  :     0.5rem;


}

.contact-detail-item strong {
	  color: #2c3e50;
      font-size: 1.05rem;
	}

.contact-detail-item span {
    color: #667eea;
   font-size: 1rem;
}

.additional-resources {
    margin: 4rem auto 0;
 max-width: 1000px;
    padding-top: 4rem;
  border-top: 2px solid #e0e0e0;
}

.additional-resources h2 {
    font-size    : 2rem;
	text-align: center;
    margin-bottom  :    3rem;
   color: #2c3e50;


}

.resources-grid {
    display:  grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 2rem;


}

.resource-card  {
	  background:  #ffffff;
  padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);}

.resource-card h4	{

    color: #667eea;
   margin-bottom    :   1rem;
    font-size: 1.3rem;


}

.resource-card p {
          color: #666;
    line-height: 1.7;
}  @media(max-width: 768px) {
    .thankyou-box {
        padding: 2.5rem 1.5rem;
    }
    
    .thankyou-box h1 {
        font-size: 2rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
}