* {
    margin :   0;
    padding: 0;
   box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
   color    :#2c3e50;
   background-color  :       #f8f9fa;
    line-height    :1.6;
}

.section-container {
    max-width: 1200px;

		margin: 0 auto;

	  padding: 0 20px;
}

.site-header {
   background-color    :       #ffffff;
  border-bottom: 2px solid #e8eef7;
	 position: sticky;
   top: 0;
    z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header-container {
   display: flex;
  justify-content: space-between;
	align-items: center;
    max-width: 1200px;
    margin   :   0 auto;
 padding: 15px 20px;
	
}

.logo-section {

	flex    :0 0 auto;

}

.logo {
    height   : 50px;
   width    :   auto;
   display     : block;
}

.main-nav {
		 flex:     1;
	 display: flex;
   justify-content: center;
}

.nav-menu {
  display: flex;
    list-style: none;
   gap: 40px;
}

.nav-link {
    text-decoration   :      none;
    color: #2c3e50;
  font-weight: 500;
	 font-size     :       16px;
   transition: color 0.3s ease;
  border-bottom  :        2px solid transparent;
         padding-bottom     :        5px;
}

.nav-link:hover

{
    color     :  #3498db;
                    border-bottom-color: #3498db;
}

.burger-menu {
   display: none;
   flex-direction: column;
   background: none;
    border: none;
     cursor  : pointer;
    gap: 6px;
   padding: 5px;
}

.burger-menu span {
    width: 25px;
  height: 3px;
   background-color: #2c3e50;
   border-radius: 2px;
    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(7px, -7px);
}

.mobile-menu {
  display: none;
    background-color: #ffffff;
	 border-bottom: 2px solid #e8eef7;
    padding: 20px;
   position: absolute;
    width: 100%;
     top     :   80px;
    left: 0;
}

.mobile-menu.active {
   display: block;
}

.mobile-nav-list {
      list-style: none;
  display: flex;
   flex-direction: column;
  gap: 15px;
}

.mobile-nav-link
{
    text-decoration: none;
   color     :      #2c3e50;
    font-weight: 500;
  font-size: 16px;
    display: block;
   padding    :10px 0;
   border-left    :     3px solid transparent;
   padding-left: 15px;
  transition: all 0.3s ease;
}

.mobile-nav-link:hover {

   color: #3498db;
	 border-left-color: #3498db;

}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: #ffffff;
	padding: 100px 20px;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
  font-weight: 700;
   margin-bottom     :      20px;
    line-height: 1.2;
}

.hero-subtitle {
   font-size: 18px;
       margin-bottom: 40px;
     opacity: 0.95;
      max-width     :        700px;
       margin-left  :    auto;
       margin-right: auto;
}

.cta-button {
    color: #ffffff;
       display: inline-block;
     border-radius     :    50px;
    transition: all 0.3s ease;
       font-weight  :     600;
       background-color: #f39c12;
     padding : 14px 40px;
      font-size: 16px;
      border: 2px solid #f39c12;
     text-decoration: none;
}

.cta-button:hover {
    background-color: transparent;
   color: #f39c12;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.about-intro {
    padding     : 80px 20px;
    background-color: #ffffff;
}  

.about-intro h2   {
    font-size: 36px;
   text-align: center;
   margin-bottom: 50px;
                    color: #2c3e50;
}

.features-grid {

	    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap   :      30px;


	}

.feature-card {
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left    :   4px solid #3498db;
  background-color     : #f8f9fa;
  border-radius: 8px;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    color: #2c3e50;
  margin-bottom    : 15px;
  font-size: 20px;
}

.feature-card p {
  color: #555555;
  font-size: 14px;
			line-height:   1.7;
}

.showcase-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.showcase-section h2 {
    font-size: 36px;
  text-align: center;
       margin-bottom: 50px;
   color: #2c3e50;
}

.programs-gallery {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.program-item {

  background-color : #ffffff; 
	   border-radius: 8px; 
	    overflow     :   hidden; 
	  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08); 
	  transition: transform 0.3s ease, box-shadow 0.3s ease;


}

.program-item:hover    {
	  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

}

.program-item img {
      width: 100%;
   height: 220px;
   object-fit     :        cover;
    display: block;

}

.program-item h3 {
    padding  :       20px 20px 10px 20px;
	margin: 0;
	 color: #2c3e50;
   font-size: 20px;
}

.program-item p {
    font-size: 14px;
  color: #666666;
	padding     : 0 20px 20px 20px;
    margin: 0;
   line-height : 1.6;
}

.conference-section
{
  padding: 80px 20px;
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
   color:      #ffffff;
}

.conference-content h2 {
  font-size: 36px;
	 margin-bottom: 20px;
}

.conference-content > p {
               font-size     :    16px;
   margin-bottom: 40px;
    line-height: 1.7;
   max-width: 700px;

}

.conference-features {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
	margin-top: 40px;
	
}

.conf-feature {

	  background-color: rgba(255, 255, 255, 0.1);

	 padding: 25px;

	               border-radius: 8px;

	  border: 1px solid rgba(255, 255, 255, 0.2);

}

.conf-feature strong {
    display    :  block;
    font-size: 18px;
    margin-bottom: 10px;
	
}

.conf-feature span {
  display: block;
    font-size: 14px;
  opacity: 0.95;
}

.cta-booking {
     text-align: center;
    background-color: #ecf0f1;
   padding: 80px 20px;
}

.cta-booking h2		{
  color   :   #2c3e50;
  font-size: 36px;
    margin-bottom: 20px;
}

.cta-booking > div > p
{
   font-size: 16px;
   color :      #555555;
  margin-bottom: 30px;
   max-width: 600px;
    margin-left: auto;
  margin-right: auto;
} 

.cta-button-large  
  {
        display: inline-block;
    background-color: #e74c3c;
    color     :  #ffffff;
  padding: 16px 50px;
  border-radius: 50px;
   text-decoration     :        none;
    font-weight: 600;
    font-size: 17px;
  transition: all 0.3s ease;
	border: 2px solid #e74c3c;
}

.cta-button-large:hover {
	 background-color: transparent; 
	    color: #e74c3c; 
	  transform: scale(1.05);
}

.contact-section {
   background-color: #ffffff;
		 padding: 80px 20px;


}

.contact-section h2 {
  font-size: 36px;
    margin-bottom: 50px;
   color: #2c3e50;
  text-align     :center;
}

.contact-wrapper {
  max-width: 600px;
    margin: 0 auto;
  background-color: #f8f9fa;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.contact-form {
   display: flex;
   flex-direction: column;
   gap: 20px;
}

.form-group {
   display  :flex;
        flex-direction: column; 
	
}

.form-group label {
   font-weight: 600;
	margin-bottom: 8px;
   color: #2c3e50;
  font-size: 14px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 15px;
    border: 1px solid #ddd;
  border-radius   :    6px;
   font-family: inherit;
   font-size: 14px;
    transition: border-color 0.3s ease;
  color:       #2c3e50;
}



.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus


{
        outline: none;
    border-color: #3498db;
  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.submit-button {
   padding: 14px 30px;
   background-color: #3498db;
	 color    :  #ffffff;
          border: none;
    border-radius   : 6px;
    font-weight: 600;
  font-size: 16px;
   cursor: pointer;
  transition: all 0.3s ease;
   margin-top: 10px;
}

.submit-button:hover {
    background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(52, 152, 219, 0.3);
	
}

.site-footer {
    background-color : #2c3e50;
   color: #ecf0f1;
    padding: 60px 20px 30px 20px;
}

.footer-container

{
    max-width:    1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
         gap: 40px;
    margin-bottom: 40px;
}

.footer-brand {

	   display: flex;
    align-items  :     flex-start;


     }



.footer-logo		{
                    height: 50px;
	width: auto;
  filter: brightness(0) invert(1);
	
}

.footer-info h3,
.footer-nav h3,
.footer-legal h3 {
   	font-size:    16px;
  margin-bottom: 15px;
  color: #ffffff;
}

.footer-info p {
  font-size:14px;
    margin-bottom     :  10px;
  line-height: 1.6;
}

.footer-nav ul	{
   list-style: none;
}

.footer-nav li {
      margin-bottom: 10px;
	
}

.footer-nav a {
   color: #bdc3c7;
  text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #3498db;
} 

.footer-legal p {
    margin-bottom: 8px; 
  font-size: 13px; 
   color: #95a5a6;
}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .main-nav {
        display: none;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .about-intro h2,
    .showcase-section h2,
    .conference-section h2,
    .cta-booking h2,
    .contact-section h2 {
        font-size: 28px;
    }

    .features-grid,
    .programs-gallery,
    .conference-features {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        padding: 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-link {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 12px 15px;
    }

    .logo {
        height: 40px;
    }

    .hero-section {
        padding: 60px 15px;
    }

    .hero-content h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .cta-button,
    .cta-button-large {
        padding: 12px 30px;
        font-size: 14px;
    }

    .about-intro,
    .showcase-section,
    .conference-section,
    .cta-booking,
    .contact-section {
        padding: 50px 15px;
    }

    .about-intro h2,
    .showcase-section h2,
    .conference-section h2,
    .cta-booking h2,
    .contact-section h2 {
        font-size: 22px;
        margin-bottom: 30px;
    }

    .feature-card,
    .conf-feature {
        padding: 20px;
    }

    .feature-card h3,
    .program-item h3 {
        font-size: 18px;
    }

    .program-item img {
        height: 180px;
    }

    .contact-wrapper {
        padding: 20px;
    }
}.services-hero {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color    :     #ffffff;
   padding: 80px 20px;
  text-align: center;
}

.services-hero h1 {

  font-size: 44px;
         font-weight: 700;
   margin-bottom: 20px;
  line-height: 1.2;
	}

.hero-intro {
    font-size: 18px;
  opacity: 0.95;
   max-width: 700px;
    margin: 0 auto;
}

.services-overview {
	 padding: 80px 20px;
  background-color: #f8f9fa;
}

.services-overview h2 {
	 font-size: 36px;
   text-align: center;
     margin-bottom   :      50px;
   color: #2c3e50;
}

.services-categories	{
	display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.category-item {
  background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
  border-top :4px solid #3498db;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.category-item:hover {
  transform: translateY(-5px);
	  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.category-item h3 {
    color: #2c3e50;
  font-size: 20px;
   margin-bottom     :    15px;
}

.category-item p {
           color: #666666;
  font-size: 14px;
   line-height: 1.6;}  

.detailed-services {
     padding: 80px 20px;
    background-color: #ffffff;
}

.detailed-services h2 {
    font-size: 36px;

	text-align: center;

	 margin-bottom: 60px;

    color :     #2c3e50;

}

.service-detail {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 50px;
      margin-bottom: 70px;
   align-items: center;
}

.service-detail.alternate {
    grid-template-columns    :    1fr 1fr;
}

.service-detail.alternate .service-img-wrapper {
  order: 2;

}

.service-detail.alternate .service-content {
    order: 1;
}

.service-img-wrapper {
    overflow: hidden; 
	          border-radius  :  8px; 
	  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-img-wrapper img {
    width: 100%;
    height: 350px;
          object-fit: cover;
    display: block;
	transition: transform 0.4s ease;
}

.service-img-wrapper:hover img {
  transform: scale(1.05);
}

.service-content h3 {
    font-size: 28px; 
    color     :        #2c3e50; 
    margin-bottom: 20px;
}

.service-content > p {
  font-size: 15px;
    color: #555555;
	 line-height: 1.7;
  margin-bottom: 20px;
}

.service-content h4

{
   font-size: 16px;
    color: #2c3e50;
    margin-top: 20px;
	margin-bottom: 15px;
  font-weight     : 600;
}

.service-list {
               list-style     :        none;
  margin-bottom: 20px;
}

.service-list li {

		padding: 8px 0 8px 25px;
  color: #555555;
    font-size: 14px;
  position: relative;
	line-height: 1.6;
     }

.service-list li:before {
  content: "•";
   position: absolute;
   left: 0;
	color: #3498db;
    font-weight: bold;
   font-size     :       18px;
}

.service-info {
  background-color: #ecf0f1;
  font-size: 13px;
   padding: 15px 20px;
    color: #2c3e50;
    margin-top: 20px;
	border-radius: 6px;

}

.service-info strong
{
  color: #34495e;
}

.pricing-section {
   padding: 80px 20px;
  background: linear-gradient(135deg, #ecf0f1 0%, #f8f9fa 100%);
}

.pricing-section h2 {

	  font-size: 36px;
  text-align:        center;
  margin-bottom: 15px;
        color: #2c3e50;
     }

.pricing-intro {
   text-align: center;
	font-size  : 16px;
    color: #555555;
   margin-bottom: 50px;
   max-width: 600px;
	margin-left: auto;
    margin-right: auto;
}

.pricing-cards {
          display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap:    30px;
}

.pricing-card		{
    background-color: #ffffff;
  padding: 40px 30px;
   border-radius :        8px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border 0.3s ease;
   border: 2px solid transparent;
}

.pricing-card:hover {

	  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
	}

.pricing-card.featured {
                    border-color: #3498db;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-5px);
}

.pricing-card h3 {
   font-size: 22px;
  color: #2c3e50;
  margin-bottom: 15px; 

}

.price {
    font-size: 32px;
	color: #3498db;
  font-weight: 700;
  margin: 20px 0; 
	
}

.pricing-list  
  {
  list-style: none;
    text-align: left;
    margin    :  30px 0;
}

.pricing-list li {
  padding: 10px 0;
    color: #555555;
   font-size: 14px;
  border-bottom: 1px solid #ecf0f1;
   line-height     :       1.6;

}

.pricing-list li:last-child {
		border-bottom: none;


}


.process-section

{
    padding: 80px 20px;
   background-color: #ffffff;
}

.process-section h2 {

    font-size   :       36px;
  text-align: center;
    margin-bottom: 60px;
   color    :      #2c3e50; 
	
     }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.step {
	  text-align    :        center;

	   padding: 30px 20px;

	  background-color: #f8f9fa;

	   border-radius  :       8px;

	    transition: all 0.3s ease;}

.step:hover {
	background-color: #ecf0f1;
  transform: translateY(-5px);
}

.step-number
{
	 width: 60px; 
	  height: 60px; 
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
	   color: #ffffff; 
	    font-size: 28px; 
	    font-weight: 700; 
		 border-radius: 50%; 
	   display: flex; 
	    align-items  :       center; 
	  justify-content: center; 
	   margin: 0 auto 20px auto; 
	  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

.step h3 {
	 font-size: 18px;
   color: #2c3e50;
   margin-bottom: 15px;
}

.step p {
    font-size: 14px;
  color: #666666;
	line-height: 1.6;
}

.cta-services {

	  padding: 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: #ffffff;
  text-align: center;}

.cta-services h2 {
    font-size:     36px; 
	   margin-bottom  :    20px;
}

.cta-services p {
   font-size: 16px;
	margin-bottom: 30px;
       max-width: 600px;
   margin-left: auto;
   margin-right: auto;
    opacity: 0.95;
}

.thank-you-section {
		padding: 100px 20px;
  background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
   color     :   #ffffff;
  min-height: 60vh;
	 display: flex;
   align-items: center;

}

.thank-you-content {
    text-align: center;
	 max-width: 700px;
   margin: 0 auto; 
	
}

.success-icon {
    width :     100px;
         height   :       100px;
    margin: 0 auto 30px auto;
}

.success-icon svg {
    width: 100%;
   height  :        100%;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
}



.thank-you-content h1 {
  font-size: 48px;
      margin-bottom: 10px;
   font-weight: 700;
}

.thank-you-subtitle {
	   font-size: 20px;
   opacity: 0.95;
  margin-bottom  :   30px;
     }

.thank-you-message   {
  background-color: rgba(255, 255, 255, 0.1);
          padding: 30px;
   border-radius: 8px;
   margin-bottom: 40px;
  backdrop-filter: blur(10px);
     }

.thank-you-message p {
   font-size: 15px;
  line-height: 1.7;
 margin-bottom: 15px;
    opacity    :   0.95;
}

.thank-you-message p:last-child {
	margin-bottom: 0;
}

.next-steps {
  background-color: rgba(255, 255, 255, 0.15);
  padding: 30px;
    border-radius: 8px;
   margin-bottom: 40px;
}

.next-steps h2 {
	  font-size: 20px;
    margin-bottom: 20px;
     }

.steps-list {
   list-style: none;
	text-align: left;
}

.steps-list li {
  padding    :    10px 0 10px 30px;
    font-size   :    14px;
     position: relative;
  line-height: 1.6; 
	
}

.steps-list li:before {


  content: "→";
   position: absolute;
   left: 0;
  color: #ffffff;
  font-weight: bold;
}

.return-links {
                    display: flex;
  gap: 20px;
  justify-content: center;
     flex-wrap: wrap;
}  

.link-button {
  display: inline-block;
  padding: 14px 40px;
    background-color     : #ffffff;
    color: #2ecc71;
   text-decoration: none;
   border-radius: 50px;
 font-weight: 600;
  font-size: 16px;
         transition: all 0.3s ease;
  border: 2px solid #ffffff;
}

.link-button:hover	{
  background-color: transparent;
   color: #ffffff;
  transform: translateY(-2px);
}

.link-button.secondary {

	    background-color: transparent;
	 color: #ffffff;
   border-color  :      #ffffff;

}

.link-button.secondary:hover {
   background-color  :   #ffffff;
	color: #2ecc71;
}

.why-choose-us {

	    background-color: #f8f9fa;
  padding: 80px 20px;
	}

.why-choose-us h2 {
   font-size: 36px;
   text-align     :center;
    margin-bottom     :  50px;
  color: #2c3e50;
}

.info-boxes {

   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
 gap: 30px;
     }

.info-box {
	background-color: #ffffff;
  padding: 35px;
	border-radius: 8px;
      border-left: 4px solid #3498db;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.info-box h3

{
   font-size: 20px;
   color: #2c3e50;
   margin-bottom: 15px;
}

.info-box p {
      font-size: 14px;
  color: #666666;
    line-height    :  1.7;}

.explore-more


{
   padding: 80px 20px;
    background-color     :    #ffffff;
}

.explore-more h2 {

		color  :     #2c3e50;
  text-align: center;
    font-size: 36px;
  margin-bottom: 50px;


}

.explore-cards {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
	
}

.explore-card {
     background-color     :       #f8f9fa;
    padding: 30px;
	-moz-transition: all 0.3s ease;
   border-radius: 8px;
	border-top: 4px solid #3498db;
 -o-transition: all 0.3s ease;
        -webkit-transition: all 0.3s ease;
         transition:all 0.3s ease;


}

.explore-card:hover {
  transform: translateY(-5px); 
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.explore-card h3 {
    font-size: 20px;
  color: #2c3e50;
    margin-bottom: 15px;
}

.explore-card p {
  font-size: 14px;
  color: #666666;
    line-height: 1.6;
   margin-bottom: 20px;
}

.card-link {

  display: inline-block;
  color: #3498db;
    text-decoration: none;
   font-weight: 600;
   font-size: 14px;
   transition: all 0.3s ease;
   border-bottom: 2px solid transparent;
     }

.card-link:hover {
  border-bottom-color: #3498db;
   color: #2980b9;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 32px;
    }

    .services-overview h2,
    .detailed-services h2,
    .pricing-section h2,
    .process-section h2,
    .cta-services h2,
    .why-choose-us h2,
    .explore-more h2 {
        font-size: 28px;
    }

    .service-detail,
    .service-detail.alternate {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail.alternate .service-img-wrapper,
    .service-detail.alternate .service-content {
        order: auto;
    }

    .service-img-wrapper img {
        height: 300px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }

    .return-links {
        flex-direction: column;
        gap: 15px;
    }

    .link-button {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 50px 15px;
    }

    .services-hero h1 {
        font-size: 24px;
        margin-bottom: 15px;
    }

    .hero-intro {
        font-size: 14px;
    }

    .services-overview,
    .detailed-services,
    .pricing-section,
    .process-section,
    .cta-services,
    .why-choose-us,
    .explore-more {
        padding: 50px 15px;
    }

    .services-categories,
    .pricing-cards,
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-content h3 {
        font-size: 20px;
    }

    .price {
        font-size: 28px;
    }

    .thank-you-section {
        padding: 60px 15px;
        min-height: 50vh;
    }

    .success-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .thank-you-content h1 {
        font-size: 32px;
        margin-bottom: 8px;
    }

    .thank-you-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .thank-you-message,
    .next-steps {
        padding: 20px;
        margin-bottom: 25px;
    }

    .thank-you-message p {
        font-size: 13px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .explore-card,
    .info-box {
        padding: 20px;
    }
}.policy-hero {
	  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
  color: #ffffff;
  padding: 80px 20px;
   text-align: center;
	margin-bottom: 0;
}

.policy-hero h1 {
   font-size: 44px;
    font-weight :700;
    margin-bottom: 20px;
  line-height: 1.2;
}

.policy-section {
  padding: 80px 2rem;
  background: #f8f9fa;

}

.policy-container

{
   max-width:800px;
  margin: 0 auto;
 text-align: left;
}

.policy-container h2 {
	               font-size: 28px;
   color: #2c3e50;
  margin-bottom: 1.5rem;
    margin-top: 2rem;
			font-weight: 700;
	}

.policy-container h2:first-child {
   margin-top: 0;
}

.policy-container p {
   color: #555555;
    margin-bottom: 1.5rem;
   line-height: 1.8;
    font-size: 15px;
}

.policy-container p:last-child {
    margin-bottom: 0;
}@media (max-width: 768px) {
    .policy-hero {
        padding: 60px 20px;
    }

    .policy-hero h1 {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .policy-section {
        padding: 60px 1rem;
    }

    .policy-container h2 {
        font-size: 24px;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policy-container p {
        font-size: 14px;
        margin-bottom: 1.2rem;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 50px 15px;
    }

    .policy-hero h1 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .policy-section {
        padding: 40px 15px;
    }

    .policy-container {
        max-width: 100%;
    }

    .policy-container h2 {
        font-size: 20px;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .policy-container p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 1rem;
    }
}