* {
   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-color: #f8f9fa;
}

.container {
   max-width: 1200px;
  margin: 0 auto;
    padding: 0 20px;
	
}

.main-nav  {
  background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 100%);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
         position: sticky;
  top: 0;
	z-index: 1000;
}

.nav-container {
   max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
   display: flex;
	 justify-content: space-between;
	align-items: center;
  height: 70px;
}

.nav-logo {
    flex-shrink: 0;
}

.logo-img
{
  height: 50px;
               width: auto;
  filter: brightness(0) invert(1);
}

.burger-menu {
   display: none;
         flex-direction: column;
  background: none;
               border: none;
	cursor: pointer;
   padding: 8px;
   gap: 5px;
}

.burger-line {
    width: 25px;
   height:        2.5px;
  background-color  :  #2c3e50;
    border-radius: 2px;
  transition: all 0.3s ease;
}

.nav-links {
    display: flex;
        list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-links a {
	 text-decoration: none;
    color    :       #2c3e50;
  font-weight: 500;
   transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover {


          color: #3498db;
	}

.nav-links a::after {
  content: '';
    position: absolute;
  bottom: -5px;
   left: 0;
  width: 0;
    height: 2px;
  background-color: #3498db;
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
	 width: 100%;
}

.cta-link {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white !important;
         padding: 10px 25px;
    border-radius: 25px;
	transition    :        all 0.3s ease;
}

.cta-link:hover
	{

	  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
	}

.cta-link::after {
   display: none;
}

.hero-section {
   display: grid;
  grid-template-columns: 1fr 1fr;
  gap  :        60px;
   align-items:      center;
    padding: 100px 20px;
   max-width: 1200px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 3.5rem;
   line-height: 1.2;
  margin-bottom :   25px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-clip: text;
}

.hero-subtitle


{
  font-size: 1.1rem;
    color: #555;
    margin-bottom: 35px;
    line-height: 1.8;
}

.btn-primary
	{
	 display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
         color :      white;
  padding: 16px 40px;
    border-radius :  8px;
    text-decoration: none;
   font-weight  :     600;
    transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.2);

}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.35);
}

.hero-image {
    position: relative;
}

.responsive-img {
  width: 100%;
   height: auto;
    border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.intro-section {
   background :   white;
      padding :     80px 20px;
}

.intro-section h2 {
    font-size: 2.5rem;
  margin-bottom   :        60px;
   text-align: center;
   color: #2c3e50;
}

.intro-grid	{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 40px; 
	
}

.intro-card {
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
      padding :   40px;
  border-radius: 12px;
    border-left    : 4px solid #667eea;
    transition: all 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.card-number {
  font-size: 3rem; 
    font-weight: bold; 
  color: #667eea; 
    margin-bottom: 15px; 
   opacity: 0.3;
}

.intro-card h3 {
  font-size: 1.5rem;
    margin-bottom: 15px;
  color: #2c3e50;
}

.intro-card p {
   color: #666;
    line-height: 1.8;
}

.services-preview {
     padding: 80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-preview h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
  text-align: center;
    color: #2c3e50;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
          gap: 40px;
                    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
   background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-item:hover   {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.service-image {
      width: 100%;
  height: 250px;
  object-fit: cover;
}

.service-item h3 {
       font-size: 1.3rem;
   padding: 25px 20px 10px;
  color: #2c3e50;
}

.service-item p {
   padding: 0 20px 25px;
  color: #666;
  line-height: 1.7;
}

.conference-section {
    padding: 80px 20px;
  background: white;
}

.conference-section h2 {
   font-size   :        2.5rem;
    margin-bottom:60px;
    text-align: center;
    color: #2c3e50;
}

.conference-content {

	   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
   align-items    :center;
  max-width: 1200px;
   margin: 0 auto; 
}

.conf-text h3 {
  font-size: 2rem;
    margin-bottom: 20px;
     color: #2c3e50;
	
}

.conf-text p {

	  color: #666;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size:     1.05rem;}

.conference-features {
    list-style: none;
        margin-bottom    :20px;
}

.conference-features li {
		padding: 12px 0;
  padding-left: 30px;
  position: relative;
    color: #555;
  font-weight:       500;
}



.conference-features li::before {
    font-size: 1.2rem;
  position: absolute;
	 font-weight    :    bold;
    left: 0;
  content: '✓';
  color: #667eea;
}

.conf-image {
   width :       100%;

    height:       auto;

   border-radius: 12px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.cta-section {
    padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-box {
    max-width: 800px;
	margin: 0 auto;
   text-align: center;
    color: white;
}

.cta-box h2 {
	    font-size: 2.5rem;
   margin-bottom: 20px;


}

.cta-box p {
  margin-bottom: 35px;

  font-size: 1.1rem;

   line-height: 1.8;
}

.btn-secondary {
   display: inline-block;
	    background :     white;
		color:    #667eea;
	  padding: 16px 40px;
	  border-radius: 8px;
	                    text-decoration:       none;
	    font-weight: 600;
	  transition: all 0.3s ease;
	  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.btn-secondary:hover {
  transform: translateY(-3px); 
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}

.contact-section{
    padding: 80px 20px;
    background: white;
}

.contact-section h2 {
	 font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
   color: #2c3e50;
}

.contact-wrapper {
    grid-template-columns: 1fr 1fr;
	 max-width: 1200px;
       display  : grid;
   align-items: flex-start;
    margin: 0 auto;
   gap: 60px; 
	
}

.contact-info h3 {
  font-size: 1.5rem;
     margin-bottom: 30px;
    color: #2c3e50;
}

.info-item    {
    margin-bottom: 25px;
   display: block;}

.info-label {
	 margin-bottom: 8px;

  color :        #667eea;

   display: block;

	font-weight    :     600;
}

.info-text {
      display: block;

    color: #555;

  line-height: 1.6;

}

.contact-form {


  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
   padding: 40px;
    border-radius   :       12px;
    border: 1px solid #e0e0e0;


}

.form-group {
  margin-bottom: 20px; 

}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
    padding: 14px;
  border: 1px solid #ddd;
	 border-radius: 6px;
  font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
   border-color   :      #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.btn-submit


{
  width    :   100%;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 16px;
  border   :        none;
  border-radius:6px;
    font-weight: 600;
   cursor  :  pointer;
	 transition: all 0.3s ease;
   font-size: 1rem;
}  

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.main-footer {
     background: #2c3e50;
  color: white;
 padding: 60px 20px 20px;

}

.footer-content	{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	 gap: 40px;
  max-width: 1200px;
   margin: 0 auto 40px;
    padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-section h4 {
	    font-size: 1.1rem;
  margin-bottom: 20px;
   color: #667eea;
}

.footer-logo-section {
   display: flex;
	align-items: center;
}

.footer-logo {
      height: 50px;
  width:  auto;
  filter: brightness(0) invert(1);
}

.footer-links {
	list-style: none;
}

.footer-links li  {
  margin-bottom :12px;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
    text-decoration: none;
                    transition: color 0.3s ease;
}

.footer-links a:hover {
     color: #667eea;
}

.footer-address {
	font-size: 0.95rem;
   line-height: 1.6;
  color: rgba(255,255,255,0.8);
   margin-bottom: 15px;
}

.footer-phone {
    font-weight: 600;
   color: #667eea; 

}

.footer-bottom {
  text-align: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 15px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .burger-menu.active .burger-line:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .burger-menu.active .burger-line:nth-child(2) {
        opacity: 0;
    }

    .burger-menu.active .burger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-section {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .conference-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .intro-section,
    .services-preview,
    .conference-section,
    .cta-section,
    .contact-section {
        padding: 50px 20px;
    }

    .intro-section h2,
    .services-preview h2,
    .conference-section h2,
    .contact-section h2 {
        font-size: 1.8rem;
    }

    .cta-box h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        padding: 10px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
    padding: 80px 20px;
    text-align     :    center;
}

.services-hero h1 {
    font-size: 3rem;
   margin-bottom: 20px;
}

.hero-description {
   font-size     :1.3rem;
    opacity: 0.9;
    max-width: 700px;
   margin: 0 auto;
}

.services-main  
  {
  padding   :       80px 20px;
   background  :    white;
}

.services-tabs {
   display: flex;
    gap: 15px;
  margin-bottom: 50px;
    justify-content: center;
	 flex-wrap: wrap;
}

.tab-button {
      font-size: 1rem;
      color: #2c3e50;
   background: white;
    border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
               border: 2px solid #ddd;
  padding: 14px 28px;
   transition: all 0.3s ease;

}

.tab-button:hover {
	border-color    :       #667eea;
    color  :       #667eea;

}

.tab-button.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
	 border-color: #667eea;
}

.tab-content {
      display: none;
    animation: fadeIn 0.3s ease; 
	


}

.tab-content.active {
      display: block;


}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.service-detail    {

	   display: grid;

  grid-template-columns: 1fr 1fr;

    gap: 60px;

   align-items: center;}

.detail-image {
   position: relative; 
	
}

.service-large-image {
       width: 100%;
  height: auto;
   border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.detail-text h2 {
    font-size:        2.5rem;
    margin-bottom: 20px;
   color: #2c3e50;
}

.detail-text p {
   color: #666;
    margin-bottom: 25px;
  line-height: 1.8;
  font-size     :   1.05rem;
}

.detail-text h3 {
    color : #2c3e50;
  font-size: 1.3rem;
    margin-top: 30px;
  margin-bottom: 15px;
}

.service-features {
  list-style: none;
       margin-bottom: 25px;
}

.service-features li {
   padding: 12px 0;
  padding-left: 30px;
   position: relative;
   color: #555;
    line-height: 1.6;
}

.service-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color:        #667eea;
  font-weight: bold;
  font-size: 1.2rem;
}

.price-block {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%); 
	   padding: 20px; 
	   border-radius: 8px; 
	          border-left: 4px solid #667eea; 
	         margin :   25px 0; 
	  display: flex; 
	   justify-content: space-between; 
	  align-items: center;
}

.price-label	{
       font-weight: 600;
       color: #2c3e50;
	}

.price-value {
  font-size: 1.8rem;

    font-weight: bold;

    color: #667eea;
}

.duration {
  color: #999;
    font-style: italic;
    margin-bottom: 25px;
}

.comparison-section
{
   padding    :  80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
	
}

.comparison-section h2		{
   font-size: 2.5rem;
    margin-bottom: 50px;
    text-align :        center;
                    color: #2c3e50;
}

.comparison-table {
    max-width: 1200px;
   margin: 0 auto;
    background: white;
	border-radius:    12px;
	 overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
} 

.table-row {
	display: grid;
  grid-template-columns: repeat(5, 1fr);
   border-bottom: 1px solid #e0e0e0;
}

.table-row:last-child {
  border-bottom: none;
}

.header-row {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
}

.table-cell {


  padding: 20px;
   display: flex;
     align-items: center;
	justify-content: center;
   text-align: center;
   font-weight: 500;
	}

.header-cell {
   font-weight: 700;
  font-size: 1.05rem;
} 

.table-row:nth-child(even) {
    background    :  #f9fafb;
}

.faq-section {
    padding     : 80px 20px;
   background     :       white;
}

.faq-section h2 {

		 margin-bottom: 50px;
    text-align: center;
    font-size:  2.5rem;
   color: #2c3e50;


}

.faq-list {
   max-width  :       900px;
    margin: 0 auto; 

}



.faq-item {


      border: 1px solid #e0e0e0;
   border-radius: 8px;
        margin-bottom: 20px;
  overflow: hidden;}

.faq-question {
    width   :   100%;
  padding: 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: none;
  cursor: pointer;
  display: flex;
	 justify-content: space-between;
   align-items: center;
    font-weight: 600;
    color :        #2c3e50;
  font-size: 1.05rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
     background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
   color: #667eea;
	}



.faq-icon {
   font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
    display: none;
   padding: 20px;
    background: white;
   color: #666;
    line-height: 1.8;
}


.faq-item.active .faq-answer	{
   display: block;
}

.cta-services-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               text-align: center;
    color: white;
}

.cta-services-section h2 {
    font-size: 2.5rem;
         margin-bottom: 20px;
}

.cta-services-section p {
    font-size  :1.1rem;
  margin-bottom: 35px;
  opacity: 0.9;
  max-width: 700px;
    margin-left   :  auto;
  margin-right: auto;
}

.thankyou-section {
  padding  :  80px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: calc(100vh - 70px - 400px);
}

.thankyou-box {
    max-width: 800px;
   margin:        0 auto;
   background  : white;
  padding: 60px;
  border-radius:       12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    text-align: center;
}

.success-icon  {
    margin-bottom: 30px;
}

.checkmark {
   display: inline-flex;
   width: 100px;
    height: 100px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
  font-size: 3.5rem;
  align-items   :      center;
          justify-content: center;
         border-radius: 50%;
   animation: scaleIn 0.5s ease;
}@keyframes scaleIn {
    from {
        transform: scale(0);
    }
    to {
        transform: scale(1);
    }
}.thankyou-box h1  {
    font-size: 2.5rem;
       color: #2c3e50;
      margin-bottom: 15px;
}

.main-message {
   font-size: 1.1rem;
     color: #666;
    margin-bottom: 40px;
}

.details-box {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
     padding: 40px;
	 border-radius: 8px;
  margin   : 30px 0;
                    text-align: left;
  border: 2px solid #667eea10;
}

.details-box h2 {
    font-size: 1.5rem;
    color: #2c3e50;
  margin-bottom:   25px;
    text-align: center;
}

.next-steps {
   list-style: none;
}

.next-steps li
	{
   gap: 20px;
   margin-bottom: 20px;
	display: flex;
   align-items: flex-start;
}

.step-number {
	display  :      inline-flex;
    width :   40px;
  height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color     :    white;
   align-items: center;
    justify-content: center;
  border-radius: 50%;
    font-weight: bold;
   flex-shrink: 0;
}

.step-text {
    color: #555;
    line-height: 1.6;
	padding-top: 8px;
}

.info-box		{
     background: linear-gradient(135deg, #667eea10 0%, #764ba210 100%);
     padding: 30px;
   border-radius: 8px;
    margin-top: 30px;
   text-align: center; 

	}

.info-box h3 {
    color: #2c3e50;
       margin-bottom     :15px;
}

.info-box p {
               color: #666;
       line-height: 1.8;
}

.contact-phone 
 {
	 font-size    :        1.3rem;
   font-weight: 600;
  color: #667eea;
	 margin: 10px 0 20px;
}

.additional-info     {

	   font-size: 0.95rem;
  color: #999;
     }

.button-group {
   display  :   flex;
   gap: 20px;
    margin-top: 40px;
   justify-content: center;
   flex-wrap:     wrap;
}

.btn-outline {
    display: inline-block;
	background: white;
   color: #667eea;
   padding: 16px 40px;
    border-radius: 8px;
   text-decoration   :      none;
  font-weight: 600;
   transition:       all 0.3s ease;
    border: 2px solid #667eea;
}

.btn-outline:hover


{
	background  :       #667eea;
   color    : white;
  transform: translateY(-3px);
}

.resources-section {

	   padding :       80px 20px;
   background: white;


}

.resources-section h2 {
   font-size: 2.5rem;
   margin-bottom     :        50px;
   text-align: center;
   color: #2c3e50;
	
}

.resources-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.resource-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 40px;
    border-radius: 12px;
  border: 1px solid #e0e0e0;
    text-align: center;
   transition:    all 0.3s ease;
}

.resource-card:hover   {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
   border-color: #667eea;
}

.resource-card h3 {
    font-size: 1.3rem;
       color: #2c3e50;
       margin-bottom: 15px;
}

.resource-card p {
   color: #666;
    margin-bottom: 25px;
   line-height: 1.7;
}

.resource-link {
   display: inline-block;
    color   :      #667eea;
   text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
	position: relative;
}

.resource-link::after {
  content: '';

        position   :       absolute;

	 bottom: -5px;

    left: 0;

   width: 0;

   height: 2px;

    background-color: #667eea;

  transition    :     width 0.3s ease;
}

.resource-link:hover::after {

   width: 100%;

}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .services-tabs {
        gap: 10px;
    }

    .tab-button {
        padding: 12px 18px;
        font-size: 0.9rem;
    }

    .service-detail {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .detail-text h2 {
        font-size: 1.8rem;
    }

    .price-block {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .table-row {
        grid-template-columns: 1fr;
        border: 1px solid #e0e0e0;
        margin-bottom: 15px;
        border-radius: 8px;
    }

    .table-cell {
        padding: 15px;
        justify-content: flex-start;
    }

    .table-cell::before {
        content: attr(data-label);
        font-weight: 600;
        margin-right: 10px;
        min-width: 120px;
    }

    .header-row {
        display: none;
    }

    .comparison-section h2 {
        font-size: 1.8rem;
    }

    .faq-section h2 {
        font-size: 1.8rem;
    }

    .cta-services-section h2 {
        font-size: 1.8rem;
    }

    .thankyou-box {
        padding: 40px 20px;
    }

    .thankyou-box h1 {
        font-size: 1.8rem;
    }

    .checkmark {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }

    .details-box {
        padding: 25px;
    }

    .button-group {
        gap: 15px;
    }

    .btn-primary,
    .btn-outline {
        padding: 14px 25px;
        font-size: 0.95rem;
    }

    .resources-grid {
        grid-template-columns: 1fr;
    }
}@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.5rem;
    }

    .detail-text h2 {
        font-size: 1.3rem;
    }

    .detail-text h3 {
        font-size: 1.1rem;
    }

    .thankyou-box {
        padding: 30px 15px;
    }

    .button-group {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .step-text {
        font-size: 0.95rem;
    }
}.policySection {
                  padding: 80px 2rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: calc(100vh - 70px - 300px);


}

.policyContainer {
  max-width: 850px;
    margin: 0 auto;
  text-align: left;
    background: white;
  padding: 60px;
    border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}  

.policyContainer h1 {
    font-size: 2.8rem;
	    color: #2c3e50;
		margin-bottom    :      40px;
	  font-weight: 700;
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	  background-clip: text; 
	
}

.policyContainer h2 {
  font-size :   1.6rem;
	color: #2c3e50;
	margin-top    : 35px;
   margin-bottom    :       20px;
   font-weight: 700;
 border-bottom: 2px solid #667eea;
  padding-bottom: 12px;
}

.policyContainer p {
      color: #555; 
  margin-bottom    :   20px; 
    line-height: 1.9; 
  font-size: 1.05rem;
     }

.policyContainer strong {

	    color     :       #667eea;
  font-weight: 600;
}

.policyContainer ul  
  {
	      list-style: none;
  margin-bottom: 20px;
    padding-left: 20px;
	}

.policyContainer li {
  margin-bottom: 12px;
	color:     #555;
    line-height: 1.8;
   position: relative;
   padding-left: 25px;
	}

.policyContainer li::before {

	  content: '•';
   position: absolute;
   left   :    0;
  color: #667eea;
   font-weight: bold;
	font-size: 1.3rem;}@media (max-width: 1024px) {
    .policyContainer {
        padding: 50px;
    }

    .policyContainer h1 {
        font-size: 2.3rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer {
        padding: 35px;
        border-radius: 8px;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 1.4rem;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 25px;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 20px;
    }

    .policyContainer p {
        font-size: 0.95rem;
    }

    .policyContainer li {
        font-size: 0.95rem;
    }
}