* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.main-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
}

.nav-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.brand-section .nav-logo {
    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,
.nav-link.active {
    color: #2c5282;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #2c5282;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 25px;
    justify-content: space-between;
}

.burger-menu span {
    width: 100%;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

.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(8px, -8px);
}

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding-top: 100px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.main-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-primary,
.cta-secondary {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-primary {
    background: #fff;
    color: #2c5282;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-secondary {
    border: 2px solid white;
    color: white;
    background: transparent;
}

.cta-secondary:hover {
    background: white;
    color: #2c5282;
}

.hero-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

.intro-section {
    background: #f8fafc;
}

.intro-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c5282;
}

.intro-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.intro-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.intro-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.intro-card:hover {
    transform: translateY(-5px);
}

.intro-card h3 {
    color: #2c5282;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
}

.service-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.service-item.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.service-item:hover {
    transform: translateY(-8px);
}

.service-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    color: #2c5282;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-content ul {
    list-style: none;
    margin-top: 1rem;
}

.service-content ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-content ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5282;
    font-weight: bold;
}

.cta-section {
    background: linear-gradient(135deg, #2c5282 0%, #553c9a 100%);
    color: white;
    padding: 5rem 0;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
    opacity: 0;
    transform: translateY(30px);
}

.cta-container.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-main-button {
    display: inline-block;
    background: white;
    color: #2c5282;
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-main-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.approach-section {
    background: #f8fafc;
}

.approach-text h3 {
    color: #2c5282;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.approach-text h4 {
    color: #4a5568;
    font-size: 1.5rem;
    margin: 2rem 0 1.5rem 0;
}

.process-steps {
    margin-top: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateX(-30px);
}

.step.animate-in {
    opacity: 1;
    transform: translateX(0);
}

.step-number {
    background: #2c5282;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1.5rem;
    flex-shrink: 0;
}

.step-content h5 {
    color: #2c5282;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-section {
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c5282;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
}

.submit-button {
    background: #2c5282;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    background: #553c9a;
    transform: translateY(-2px);
}

.contact-info {
    background: #2c5282;
    color: white;
    padding: 2rem;
    border-radius: 12px;
    height: fit-content;
}

.contact-info h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.info-item {
    margin-bottom: 2rem;
}

.info-item strong {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.main-footer {
    background: #1a202c;
    color: white;
    padding: 3rem 0 1rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: #e2e8f0;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    margin-top: 2rem;
    padding-top: 1rem;
    text-align: center;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 1rem 2rem;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        gap: 1rem;
    }

    .menu-items.mobile-active {
        display: flex;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from { transform: translateY(-100%); opacity: 0; }
        to { transform: translateY(0); opacity: 1; }
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .main-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-wrapper {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-primary,
    .cta-secondary {
        width: 100%;
        text-align: center;
    }

    .section-container {
        padding: 3rem 1rem;
    }
}.about-hero {
  background: linear-gradient(135deg, #4c63d2 0%, #6366f1 100%);
    color: white;
  padding     :     120px 0 80px 0;
    min-height: 70vh;
   display: flex;
    align-items: center;
}

.about-hero-container {
    max-width: 1200px;
   margin: 0 auto;
                    padding: 0 2rem;
   display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 3rem;
    align-items: center;

}

.about-hero-content h1 {
   font-size: 3rem;
    font-weight   :  700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 1.2rem; 
     opacity  :       0.9; 
  line-height: 1.6;
}

.about-hero-image img {
   width   :   100%;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.mission-section {
  padding: 5rem 0;
  background: #f8fafc;

}

.mission-text {
    font-size  :     1.2rem; 
    line-height: 1.8; 
   color: #4a5568; 
  margin-bottom: 3rem; 
          text-align: center; 
	 max-width     :    800px; 
    margin-left: auto; 
   margin-right   :    auto;
}

.mission-content h2 {


  text-align: center;
    font-size: 2.5rem;
   margin-bottom: 2rem;
  color    :    #2c5282;


}

.values-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
       gap: 2rem;
   margin-top: 3rem;
}

.value-item {
  background: white;
    padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
   text-align: center;
   transition: transform 0.3s ease; 
	
     }

.value-item:hover {
  transform: translateY(-5px);
}

.value-item h3 {
  color: #2c5282;
   font-size: 1.5rem;
  margin-bottom: 1rem;
}

.value-item p {
   color: #4a5568;
    line-height: 1.6;
}

.story-section   {
	padding: 5rem 0;
   background: white;
}

.story-wrapper {
   display: grid;
	 grid-template-columns: 1fr 1fr;
	gap: 4rem;
    align-items     :  center;}

.story-text h2 {
   color: #2c5282;
   font-size: 2.5rem;
   margin-bottom: 2rem;
}

.story-text p {
  color: #4a5568;
	line-height:       1.8;
    margin-bottom: 1.5rem;
  font-size     :  1.1rem;
}

.story-image img {
    width: 100%;
          border-radius: 12px;
     box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.approach-detail-section {
  padding: 5rem 0;
  background: #f8fafc;
}

.approach-detail-section h2 {
   text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
 color: #2c5282;
}

.approach-details  {
  max-width: 900px;
    margin  :   0 auto;
     }

.approach-item {
  display: flex;
    align-items:    flex-start;
   margin-bottom: 3rem;
  background: white;
    padding: 2rem;
    border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.approach-icon {
   margin-right    :      2rem;
    flex-shrink: 0;
}

.icon-circle {
    width: 60px;
  height: 60px;
   background: #2c5282;
    color: white;
  border-radius: 50%;
    display: flex;
   align-items: center;
   justify-content: center;
	 font-size: 1.5rem;
   font-weight: bold;
}

.approach-text h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5282;
}

.approach-text p    {
	 color: #4a5568;
   line-height: 1.6;
}

.experience-section  
  {
    padding:        5rem 0;
  background: white;
}

.experience-section h2 {
    text-align: center;
    font-size: 2.5rem;
   margin-bottom: 3rem;
 color: #2c5282;
}

.experience-grid	{
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.stat-item		{
  text-align :     center;
    background: #f8fafc;
	padding: 2rem;
   border-radius: 12px;
}

.stat-number {
          font-size    :       2.5rem;
    font-weight     : 700;
   color: #2c5282;
  margin-bottom :0.5rem;
}

.stat-label {
       color: #4a5568;
   font-weight: 500;
}

.expertise-areas h3 {
    text-align: center;
   font-size: 2rem;
        margin-bottom: 2rem;
  color: #2c5282;
}

.expertise-list {
       display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;}

.expertise-item {
   border-left: 4px solid #2c5282;
   border-radius: 12px;
	 background: #f8fafc;
    padding : 2rem;
}

.expertise-item h4 {
   color: #2c5282;
   font-size: 1.3rem;
    margin-bottom: 1rem;
}

.expertise-item p   {

    color: #4a5568;
               line-height: 1.6;


}

.methodology-section {
   padding: 5rem 0;
  background: #f8fafc;
}

.methodology-section h2 {
   margin-bottom: 3rem;
    text-align: center;
   font-size: 2.5rem;
    color: #2c5282;
}

.methodology-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
    gap: 4rem;
  align-items: center;
}

.method-description p{
  color: #4a5568;
   line-height: 1.8;
	margin-bottom: 2rem;
    font-size    :       1.1rem;
}

.method-description h3 {
      color: #2c5282;
    font-size: 1.5rem;
  margin-bottom: 1.5rem;


}

.method-elements {
        space-y: 1rem;
} 

.element {
    background: white;
   padding: 1.5rem;
   border-radius: 8px;
  margin-bottom: 1rem;
   border-left: 4px solid #2c5282;
}

.element strong    {
     color: #2c5282;
	     display: block;
		margin-bottom   :0.5rem;
	  font-size: 1.1rem;
	}

.element span
	{
	 color: #4a5568;
    line-height: 1.5;}

.methodology-image img

{

       width: 100%;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);

}

.thankyou-section {
    min-height: 100vh;
    padding  :       120px 0 80px 0;
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.thankyou-container {
   max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.thankyou-content {
    background: white;
  border-radius: 20px;
    padding: 3rem;
  box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    text-align: center;

}

.success-icon		{

	  margin-bottom: 2rem;}

.checkmark {
  width: 80px;
  height: 80px;
   border-radius: 50%;
       display: block;
  stroke-width   :    3;
   stroke     :     #4ade80;
               stroke-miterlimit    :     10;
   margin: 0 auto;
    box-shadow: inset 0px 0px 0px #4ade80;
    animation: fill 0.4s ease-in-out 0.4s forwards, scale 0.3s ease-in-out 0.9s both;
  position: relative;
}

.checkmark-circle {
  stroke-dasharray: 166;
   stroke-dashoffset   : 166;
   stroke-width: 3;
  stroke-miterlimit: 10;
   stroke: #4ade80;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
  border-radius: 50%;
  width: 80px;
                    height:       80px;
    position: absolute;
   top: 0;
    left :        0;
  border: 3px solid #4ade80;
}

.checkmark-stem {
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
   stroke-dasharray: 18;
    stroke-dashoffset: 18;
    position: absolute;
    top: 32px;
   left: 28px;
   width: 15px;
         height    : 3px;
    background: #4ade80;
  transform: rotate(45deg);}

.checkmark-kick {
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
	 stroke-dasharray: 25;
    stroke-dashoffset :        25;
   position: absolute;
   top: 40px;
         left: 40px;
  width: 25px;
    height: 3px;
    background: #4ade80;
  transform: rotate(-45deg);
}@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #4ade80;
    }
}.thankyou-title {
  font-size: 2.5rem;
   color: #2c5282;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thankyou-message {
   line-height: 1.6;
   margin-bottom: 3rem;
    color: #4a5568;
   font-size: 1.2rem;
}

.next-steps {
	text-align: left;
    margin-bottom:       3rem;


}

.next-steps h2


{
  text-align: center;
  color: #2c5282;
   font-size: 2rem;
   margin-bottom: 2rem;
}

.steps-timeline	{
 position: relative;
  padding-left:    2rem;
}

.steps-timeline::before {
  content: '';
   position: absolute;
	left: 15px;
	top: 20px;
   bottom: 20px;
  width  :    2px;
    background: #e2e8f0;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
   position: relative;
}

.timeline-marker		{
   width: 30px;
    height: 30px;
  background    :      #2c5282;
	 color: white;
   border-radius: 50%;
    display: flex;
   align-items: center;
    justify-content: center;
  font-weight   :  bold;
    margin-right: 1.5rem;
	flex-shrink: 0;
   position: relative;
   z-index  : 2;
}

.timeline-content h3 {
   color: #2c5282;
   margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.timeline-content p {
  color: #4a5568;
   line-height  :      1.6;
    margin-bottom:0.5rem;
}

.timeline-duration    {
    color: #6b7280;
	    font-size: 0.9rem;
	  font-style: italic;
}

.additional-info {
   margin-bottom: 3rem;
}

.additional-info h2 {


	text-align: center;
  color : #2c5282;
    font-size: 2rem;
  margin-bottom: 2rem;}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap: 1.5rem;
     }

.info-card {
  background: #f8fafc;
   padding: 1.5rem;
   border-radius: 12px;
 border-left: 4px solid #2c5282;
}

.info-card h3 {
    color: #2c5282;
	margin-bottom    :    1rem;
   font-size: 1.1rem;
} 

.info-card p {
  color: #4a5568;
  line-height: 1.6;
    font-size: 0.95rem;
}

.contact-reminder {
    background: #eff6ff;
    padding  :  2rem;
    border-radius: 12px;
   margin-bottom: 3rem;
    border: 1px solid #dbeafe;
}

.contact-reminder h2 {
  color     :   #2c5282;
    font-size  : 1.5rem;
  margin-bottom: 1rem;
	text-align: center;
}

.contact-reminder p {
  color: #4a5568;
    text-align: center;
 margin-bottom :       1.5rem;
}

.contact-details {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;


}

.contact-item {
  text-align:        center;
	color: #4a5568;
}

.contact-item strong {
   color: #2c5282;
   display: block;
    margin-bottom: 0.5rem;
}

.thankyou-actions {
  display: flex;
    gap: 1rem;
  justify-content  :        center;
   flex-wrap: wrap;

}

.btn-primary,
.btn-secondary
	{
   padding: 1rem 2rem;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
   transition: all 0.3s ease;
    display  :inline-block;
}

.btn-primary {
   background: #2c5282;
	color    :        white;

}

.btn-primary:hover  {
     background    : #553c9a;
  transform: translateY(-2px);
}

.btn-secondary		{
   border: 2px solid #2c5282;

   color: #2c5282;

  background: transparent;
}

.btn-secondary:hover {
        background: #2c5282;
    color: white;
}@media (max-width: 768px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .about-hero-content h1 {
        font-size: 2.5rem;
    }

    .story-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .methodology-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .approach-item {
        flex-direction: column;
        text-align: center;
    }

    .approach-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .thankyou-content {
        padding: 2rem;
    }

    .thankyou-title {
        font-size: 2rem;
    }

    .steps-timeline {
        padding-left: 1rem;
    }

    .steps-timeline::before {
        left: 8px;
    }

    .timeline-marker {
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
        margin-right: 1rem;
    }

    .thankyou-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .about-hero-content h1 {
        font-size: 2rem;
    }

    .section-container {
        padding: 3rem 1rem;
    }

    .thankyou-section {
        padding: 100px 1rem 60px 1rem;
    }

    .thankyou-content {
        padding: 1.5rem;
    }

    .values-grid,
    .expertise-list,
    .info-cards {
        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;
    }
}