* {
               margin: 0;
      padding: 0;
      box-sizing: border-box; 
	
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height  :     1.6;
  color: #2c3e50;
       background: #ffffff;
}

.content-container {
  max-width: 1200px;
    margin: 0 auto;
   padding: 0 20px;
}

.mainNavBar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 15px 0;
   position: fixed;
   width: 100%;
   top  :      0;
    z-index: 1000;
  box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.nav-wrapper {
  max-width: 1200px;
   margin: 0 auto;
    display  :flex;
  justify-content: space-between;
    align-items: center;
  padding  : 0 20px;
}

.company-logo {
    height: 45px; 
    width: auto;
}

.nav-links     {

    display: flex;
    list-style: none;
  gap: 35px;
	}

.nav-links a {
    color: white;
    text-decoration: none;
  font-weight: 500;
    transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 25px;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-2px);
}

.hamburger-menu {
     display: none;
    flex-direction: column;
  cursor: pointer;
   gap: 4px;
}

.hamburger-menu span  {
    width: 25px;
   height: 3px;
    background: white;
  transition: 0.3s;
  border-radius: 2px;


}

.hero-section {


    margin-top: 75px;
   padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
			display: flex;
    align-items: center;
   min-height: 70vh;
	 max-width: 1200px;
        margin-left  :     auto;
   margin-right :    auto;
}

.hero-content {
    flex: 1;
    -webkit-flex :    1;
    -ms-flex: 1;
   padding-right: 40px;
}

.hero-content h1 {
  font-size: 3.2rem;
  color: #2c3e50;
    margin-bottom  :       25px;
   line-height: 1.2;
	font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
	   color: #555;
	   margin-bottom: 35px;
	    line-height: 1.5;
}

.cta-buttons{
    display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
         padding     :   15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
   display: inline-block;
}

.primary-btn{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
                    color: white;
    border: none;
	
}

.primary-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.secondary-btn {
   background: transparent;
	color     :    #667eea;
  border: 2px solid #667eea;
	
}

.secondary-btn:hover {
   background     : #667eea;
   color: white;
}

.hero-visual {
   flex: 1; 
	
}

.hero-visual img {
   width: 100%;

	   height: auto;

	   border-radius: 15px;

	  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.services-overview {
    padding: 100px 0;
   background: #ffffff;
}

.services-overview h2 {
 text-align: center;
	font-size   : 2.8rem;
   margin-bottom: 60px;
    color: #2c3e50;
  font-weight: 700;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap    :      40px;
	margin-top: 50px;


}

.service-card {
    background: white;
  border-radius: 20px;
   padding: 35px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
  text-align: center;
}

.service-card:hover  {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.service-card img {


    width: 100%;
         height: 220px;
  object-fit: cover;
         border-radius:  15px;
   margin-bottom: 25px;

}

.service-card h3 {
    font-size: 1.6rem;
  margin-bottom: 15px;
  color  :     #2c3e50;
    font-weight: 600;
}

.service-card p {
   color: #666;
	line-height: 1.6;
  font-size: 1.1rem;
}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
    text-align: center;
  color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
   font-weight: 700;
}

.cta-content p {
	font-size: 1.2rem;
  margin-bottom: 35px;
    max-width: 700px;
    margin-left: auto;
   margin-right: auto;
  line-height: 1.6;
}

.cta-button {
   background: white;
  color     :#667eea;
    padding: 18px 40px;
   border-radius: 30px;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.1rem;
    transition     :all 0.3s ease;
   display: inline-block;
}

.cta-button:hover {

  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255,255,255,0.3);
     }

.expertise-section {
    padding: 100px 20px;
  background: #f8f9fa; 
	
}

.expertise-section .content-container {
    display: flex;
    align-items: center;
   gap   :      60px;
}

.expertise-content {


    flex:1;

}

.expertise-content h2{
    font-size: 2.6rem;
  margin-bottom: 40px;
   color: #2c3e50;
    font-weight     :     700;
}

.expertise-grid {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.expertise-item h3 {
        color: #667eea;
     font-weight: 600;
          margin-bottom: 12px;
    font-size: 1.4rem;
}

.expertise-item p {
  color: #666;
    line-height: 1.6;
}

.expertise-visual {
    flex     :   1;
}

.expertise-visual img {
  width: 100%;
   height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.webinar-section


{
  padding: 80px 20px;
    background: white;


}

.webinar-section h2
{
    text-align: center;
  font-size: 2.6rem;
  margin-bottom: 50px;
  color: #2c3e50;
  font-weight: 700;
}

.webinar-content     {
  max-width: 800px;
   margin: 0 auto;
  text-align: center;
    background: #f8f9fa;
               padding: 50px;
	 border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.webinar-content h3 {
     font-size: 1.8rem;
    color: #667eea;
   margin-bottom: 25px;
    font-weight: 600;
     }

.webinar-content p {
      color: #666;
   margin-bottom  :       30px;
  line-height: 1.6;
  font-size: 1.1rem;
}

.webinar-details {
   display: flex;
   	 flex-wrap: wrap;
   	gap: 40px;
      justify-content: center;
       margin-bottom    :        35px; 
	
}

.webinar-date, .webinar-time    {
  background  :white;
	 padding: 12px 25px;
	 border-radius: 25px;
   color: #2c3e50;
	font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);


}

.webinar-btn {

  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 15px 35px;
    border-radius   :      30px;
  text-decoration: none;
	 font-weight: 600;
    transition: all 0.3s ease;
	display: inline-block;
     }

.webinar-btn:hover {
	  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

.contact-section {
        padding: 100px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-container {
   max-width   :    1000px;
   margin: 0 auto;


}

.contact-section h2 {
  text-align: center;
  font-size: 2.6rem;
   margin-bottom: 60px;
    color: #2c3e50;
                    font-weight: 700; 
	
}

.contact-content  {
   display: grid;
    grid-template-columns: 1fr 1.5fr;
         gap: 60px;
   align-items   :    start;
}

.contact-info h3 {
  font-size: 1.6rem;
    margin-bottom: 30px;
   color: #2c3e50;
    font-weight: 600;


}

.contact-details {
    display: flex;
   flex-direction: column;
   gap :    20px; 
	
}

.contact-item {
    flex-direction: column;
  display: flex;
   gap: 5px;
}

.contact-item strong {

  color   :     #667eea;
	font-weight    :     600;
	}

.contact-form {
    background :      white;
   padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.form-group {
  margin-bottom: 25px; 

}

.form-group label {
	 display: block;
    margin-bottom: 8px;
         color: #2c3e50;
  font-weight     :      600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
   padding: 15px;
  border: 2px solid #e1e5e9;
    border-radius: 10px;
  font-size: 1rem;
   transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.submit-btn {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color    :     white;
    padding: 15px 40px;
  border     :    none;
   border-radius: 30px;
     font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
	transition: all 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

.main-footer {
   background: #2c3e50;
  color: white;
    padding: 60px 20px 20px;
}


.footer-content {
      max-width: 1200px;
    margin: 0 auto;
         display: grid;
   grid-template-columns: 1fr 2fr;
    gap: 50px;
          margin-bottom: 40px;


}

.footer-logo
{
   height: 50px;
   width: auto;
  filter: brightness(0) invert(1);
}

.footer-info {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 40px;
}

.footer-section h4 {
	margin-bottom: 20px;
  color: #667eea;
	font-weight: 600;
}

.footer-section p {
   margin-bottom: 10px;
   line-height: 1.6;
}

.footer-links {
   list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
   color: #bdc3c7;
    text-decoration:      none;
	transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-bottom {
   text-align: center;
	 padding-top: 30px;
    border-top: 1px solid #34495e;
    color: #bdc3c7;
}@media (max-width: 768px) {
    .hamburger-menu {
        display: flex;
    }
    
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(102, 126, 234, 0.95);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expertise-section .content-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .webinar-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .services-overview h2,
    .expertise-content h2,
    .webinar-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .webinar-content {
        padding: 30px 20px;
    }
}.nav-links a.active {
  background: rgba(255,255,255,0.3);
    border-radius :   25px;
}

.about-hero {
   margin-top: 75px;
   padding: 70px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: white;
  display: flex;
   align-items: center;
   max-width: 1200px;
	margin-left: auto;
    margin-right    :   auto;
	border-radius: 0 0 30px 30px;
}

.about-hero-content {
   flex: 1;
   padding-right: 40px;
}

.about-hero-content h1 {
   font-size: 3rem;
  margin-bottom: 25px;
	 font-weight: 700;
    line-height: 1.2;
}

.about-subtitle {
                    font-size: 1.3rem;
    line-height: 1.6;
   opacity     :0.9;
}

.about-hero-visual {
    -webkit-flex: 1;
	-ms-flex   :       1;
    flex   :        1;
}

.about-hero-visual img 
 {
   width: 100%;
       height: auto;
    border-radius  :    15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

.company-story    {
    padding: 90px 0;
  background: #ffffff;
}

.company-story h2 {
  font-size: 2.6rem;
   font-weight: 700;
    margin-bottom    :   60px;
   text-align: center;
    color: #2c3e50;
}

.story-content {
   display: grid;
   grid-template-columns: 1.5fr 1fr;
  gap: 50px;
    align-items: center;
}

.story-text p
	{
   font-size: 1.1rem; 
	  line-height: 1.7; 
	    color: #555; 
	   margin-bottom: 25px;
}

.story-visual img {
   width: 100%; 
	 height: auto; 
               border-radius: 15px; 
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.team-approach {
   padding: 90px 0;
  background: #f8f9fa;
}

.team-approach h2 {
 font-size: 2.6rem;
  text-align: center;
  margin-bottom: 60px;
   color: #2c3e50;
    font-weight: 700;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap   :  35px;
}

.approach-item		{

	    background: white;
   padding: 35px;
    border-radius: 20px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
   transition: transform 0.3s ease;


}

.approach-item:hover {
  transform: translateY(-8px);
}

.approach-item h3 {


          font-size: 1.5rem;
   color: #667eea;
  margin-bottom: 15px;
   font-weight:      600;


}

.approach-item p {
   color: #666;
  line-height :  1.6;
}

.expertise-areas		{
   padding: 90px 20px;
	background: white;
}

.expertise-areas .content-container {
   display: flex;
    gap:  60px;
	align-items: start; 

}

.expertise-content

{
   flex: 1.2;
}

.expertise-content h2 {
   font-size: 2.6rem;
   margin-bottom: 40px;
  color    :   #2c3e50;
	font-weight: 700;
}

.expertise-list {
               display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 40px;
}

.expertise-category h3 {
    font-size: 1.4rem;
  color: #667eea;
   margin-bottom: 20px;
  font-weight: 600;
}

.expertise-category ul {
	 list-style: none;
   padding   :   0;
}

.expertise-category li {
  padding     :        8px 0;
     color: #666;
       border-bottom :     1px solid #eee;
       position: relative;
      padding-left: 20px;
}

.expertise-category li:before {
  content: "✓";
    position: absolute;
   left: 0;
  color   :        #667eea;
  font-weight: bold;
}

.expertise-areas .expertise-visual{
    flex: 0.8;
}

.expertise-areas .expertise-visual img {
   width  :       100%;
   height: auto;
    border-radius: 15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
}

.achievements-section {
   padding: 90px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.achievements-section h2	{
    font-size: 2.6rem;
  text-align: center;
   margin-bottom     : 60px;
  color: #2c3e50;
  font-weight: 700;
}

.achievements-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 30px;
}

.achievement-card {

   background: white;
    padding: 40px 20px;
   text-align: center;
   border-radius  :       20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
         transition: transform 0.3s ease;}

.achievement-card:hover {
  transform: translateY(-10px);
	
}

.achievement-number {
	 font-size   :3rem;
                    font-weight:700;
  color: #667eea;
  margin-bottom: 10px;

}

.achievement-text {
  font-size: 1.1rem;
  color: #666;
   font-weight: 500;
}

.values-section {
   padding   :      90px 0;
   background: white;
}

.values-section h2 {
   font-size :     2.6rem;
	 text-align: center;
   margin-bottom: 60px;
   color: #2c3e50;
   font-weight: 700;
}

.values-content {
    display: grid;
   grid-template-columns: 1fr 1.2fr;
		gap: 50px;
   align-items: center;


}

.values-visual img {
	   width: 100%;
    height   :    auto;
    border-radius     :15px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
	}

.values-list {
    display: flex;
   flex-direction: column;
  gap: 30px;
}

.value-item h3 {
    color: #667eea;
   font-weight: 600;
    margin-bottom: 12px;
  font-size  :1.5rem;
}

.value-item p     {
   color: #666;
  line-height: 1.6;
}

.certification-section

{
   padding     :   90px 0;
    background: #f8f9fa;
}

.certification-section h2 {
     font-size: 2.6rem;
    text-align: center;
  margin-bottom: 40px;
   color: #2c3e50;
  font-weight: 700;
}

.certification-intro {
    text-align    :    center;
   font-size: 1.2rem;
       color: #666;
  margin-bottom: 50px;
  max-width     :  800px;
  margin-left:auto;
	margin-right: auto;
}

.certification-grid     {
   display: grid;

	  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

	     gap: 30px;
}

.cert-item {


  background :       white;
   padding: 30px;
   border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.cert-item h4 {
          font-size: 1.3rem; 
	   color: #667eea; 
	   margin-bottom: 15px; 
	   font-weight: 600;
}

.cert-item p {

   color: #666;
   line-height: 1.5;
	} 

.thankyou-hero {
  margin-top:      75px;
  padding :   80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
				 min-height  :90vh;
}

.thankyou-container{
                    max-width: 1200px;
    margin: 0 auto;
      display   :      grid;
   grid-template-columns: 1.5fr 1fr;
  gap: 60px;
    align-items: center;
}

.success-indicator {
	text-align: center;
	margin-bottom: 40px;
}


.checkmark-circle {
    width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #27ae60, #2ecc71);
	border-radius: 50%;
   display: inline-flex;
                    align-items: center;
   justify-content: center;
  margin-bottom: 20px;
    animation: checkmarkPulse 2s infinite;
}

.checkmark {
       width: 30px;
    height: 15px;
   border: 3px solid white;
  border-top: none;
  border-right    :   none;
  transform: rotate(-45deg);
}@keyframes checkmarkPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}.thankyou-content h1 {
   font-size: 2.8rem;
   color: #2c3e50;
    margin-bottom: 25px;
	 text-align: center;
    font-weight: 700;
}

.thankyou-subtitle {
	 font-size: 1.2rem;
    color: #666;
    text-align    :   center;
   margin-bottom: 50px;
  line-height: 1.6;
}

.next-steps {
   margin-bottom: 50px;
}

.next-steps h2 {
    font-size: 2rem;
  color: #2c3e50;
   margin-bottom  :       30px;
    text-align: center;
  font-weight: 600;
}

.steps-grid {
  display: flex;
          flex-direction: column;
   gap: 25px;
}

.step-item {
	display: flex;
  align-items: center;
   gap: 20px;
    background :white;
  padding: 25px;
   border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-number {
   width :   40px;
  height: 40px;
  background: linear-gradient(135deg, #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-content h3 {
         font-size: 1.3rem; 
    color: #2c3e50; 
  margin-bottom: 8px; 
    font-weight: 600;
}

.step-content p {
  color: #666;
   line-height: 1.5;
}

.contact-reminder 
 {
    margin-bottom: 50px;
               text-align: center;
   background: white;
   padding: 30px;
    border-radius     :  15px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.contact-reminder h2    {
       font-size: 1.8rem;
  color    :       #2c3e50;
    margin-bottom: 15px;
  font-weight: 600;
}

.contact-reminder p  {
   color: #666;

   margin-bottom: 20px;
}

.contact-reminder .contact-details	{
	display: flex;
   justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.contact-reminder .contact-item {
	 display: flex;
  flex-direction: column;
    gap: 5px;
}

.contact-reminder .contact-item strong {
  color:      #667eea;
   font-weight: 600; 

}

.additional-resources {
 text-align: center;
	}

.additional-resources h2 {
  font-size: 1.8rem;
   color: #2c3e50;
    margin-bottom: 15px;
   font-weight: 600;
}

.additional-resources p {
    color: #666;
       margin-bottom     :        30px;
    line-height: 1.6;
}

.resource-buttons {
    display: flex;
    justify-content: center;
  gap: 20px;
    flex-wrap: wrap;
}

.thankyou-visual img {
  width: 100%;
  height: auto;
   border-radius: 15px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}


.testimonial-section{
  padding: 80px 0;
    background: white;
}

.testimonial-section h2 {
  font-size: 2.4rem;
   text-align: center;
  margin-bottom: 50px;
    color: #2c3e50;
  font-weight: 700;
}

.testimonials-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap   :     30px;
}

.testimonial-card {
    background: #f8f9fa;

  padding: 30px;

  border-radius: 15px;

    border-left: 4px solid #667eea;

  box-shadow: 0 5px 15px rgba(0,0,0,0.05);

}

.testimonial-card p {
    font-style: italic;
                    color: #555;
  margin-bottom: 20px;
    line-height: 1.6;
  font-size: 1.1rem;
}

.testimonial-author strong {
  color: #2c3e50; 
	    font-weight: 600; 
	  display   :    block; 

}

.testimonial-author span {
   color: #667eea;
   font-size: 0.9rem;

}@media (max-width: 768px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 20px;
    }
    
    .about-hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .expertise-areas .content-container {
        flex-direction: column;
        gap: 40px;
    }
    
    .expertise-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .achievements-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .values-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .certification-grid {
        grid-template-columns: 1fr;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-reminder .contact-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .resource-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .about-subtitle {
        font-size: 1.1rem;
    }
    
    .company-story h2,
    .team-approach h2,
    .expertise-content h2,
    .achievements-section h2,
    .values-section h2,
    .certification-section h2 {
        font-size: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2rem;
    }
    
    .next-steps h2,
    .contact-reminder h2,
    .additional-resources h2 {
        font-size: 1.5rem;
    }
    
    .achievements-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .checkmark-circle {
        width: 60px;
        height: 60px;
    }
    
    .checkmark {
        width: 20px;
        height: 12px;
    }
}.pol {
    margin: 5% 15%;
}