* {
    margin: 0; 
  padding: 0; 
   box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
   line-height: 1.6;
   color: #2c3e50;
    background-color: #ffffff;
	
}

.navbar-main {
   background-color: #ffffff;
  box-shadow: 0 2px 8px 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-section {
  display :      flex;

	align-items: center;
}

.logo-img {
    height    :64px;
       width: auto;
}

.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;
          position: relative;
}

.nav-link:hover {
    color: #3498db;
}

.nav-link::after {


  content: '';
    position: absolute;
  -o-transition: width 0.3s ease;
   bottom: -5px;
  left: 0;
   width: 0;
  height: 2px;
    -webkit-transition     :width 0.3s ease;
  background-color     :        #3498db;
   transition: width 0.3s ease;
	}

.nav-link:hover::after {
  width: 100%;
}

.nav-burger {
  border: none;
     display: none;
  cursor: pointer;
	background: none;
  gap: 6px;
    flex-direction: column;
}

.nav-burger span {


   width: 25px;
  height: 3px;
	 background-color:      #2c3e50;
    border-radius: 2px;
   transition: all 0.3s ease;
}

.nav-burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.nav-burger.active span:nth-child(2) {
   opacity: 0;
}

.nav-burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.hero-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: #ffffff;
    padding: 100px 20px;
   text-align: center;
    min-height: 500px;
    display: flex;
   align-items: center;
  justify-content: center;
}

.hero-content {
    max-width: 700px;
   animation :       fadeInUp 0.8s ease-out;

}

.hero-content h1 {
   font-size: 54px;
    margin-bottom: 20px;
    font-weight: 700;
	line-height: 1.2;
}

.hero-subtitle{
	 font-size: 20px;
    margin-bottom: 40px;
  opacity: 0.95;
	font-weight: 300; 
	
}

.cta-button-primary


{
  display: inline-block;
  background-color: #ffffff;
  color: #667eea;
   padding: 15px 40px;
       border-radius: 50px;
        text-decoration: none;
         font-weight: 600;
 font-size: 16px;
    transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  background-color: #f8f9fa;
	
}

.section-about {

   padding: 80px 20px;
   background-color: #f8f9fa;
}

.section-container {
   max-width: 1200px;
   margin   : 0 auto;
	
}

.section-about .section-container {

	    display: grid;
   grid-template-columns: 1fr 1fr;
   gap   :  60px;
               align-items: center;
	}

.about-text h2 {
               font-size:  42px;
  margin-bottom: 30px;
          color: #2c3e50;
  line-height: 1.3;


}

.about-text p {
  font-size: 16px;
    color: #5a6c7d;
  margin-bottom: 20px;
    line-height: 1.8;
}

.about-image
{
	    border-radius  :15px; 
    overflow: hidden; 
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);

}

.about-image img {
   width:        100%;

	   height: auto;

	    display :   block;

		transition: transform 0.3s ease;
}

.about-image:hover img {
  transform: scale(1.05);
}

.section-services-preview {


	 padding  :     80px 20px;
	   background-color:   #ffffff;
}

.section-services-preview h2
{
	 font-size: 42px;
    text-align     :      center;
   margin-bottom: 60px;
  color: #2c3e50; 

}

.services-grid {

	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
   gap: 40px;
	 margin-bottom: 50px;
}

.service-card {
   background-color: #f8f9fa;
   border-radius  :    12px;
   overflow: hidden;
  transition: all 0.3s ease;
    border: 1px solid #e8ecf1;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
   border-color     :      #667eea;
}  

.service-image {
   width: 100%;
      height: 250px;
     overflow: hidden;
       background-color: #e8ecf1;
}

.service-image img {
   width: 100%;
   height: 100%;
    object-fit :    cover;
       transition: transform 0.3s ease;
}

.service-card:hover .service-image img

{
  transform: scale(1.1);
}

.service-card h3 {
     font-size: 20px;
   padding: 25px 25px 15px;
  color: #2c3e50;
    font-weight: 600;
}

.service-card p {
   padding: 0 25px 25px;
  font-size: 15px;
    color: #5a6c7d;
	line-height :        1.7;
}

.view-all-services {
  display: inline-block;
  background-color: #667eea;
   color: #ffffff;
    padding: 15px 40px;
   border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
   transition: all 0.3s ease;
    margin-top    :   20px;
     }

.view-all-services:hover  {
               background-color  :       #764ba2;
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3); 
	
}

.section-webinars {
     padding: 80px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);


}

.section-webinars h2 {
    font-size: 42px;
  text-align: center;
  margin-bottom: 20px;
   color:#2c3e50;
}

.section-intro {
  color  :       #5a6c7d;
   text-align: center;
 margin-bottom: 50px;
  font-size: 18px;
}

.webinars-list {
   display: grid;
    gap: 30px;
    max-width: 800px;
  margin:        0 auto;
}

.webinar-item
	{
        background-color: #ffffff;
   padding    :    30px;
  border-radius: 12px;
   border-left: 5px solid #667eea;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.webinar-item:hover {
  transform: translateX(10px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.2);
}

.webinar-header {
    display: flex;
   justify-content     :      space-between;
    align-items: flex-start;
          margin-bottom: 15px;
  gap: 20px;
}

.webinar-item h4 {
         font-size: 18px;
   color: #2c3e50;
	font-weight: 600;
    flex: 1;
}

.webinar-date {
  background-color: #667eea;
  color  :     #ffffff;
     padding: 8px 15px;
	 border-radius: 20px;
  font-size: 13px;
    font-weight: 600;
    white-space: nowrap;


     }

.webinar-item p {
   font-size: 15px;
   line-height: 1.7;
    color  :  #5a6c7d;
}

.section-approach {
         background-color: #ffffff;
  padding: 80px 20px;
}

.section-approach h2


{
  font-size: 42px;
               margin-bottom: 60px;
         text-align: center;
	color: #2c3e50;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.approach-item {
  border-radius: 12px;
                    transition: all 0.3s ease;
     padding: 40px 30px;
    border-top: 4px solid #667eea;
  background-color: #f8f9fa;
  text-align: center;
}

.approach-item:hover {


  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 100%);
}

.approach-item h3 {
    font-size  :      18px;
   margin-bottom: 15px;
  color: #2c3e50;
    font-weight: 600;
}

.approach-item p {
  font-size: 15px;
	color    :  #5a6c7d;
    line-height    :      1.8;
}

.section-cta {
  padding    :    80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
		text-align: center;
}

.cta-content h2 {
  font-size: 42px;
    margin-bottom :       20px;
  line-height: 1.3; 

}

.cta-content p {
   font-size  :    18px;
    margin-bottom: 40px;
    opacity: 0.95;

}

.cta-button-secondary {
  display: inline-block;
  background-color  :     #ffffff;
   color: #667eea;
   padding: 15px 45px;
	border-radius: 50px;
   text-decoration: none;
    font-weight: 600;
    font-size: 16px;
	transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-secondary:hover {
  transform: translateY(-3px);
    background-color: #f8f9fa;
    color: #764ba2;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.section-contact   {
   padding: 80px 20px;
  background-color: #f8f9fa;
}

.section-contact h2 {
    font-size     :     42px;

	  text-align   :center;

	   margin-bottom: 50px;

	  color: #2c3e50;
}

.contact-form {
    max-width: 600px;
  margin: 0 auto;
  background-color: #ffffff;
	padding     :    50px;
   border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.form-group {

		 margin-bottom: 25px;
}

.form-group label{
   display: block;
  margin-bottom: 10px;
   font-weight: 600;
  color: #2c3e50;
    font-size     :15px;
}

.form-group input,
.form-group select,
.form-group textarea {

   width: 100%;
   padding: 12px 16px;
    border   :       1px solid #e8ecf1;
   border-radius: 8px;
         font-size: 15px;
  font-family: inherit;
  color: #2c3e50;
   transition: all 0.3s ease;
    background-color: #ffffff;


}

.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);
}

.form-group textarea {
    resize  :      vertical;
        min-height: 120px;
}

.form-button {

	   width: 100%;
    padding: 14px 0;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
      color: #ffffff;
  border: none;
  border-radius: 8px;
      font-weight: 600;
	font-size: 16px;
   cursor    :  pointer;
    transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);

}

.form-button:hover {

  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
	} 

.form-button:active {
  transform: translateY(0);
}

.footer-main {
       background-color: #2c3e50;
    color: #ffffff;
	padding: 60px 20px 20px;
}

.footer-container {

		 max-width:  1200px;
      margin :       0 auto;
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap     :     50px;
     margin-bottom: 40px;


}

.footer-logo-section {
   display: flex; 
  align-items: flex-start;


}

.footer-logo {
	    height: 86px; 
		width: auto; 
	  filter: brightness(0) invert(1);


}

.footer-info {
				 display   :   grid;
          grid-template-columns: 1fr 1fr;
   gap: 30px;
}

.footer-address h4,
.footer-phone h4,
.footer-navigation h4

{
     font-size: 16px;
	  margin-bottom    :       15px;
	  font-weight: 600;
	}

.footer-address p,
.footer-phone p


{


    font-size: 14px; 
	  color: #bdc3c7; 
	   line-height: 1.8;
}

.footer-navigation ul {
  list-style: none;

} 

.footer-navigation li

{
  margin-bottom: 12px;
	
}

.footer-navigation a {
      color: #bdc3c7;
  text-decoration: none;
   font-size: 14px;
    transition: color 0.3s ease;
}

.footer-navigation a:hover {
  color: #667eea;
}

.footer-bottom {
	       max-width: 1200px;
    margin: 0 auto;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   text-align: center;
     color: #bdc3c7;
	font-size: 13px;


}@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .nav-burger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid #e8ecf1;
    }

    .nav-menu.active .nav-link {
        display: block;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-about .section-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-text h2 {
        font-size: 32px;
    }

    .section-services-preview h2,
    .section-approach h2,
    .section-webinars h2,
    .section-contact h2,
    .section-cta h2 {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }

    .nav-logo-section {
        flex: 1;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }
}@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .about-text h2,
    .section-services-preview h2,
    .section-approach h2,
    .section-webinars h2,
    .section-contact h2,
    .section-cta h2 {
        font-size: 26px;
    }

    .contact-form {
        padding: 20px 15px;
    }

    .webinar-header {
        flex-direction: column;
        gap: 10px;
    }

    .webinar-date {
        align-self: flex-start;
    }
}

.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 20px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L288,112C576,128,1152,160,1440,160C1728,160,2016,128,2304,122.7C2592,117,2880,139,3168,144C3456,149,3744,139,4032,128C4320,117,4608,107,4896,112C5184,117,5472,139,5760,144C6048,149,6336,139,6624,128C6912,117,7200,107,7488,112C7776,117,8064,139,8352,149.3C8640,160,8928,160,9216,154.7C9504,149,9792,139,10080,138.7C10368,139,10656,149,10944,149.3C11232,149,11520,139,11808,144C12096,149,12384,171,12672,165.3C12960,160,13248,128,13536,112C13824,96,14112,96,14400,96L14688,96L14688,320L14400,320C14112,320,13824,320,13536,320C13248,320,12960,320,12672,320C12384,320,12096,320,11808,320C11520,320,11232,320,10944,320C10656,320,10368,320,10080,320C9792,320,9504,320,9216,320C8928,320,8640,320,8352,320C8064,320,7776,320,7488,320C7200,320,6912,320,6624,320C6336,320,6048,320,5760,320C5472,320,5184,320,4896,320C4608,320,4320,320,4032,320C3744,320,3456,320,3168,320C2880,320,2592,320,2304,320C2016,320,1728,320,1440,320C1152,320,576,320,288,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.hero-overlay {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 0.8s ease-out;
}

.services-hero h1 {
    font-size: 54px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.services-hero p {
    font-size: 20px;
    opacity: 0.95;
    font-weight: 300;
}

.services-main {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detailed {
    margin-bottom: 80px;
    background-color: #f8f9fa;
    border-radius: 15px;
    padding: 50px;
    border: 1px solid #e8ecf1;
    transition: all 0.3s ease;
}

.service-detailed:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 30px;
    flex-wrap: wrap;
}

.service-detail-header h2 {
    font-size: 36px;
    color: #2c3e50;
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.service-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.service-detail-reverse {
    direction: rtl;
}

.service-detail-reverse > * {
    direction: ltr;
}

.service-image-block {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image-block img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.service-detailed:hover .service-image-block img {
    transform: scale(1.08);
}

.service-description h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.service-description p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    font-size: 15px;
    color: #5a6c7d;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 18px;
}

.service-details-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #e8ecf1;
}

.info-item h4 {
    font-size: 13px;
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.info-item p {
    font-size: 14px;
    color: #2c3e50;
    font-weight: 500;
}

.services-packages {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.services-packages h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.package-card {
    background-color: #ffffff;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.package-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.package-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 600;
}

.package-price {
    font-size: 14px;
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.package-card.professional {
    border-color: #667eea;
    transform: scale(1.02);
}

.package-card.professional:hover {
    transform: scale(1.02) translateY(-10px);
}

.package-card.professional::before {
    content: 'POPULARNE';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
}

.package-list {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

.package-list li {
    font-size: 14px;
    color: #5a6c7d;
    padding-left: 25px;
    position: relative;
    margin-bottom: 12px;
    line-height: 1.6;
}

.package-list li::before {
    content: '•';
    position: absolute;
    left: 8px;
    color: #667eea;
    font-size: 20px;
}

.package-note {
    font-size: 13px;
    color: #667eea;
    font-style: italic;
    margin-top: 20px;
}

.packages-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.packages-info p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
}

.services-faq {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-faq h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.faq-items {
    display: grid;
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #667eea;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 12px 30px rgba(102, 126, 234, 0.15);
    border-left-color: #764ba2;
}

.faq-item h4 {
    font-size: 17px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
}

.services-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.cta-center h2 {
    font-size: 42px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.cta-center p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-button-large {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 16px 50px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button-large:hover {
    transform: translateY(-3px);
    background-color: #f8f9fa;
    color: #764ba2;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.thankyou-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 100px 20px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.thankyou-container {
    animation: fadeInUp 0.8s ease-out;
}

.thankyou-icon {
    margin-bottom: 30px;
}

.thankyou-icon svg {
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.2));
}

.thankyou-hero h1 {
    font-size: 54px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.thankyou-subtitle {
    font-size: 20px;
    opacity: 0.95;
    font-weight: 300;
}

.thankyou-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.thankyou-text {
    max-width: 900px;
    margin: 0 auto;
}

.content-block h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    margin-top: 0;
}

.content-block p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.timeline-section {
    margin-bottom: 60px;
}

.timeline-section h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
}

.timeline-item {
    position: relative;
    padding-left: 100px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.timeline-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.timeline-content p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.info-section {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
    border: 1px solid #e8ecf1;
}

.info-section h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-section p {
    margin-bottom: 25px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.detail-item h4 {
    font-size: 15px;
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.detail-item p {
    font-size: 16px;
    color: #2c3e50;
    font-weight: 500;
    line-height: 1.8;
    margin: 0;
}

.suggestions-section {
    margin-bottom: 60px;
}

.suggestions-section h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 600;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.suggestion-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e8ecf1;
    transition: all 0.3s ease;
}

.suggestion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #667eea;
}

.suggestion-card h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.suggestion-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.suggestion-link {
    display: inline-block;
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.suggestion-link::after {
    content: '→';
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.suggestion-link:hover {
    color: #764ba2;
}

.suggestion-link:hover::after {
    margin-left: 12px;
}

.faq-section-thankyou {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.faq-section-thankyou h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.faq-items-thankyou {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item-thankyou {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid #667eea;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-item-thankyou:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-top-color: #764ba2;
}

.faq-item-thankyou h4 {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 600;
}

.faq-item-thankyou p {
    font-size: 14px;
    color: #5a6c7d;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 36px;
    }

    .services-hero p {
        font-size: 16px;
    }

    .service-detail-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .service-detail-header h2 {
        font-size: 28px;
    }

    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detail-reverse {
        direction: ltr;
    }

    .service-details-info {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .services-packages h2,
    .services-faq h2,
    .services-cta h2 {
        font-size: 32px;
    }

    .services-faq h2 {
        font-size: 32px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.professional {
        transform: scale(1);
    }

    .package-card.professional:hover {
        transform: translateY(-10px);
    }

    .service-detailed {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 28px;
    }

    .services-hero p {
        font-size: 14px;
    }

    .service-detail-header h2 {
        font-size: 22px;
    }

    .service-badge {
        padding: 8px 15px;
        font-size: 11px;
    }

    .service-description h3 {
        font-size: 18px;
    }

    .thankyou-hero h1 {
        font-size: 28px;
    }

    .thankyou-subtitle {
        font-size: 16px;
    }

    .content-block h2 {
        font-size: 24px;
    }

    .timeline-section h3,
    .info-section h3,
    .suggestions-section h3 {
        font-size: 18px;
    }

    .timeline::before {
        left: 12px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-number {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }

    .suggestions-grid {
        grid-template-columns: 1fr;
    }

    .faq-items-thankyou {
        grid-template-columns: 1fr;
    }
}.policy-hero     {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
          color: #ffffff;
       padding: 100px 20px;
    min-height: 350px;
    display     :      flex;
   align-items     :      center;
   justify-content     :      center;
   text-align: center;
}

.policy-hero-content {
    max-width: 700px;
   animation: fadeInUp 0.8s ease-out; 

}

.policy-hero h1   {


    font-size: 54px;

	   margin-bottom: 20px;

	   font-weight: 700;

	   line-height: 1.2;
	}

.policy-hero p {
	    opacity: 0.95;
    font-weight     :      300;
   font-size: 20px;
}

.policySection {
  padding: 80px 2rem;
      background: #f8f9fa;
}

.policyContainer {
   max-width:       800px;
   margin: 0 auto;
    text-align: left;
}

.policyContainer h2 {
       font-size: 28px;
   color: #2c3e50;
 margin-bottom: 20px;
   margin-top: 40px;
	font-weight    :   700;
   line-height: 1.3;
}

.policyContainer h2:first-child
{
  margin-top   :0;
}

.policyContainer p {
	color: #5a6c7d;
   margin-bottom: 20px;
    line-height: 1.8;
    font-size: 16px;
}@media (max-width: 768px) {
    .policy-hero h1 {
        font-size: 36px;
    }

    .policy-hero p {
        font-size: 16px;
    }

    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h2 {
        font-size: 22px;
        margin-top: 30px;
    }

    .policyContainer p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .policy-hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .policy-hero h1 {
        font-size: 28px;
    }

    .policy-hero p {
        font-size: 14px;
    }

    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer h2 {
        font-size: 18px;
        margin-top: 25px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 14px;
        margin-bottom: 15px;
        line-height: 1.7;
    }
}