* {
    margin: 0;
    padding    :    0;
  box-sizing: border-box;
}

html {
   scroll-behavior: smooth;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     line-height: 1.6;
	color: #2c3e50;
    background-color: #fff;
}

.navbar {
    background-color:  #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
   position: sticky;
  top    :       0;
    z-index: 1000;
}

.nav-container {
	    height: 70px;
    max-width: 1200px;
 display: flex;
  justify-content: space-between;
  margin: 0 auto;
    padding: 0 20px;
    align-items: center;
}

.nav-logo img {
      height: 64px;
    width: auto;
	}

.nav-menu {
   gap: 40px;
   display: flex;
  list-style: none;
}

.nav-item {
  margin    :        0;
}

.nav-link {
    text-decoration    :     none;

	    color: #2c3e50;

			 font-weight: 500;

	       transition   :      color 0.3s ease;

		padding: 8px 0;

	    border-bottom: 2px solid transparent;
}

.nav-link:hover {
          color: #3498db;
    border-bottom-color: #3498db;
}

.burger-menu {
	display: none;
  flex-direction: column;
   cursor: pointer;
                    gap: 6px;

}

.burger-line {
   width: 25px;
	 height : 3px;
  background-color: #2c3e50;
    transition: all 0.3s ease;
}

.burger-menu.active .burger-line:nth-child(1) {
  transform: rotate(45deg) translateY(15px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity :   0;
}

.burger-menu.active .burger-line:nth-child(3) {
  transform: rotate(-45deg) translateY(-15px);
}

.hero 
 {
   display: grid;
    grid-template-columns: 1fr 1fr;
   gap: 60px;
    align-items: center;
  max-width: 1200px;
   margin     :0 auto;
  padding: 100px 20px;
	
}

.hero-content {
               display: flex;
   flex-direction: column;
   gap: 30px;
	
}

.hero-title {
   	 font-size: 48px;
  font-weight: 700;
    line-height: 1.2;
   color: #1a2332;}

.hero-subtitle {
   font-size: 18px;
  color: #555;
   line-height: 1.8;
}

.hero-btn{
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding  :      15px 40px;
	border-radius: 50px;
   text-decoration   :  none;
  font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
   width:    fit-content;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.hero-btn:hover {
  transform: translateY(-3px);

	  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

.hero-image

{
 position  :      relative;
	 border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-image img {
  width: 100%;
 height: auto;
   display: block;
}  

.section-why {

	   background-color: #f8f9fa;
   padding  :     100px 20px;
}

.section-container {
	max-width: 1200px;
   margin: 0 auto;
}

.section-title {
    font-size   :        42px;
    font-weight: 700;
    text-align: center;
  margin-bottom:      60px;
    color     : #1a2332;
}

.why-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}  

.why-card {
	background: white;
  padding: 40px;
   border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-top: 4px solid #667eea;
}

.why-card:hover {
     transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);}

.why-card-title {
   font-size: 20px;
                    font-weight: 600;
        margin-bottom: 15px;
    color: #2c3e50;
}

.why-card-text {
                    font-size: 15px;
	   color     : #666;
	  line-height: 1.8;
}

.section-portfolio

{
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: center;
    max-width    :      1200px;
  margin: 0 auto;
  padding: 100px 20px;
}

.portfolio-image {
    border-radius: 20px;
	 overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.portfolio-image img {
   width   :  100%;
    height: auto;
   display: block;
}

.portfolio-content {
    display: flex;
	flex-direction: column;
    gap: 30px;

}

.portfolio-title {
  font-size: 42px;
   font-weight: 700;
	color: #1a2332;
}

.portfolio-text {

	   font-size: 16px;
    color: #555;
   line-height: 1.8;
     }

.portfolio-list {
	  gap :        15px;
          flex-direction: column;
    display: flex;


     }

.portfolio-item {
  gap   :   15px;
    display: flex;
    font-size: 15px;
  color: #2c3e50;
     align-items    : center;


}

.portfolio-icon {
  color: #667eea;
  font-size: 20px;
   flex-shrink: 0;
}

.section-services {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   padding: 100px 20px;
  color: white;
}

.services-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.section-services .section-title {
  color: white;
}

.service-box {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
   padding    :    40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
    text-align: center; 
	
}

.service-box:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.15);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
	
}

.service-title {

	   font-size: 22px;
   font-weight: 600;
    margin-bottom     :       15px;
	
	}

.service-desc
{
  font-size: 15px;
  line-height: 1.8;
   opacity: 0.95;
}

.section-workshop {
	max-width: 1200px;
    display: grid;
  align-items: center;
  gap :   60px;
  padding: 100px 20px;
   grid-template-columns: 1fr 1fr;
    margin: 0 auto;
}

.workshop-image {
   border-radius  : 20px;

  overflow  :       hidden;

  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);

  order:      2;
} 

.workshop-image img {
   height: auto;
   display :block;
  width: 100%;
	}

.workshop-content {
  order: 1;
	display: flex;
    flex-direction: column;
   gap: 30px;
}



.workshop-title {

   font-size: 42px;
  color    :  #1a2332;
   font-weight: 700;


}

.workshop-intro {
    font-size   :        16px;

	   color: #555;

	   line-height: 1.8; 

}

.workshop-benefits   {

   display:   flex;
    flex-direction: column;
  gap: 20px;
} 

.benefit-row{
	 display: flex;
    gap: 20px;
   align-items: flex-start;
}

.benefit-num {
  color: #667eea;
    font-size: 24px;
  font-weight: 700;
   flex-shrink   :0;
   width: 35px;
}

.benefit-title {
    font-size    :    18px;
  font-weight    : 600;
    color: #2c3e50;
  margin-bottom: 8px;
}

.benefit-desc {
  font-size: 14px;
  color: #666;
  line-height: 1.7;
}

.section-seminar {
	background-color: #f8f9fa;
  padding: 100px 20px;


}


.seminar-wrapper
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
   max-width: 1200px;
    margin: 0 auto;
}

.seminar-image  {
   border-radius: 20px;
   overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.seminar-image img {
  width: 100%;
    height: auto;
  display: block;
}


.seminar-info {

	  display: flex;
  flex-direction: column;
  gap:        25px;


}

.seminar-subtitle		{
   font-size: 32px;
    font-weight: 700;
   color: #1a2332;

}

.seminar-description
{
  color: #555;
	 font-size: 16px;
 line-height    :      1.8;}

.seminar-highlights {
  display: flex;

	flex-direction: column;

   gap: 12px;
}

.highlight {


   color: #2c3e50;
	 align-items  :  center;
    gap: 12px;
  display: flex;
	font-size: 15px;}

.highlight-icon {
 color: #2ecc71;
   font-weight: 700;
  font-size: 18px;
    flex-shrink: 0;
}

.seminar-cta {
	margin-top: 20px;

}

.seminar-price {
      font-size  :18px;
  font-weight:600;
	color: #667eea;
  margin-bottom: 15px;
	}

.seminar-btn
	{
	text-decoration: none;

	    font-weight: 600;

	  display: inline-block;

	    color: white;

	   width: fit-content;

	  transition: background 0.3s ease, transform 0.3s ease;

	    padding: 12px 30px;

	  background: #667eea;

	   border-radius: 50px;
}

.seminar-btn:hover {
    background: #764ba2;
  transform: translateY(-2px);
}

.section-asset {
        padding: 100px 20px;
}

.asset-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
    gap: 60px;
  align-items  :        center;
    max-width: 1200px;
   margin    :        0 auto;
}

.asset-text {
  display: flex;
     flex-direction :        column;
  gap: 30px;
}

.asset-intro {
  font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.asset-details {
    gap: 20px;
   display: flex;
   flex-direction: column;
}

.detail-block {
  padding     :     20px;
   background-color  :#f0f3ff;
   border-left: 4px solid #667eea;
   border-radius: 8px;
}

.detail-title {
  font-size: 16px;
          font-weight: 600;
    color:     #2c3e50;
  margin-bottom: 8px;
}

.detail-text {

        font-size: 14px;
    color: #666;
         line-height: 1.7;


}

.asset-image		{
    border-radius     :       20px;
   overflow    :       hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.asset-image img {
   width: 100%;
    height: auto;
	 display: block;



}

.cta-section {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 20px;
  color: white;
  text-align: center;
}

.cta-container	{
  max-width     :    800px;
     margin: 0 auto;
				 display: flex;
    flex-direction: column;
  gap: 30px;
}

.cta-title {
    font-size: 42px;

	  font-weight: 700;
}

.cta-text {
               font-size: 18px;
    line-height: 1.8;
  opacity     : 0.95;
}

.cta-button {
  display: inline-block;
       background: white;
   color: #667eea;
  padding: 15px 40px;
   border-radius: 50px;
    text-decoration: none;
   font-weight:      700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
   width:       fit-content;
         margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-button:hover

{


  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.contact-section {
		padding: 100px 20px;
    background-color: #f8f9fa; 
	
}

.contact-container  {
     max-width: 1200px;
     margin: 0 auto;

}

.contact-title {
    font-size: 42px;
 font-weight: 700;
    text-align: center;
  margin-bottom   :   60px;
			color: #1a2332;
}

.contact-wrapper {

	  display  :  grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;

}

.contact-form-box		{
  background: white;
  padding :   40px;
	border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.form-heading {
     font-weight: 600;
   margin-bottom: 30px;
   color: #2c3e50;
    font-size: 24px;


}

.form-group {
   margin-bottom: 20px;
   display: flex;
    flex-direction: column;
}

.form-label {
    font-size: 14px;
      font-weight:600;
    color: #2c3e50;
   margin-bottom: 8px;
}

.form-input {
   transition: border-color 0.3s ease;
    font-size: 14px;
  font-family: inherit;
    padding: 12px 15px;
   border: 1px solid #ddd;
    border-radius  :6px;
}

.form-input:focus {
	 outline: none;
               border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-textarea {
	   resize: vertical;
   min-height: 120px;

}

.form-submit {
	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 30px;
  border     :     none;
   border-radius: 6px;
   font-size:    15px;
   font-weight: 600;
    cursor: pointer;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;}

.form-submit:hover  {
     transform: translateY(-2px); 
	  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);}

.contact-info-box {
  background: white;
  padding: 40px;
    border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
  flex-direction: column;
  gap   : 25px;
}

.info-heading	{
   font-size: 24px;

   font-weight: 600;

   color: #2c3e50;
}

.info-item {
  gap: 8px;
       flex-direction: column;
     display: flex;
}

.info-label {
   font-size: 14px;
	font-weight: 600;
  color: #667eea;
}

.info-value    {
    font-size: 15px;
  color  :     #2c3e50;
}

.info-divider {
	height:    1px;
  background-color: #eee;
    margin: 10px 0;
}

.info-text {
    font-size: 14px;
      color: #666;
	line-height: 1.8; 

	}

.footer {
  background-color: #1a2332;
   color: white;
    padding: 60px 20px 30px;
}

.footer-container {
	 max-width: 1200px;
  margin: 0 auto;
   display: grid;
	grid-template-columns  :       1fr 1fr 1fr;
  gap: 60px;
	 margin-bottom: 40px;
}

.footer-logo-section {
	 display     :  flex;
    align-items: center;
}

.footer-logo {

	  height: 86px;
          width: auto;
  filter: brightness(0) invert(1);
	}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
   gap: 15px;
}

.footer-heading {
    font-size: 16px;
  font-weight: 700;
  margin-bottom: 15px;
  color: white; 
	
}

.footer-links {
   list-style  :       none;
  display: flex;
	 flex-direction: column;
  gap: 10px;
}

.footer-links a	{
  color: #aaa;
   text-decoration: none;
    font-size    :    14px;
       transition: color 0.3s ease;
}

.footer-links a:hover {
       color: #667eea;


}

.footer-contact-item {

	      color: #aaa; 
    font-size: 14px; 
    line-height: 1.8;
}

.footer-bottom    {
		max-width: 1200px;
  margin: 0 auto;
    padding-top: 30px;
   border-top: 1px solid #333;
  text-align: center;

}

.footer-copyright {
  color: #777; 
  font-size: 13px;
}@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: left;
        transition: left 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        padding: 15px 20px;
    }

    .burger-menu {
        display: flex;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 60px 20px;
        gap: 40px;
    }

    .hero-title {
        font-size: 32px;
    }

    .section-portfolio,
    .section-workshop,
    .asset-wrapper {
        grid-template-columns: 1fr;
        padding: 60px 20px;
    }

    .workshop-image,
    .asset-image {
        order: 1;
    }

    .workshop-content,
    .asset-text {
        order: 2;
    }

    .seminar-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }

    .why-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .portfolio-title,
    .workshop-title,
    .seminar-subtitle {
        font-size: 28px;
    }

    .cta-title {
        font-size: 28px;
    }

    .contact-title {
        font-size: 32px;
    }

    .cta-section {
        padding: 60px 20px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        height: 60px;
    }

    .nav-logo img {
        height: 50px;
    }

    .hero {
        padding: 40px 15px;
    }

    .hero-title {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 40px;
    }

    .portfolio-title,
    .workshop-title,
    .seminar-subtitle {
        font-size: 22px;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 25px;
    }

    .contact-form-box,
    .contact-info-box {
        padding: 25px;
    }

    .form-submit {
        padding: 12px 20px;
    }

    .cta-title {
        font-size: 22px;
    }

    .footer-logo {
        height: 64px;
    }

    .footer-container {
        gap: 30px;
    }
}.services-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 80px 20px;
    text-align     :  center;
}

.services-hero-content {
      max-width: 1200px;
   margin    :     0 auto;
  display: flex;
	flex-direction: column;
  gap: 20px;
}

.services-hero-title {
    font-size: 48px;
   font-weight: 700;
}

.services-hero-subtitle {
  font-size: 20px;
		 opacity: 0.95;
}

.services-main {
	    padding: 100px 20px;
     }

.services-container {
	flex-direction: column;

	    display: flex;

	   max-width: 1200px;

	  margin: 0 auto;

	   gap: 60px;
}

.service-card-detailed {
       display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 60px;
   align-items: start;
  padding: 40px;
	background-color: #f8f9fa;
   border-radius: 12px;
  border-left:        5px solid #667eea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.service-card-detailed:hover{
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service-card-detailed:nth-child(even)		{
       border-left-color: #764ba2;

}

.service-card-image {
  border-radius: 12px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.service-card-image img {
        width :      100%;
    height: auto;
  display: block;
}

.service-card-content {
   display: flex;
  flex-direction  : column;
  gap: 20px;
}

.service-card-full {
    grid-column: 1 / -1;
    padding    :       50px;
}

.service-card-title {


   font-size: 32px;
    font-weight: 700;
    color: #1a2332;
	}

.service-card-intro {
	font-size: 18px; 
  color: #667eea; 
   font-weight: 600;
}

.service-details-list {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
   padding: 20px;
   background: white;
					border-radius: 8px;
}

.detail-item {
    display: flex;
		 flex-direction: column;
   gap  :     8px;
}



.detail-label	{
    font-size: 12px;
  font-weight: 700;
	color: #667eea;
    text-transform: uppercase;
  letter-spacing: 0.5px;
}

.detail-value {
   font-size: 16px;
    font-weight: 600;
		color : #2c3e50;
}

.service-card-description {
      font-size     :  15px;
    color: #555;
    line-height: 1.8;
	}

.service-included {
  background: white;
   padding: 25px;
    border-radius  :8px;
   border-top: 3px solid #667eea;
}

.included-title  
  {
      font-size: 16px;
    font-weight: 700;
  color    :#2c3e50;
    margin-bottom: 15px;


}

.included-list {

  list-style: none;
   display: flex;
   flex-direction: column;
   gap: 10px;}

.included-list li {
	    font-size: 14px;
     color: #555;
       padding-left: 20px;
       position: relative;



}

.included-list li:before {
  content: "▸";
    position: absolute;
    left: 0;
    color: #2ecc71;
          font-weight    :  700;
}

.premium-included {
    display  :     grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
    border: none;
   background: transparent;
  padding: 0;
}

.included-column {
   background: white;
	  padding: 25px;
	               border-radius: 8px;
	        border-top: 3px solid #667eea;
}

.webinar-schedule {
  margin-top: 15px;
    padding: 15px;
    background: #f0f3ff;
  border-radius: 8px; 

	}

.schedule-title {
  font-size     : 14px;
    font-weight     :600;
  color: #667eea;
  margin-bottom: 10px;
}

.schedule-grid {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.schedule-item {
          font-size: 13px;
     color: #555;
    padding: 8px;
    background: white;
         border-radius: 4px;
    border-left     :      2px solid #667eea;
  padding-left: 12px;
}

.comparison-section {
        background-color     :       #f8f9fa;
   padding: 80px 20px;
	
}

.comparison-container {
  max-width: 1200px;
	margin: 0 auto;
}

.comparison-title {
    font-size: 42px;
    font-weight  :       700;
	text-align: center;
   margin-bottom: 50px;
    color: #1a2332;
}

.comparison-table-wrapper {

	    overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);

}

.comparison-table {
	    width: 100%;
   border-collapse: collapse;
  background: white;}

.comparison-table thead {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color  :     white;
}


.comparison-table th{
   padding: 20px;
	 text-align    :left;
   font-weight: 600;
   font-size: 15px;
}

.comparison-table td {
   padding  :   18px 20px;
   border-bottom: 1px solid #eee;
   font-size: 14px;
    color: #555;
	
}

.comparison-table tbody tr:hover {
  background-color    :#f8f9fa;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.faq-section {
   padding: 80px 20px;
}

.faq-container {
  max-width: 1200px;
    margin: 0 auto;
}

.faq-title {

	    font-size: 42px;
   font-weight: 700;
	text-align   :      center;
  margin-bottom: 50px;
   color :  #1a2332;
}

.faq-grid {
   display     :      grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.faq-item

{
    background: white;
    border-radius: 12px;
                    overflow    :   hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12); 

}

.faq-question {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
               color: white;
   padding: 20px;
                    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h4


{
    font-size: 16px;
   font-weight   :        600;
  margin: 0;
}

.faq-item:hover .faq-question     {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);

}

.faq-answer {
    padding :     25px;
   display: none;
}

.faq-answer.active {
    display: block; 

}

.faq-answer p {

   font-size: 14px;
  color: #555;
   line-height: 1.8;
    margin: 0;

}

.services-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding  :     80px 20px;
   color :        white;
        text-align: center;
}

.services-cta-container {
   max-width: 900px;
  margin:    0 auto;
    display: flex;
   flex-direction: column;
  gap: 30px;

}

.services-cta-title {
    font-size: 42px;
    font-weight: 700;
}



.services-cta-text	{
   font-size: 18px;
            opacity: 0.95;
     line-height   :        1.8;
}  

.services-cta-btn {
                    display: inline-block;
	 background :white;
    color : #667eea;
  padding: 15px 40px;
	border-radius: 50px;
    text-decoration: none;
   font-weight:  700;
   transition   : transform 0.3s ease, box-shadow 0.3s ease;
    width: fit-content;
   margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.thankyou-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #f0f3ff 100%);
  padding: 80px 20px;
	min-height: 70vh;
   display: flex;
  align-items     :  center;
   justify-content: center;
}

.thankyou-container {
    max-width    :     800px;
    background: white;
  border-radius: 16px;
   padding: 60px 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
        text-align: center;
   display: flex;
    flex-direction: column;
  gap: 30px;
}

.thankyou-icon {
    font-size: 80px;
  color: #2ecc71;
  line-height: 1;
  animation   :scaleIn 0.6s ease;
	
} @keyframes scaleIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}.thankyou-title {
	font-size   :        42px;
   font-weight: 700;
  color    :       #1a2332;
}

.thankyou-subtitle {
    font-size: 20px;
   color: #667eea;
  font-weight     :   600;
	
}

.thankyou-content {
    display    :  flex;
    flex-direction: column;
	 gap: 30px;
   text-align: left;
}

.thankyou-text {
   font-size     :     15px;
    color     :#555;
   line-height: 1.8;
}


.thankyou-info-box {
    background: #f8f9fa;
   padding    : 30px;
    border-radius: 12px;
   border-left    :  4px solid #667eea;
}

.info-box-title		{
  font-size: 18px;
    font-weight: 700;
  color:      #2c3e50;
    margin-bottom: 20px;
   text-align     :  left;
}

.info-steps {
	  display: flex;
  flex-direction: column;
  gap: 15px;

}

.info-step {
    align-items: flex-start;
       display: flex;
   gap: 15px;
}  

.step-number		{
   display     :     flex;
    align-items: center;
   justify-content: center;
	width: 40px;
    height: 40px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
  border-radius: 50%;
  font-weight: 700;
	flex-shrink: 0;
}

.step-title {
	    font-size: 15px;
        font-weight  :     600;
	 color: #2c3e50;
  margin: 0 0 5px 0;
}



.step-desc {
   font-size: 13px;
    color: #666;
    margin: 0;

}



.thankyou-contact-quick {
   background :    #f0f3ff;
   padding   :      25px;
  border-radius :   12px;
}

.quick-contact-title {

		font-size: 16px;
  font-weight: 700;
	color    :      #2c3e50;
  margin: 0 0 10px 0; 

	}

/* Utility classes */

.quick-contact-text {


   font-size: 14px;
   color: #555;
  margin     :0 0 15px 0;}

.quick-contact-details {
         gap: 10px;
    flex-direction: column;
	 display:      flex;
}

.contact-detail {
  display: flex;
  align-items: center;
	gap: 15px;
   font-size: 14px;
}

.contact-detail .detail-label {
   font-weight: 700;
    color: #667eea;
    min-width  :  80px;
}

.contact-detail .detail-value  
  {
    color: #2c3e50;
}

.thankyou-faqs {
   background: white;
   padding    :    0;
}

.faqs-title {
	    font-size    :    18px;
  font-weight: 700;
  color: #2c3e50;
   margin: 0 0 20px 0;
  text-align: left;
	}
/* TODO: optimize for mobile */



/* Colors and backgrounds */


.faqs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 20px;
     }



.faq-small {
    padding: 20px;
    background: #f8f9fa;
	border-top: 3px solid #667eea;
  text-align: left;
	border-radius: 8px;
}

.faq-small-title {
  font-size: 14px;
    font-weight: 700;
  color: #2c3e50;
   margin: 0 0 8px 0;
}

.faq-small-text 
 {
        font-size    :      12px;
  color: #666;
		 margin: 0;
    line-height: 1.6;
	
}

.thankyou-actions {
   display    :        flex;
   gap   :       15px;
    justify-content: center;
      flex-wrap  :    wrap;

     }

.thankyou-btn-primary,
.thankyou-btn-secondary {
  padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
			font-weight: 600;
   transition: transform 0.3s ease, box-shadow 0.3s ease;
         display: inline-block;
    font-size: 14px;
	
}

.thankyou-btn-primary {

	  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); 
  color: white; 
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);


}

.thankyou-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}  

.thankyou-btn-secondary
{
  background  :       white;
    color: #667eea;
	border: 2px solid #667eea;
}

.thankyou-btn-secondary:hover 
 {


  transform: translateY(-2px);
	    background: #f8f9fa;
	}

.newsletter-minimal {
   background-color: #f8f9fa;
   padding: 50px 20px;
}

.newsletter-minimal-container {
  max-width :600px;
  margin   :     0 auto;
  text-align: center;
   display: flex;
  flex-direction: column;
    gap: 20px;

}


.newsletter-title {
   font-size: 28px;
				 font-weight   :    700;
  color: #1a2332;
}

.newsletter-text {
   font-size     :  15px;
   color: #555;
}

.newsletter-form-simple {
   display: flex;
   justify-content: center;
}

/* Debug styles */

.newsletter-form-minimal {
   display: flex;
   gap: 10px;
   width    :    100%;
   max-width: 500px;
}

.newsletter-input {
    flex: 1;
  padding: 12px 20px;
  border: 1px solid #ddd;
    border-radius: 50px;
  font-size: 14px;
  transition  :     border-color 0.3s ease;
}

.newsletter-input:focus 
 {
               outline: none;

       border-color: #667eea; 
	
}

.newsletter-submit {
  padding :  12px 30px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
    border-radius: 50px;
	 font-weight: 600;
  cursor: pointer;
          transition  : transform 0.3s ease, box-shadow 0.3s ease;
   font-size: 14px;
}

.newsletter-submit:hover {
  transform: translateY(-2px); 
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}
@media (max-width: 768px) {
    .services-hero-title {
        font-size: 32px;
    }

    .service-card-detailed {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 25px;
    }

    .service-card-full {
        grid-column: 1;
        padding: 30px;
    }

    .service-card-title {
        font-size: 24px;
    }

    .service-details-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .premium-included {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .comparison-table {
        font-size: 12px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .services-cta-title {
        font-size: 32px;
    }

    .thankyou-container {
        padding: 40px 25px;
    }

    .thankyou-title {
        font-size: 32px;
    }

    .faqs-grid {
        grid-template-columns: 1fr;
    }

    .newsletter-form-minimal {
        flex-direction: column;
    }

    .newsletter-input {
        width: 100%;
    }

    .newsletter-submit {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 50px 20px;
    }

    .services-hero-title {
        font-size: 24px;
    }

    .services-main {
        padding: 50px 20px;
    }

    .service-card-detailed {
        padding: 20px;
    }

    .service-card-title {
        font-size: 20px;
    }

    .service-details-list {
        grid-template-columns: 1fr;
    }

    .detail-label {
        font-size: 11px;
    }

    .detail-value {
        font-size: 14px;
    }

    .service-card-description {
        font-size: 14px;
    }

    .comparison-section {
        padding: 50px 20px;
    }

    .comparison-title {
        font-size: 28px;
    }

    .faq-section {
        padding: 50px 20px;
    }

    .faq-title {
        font-size: 28px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .services-cta {
        padding: 50px 20px;
    }

    .services-cta-title {
        font-size: 24px;
    }

    .thankyou-section {
        padding: 40px 15px;
        min-height: auto;
    }

    .thankyou-container {
        padding: 30px 20px;
    }

    .thankyou-icon {
        font-size: 60px;
    }

    .thankyou-title {
        font-size: 24px;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }

    .info-step {
        gap: 12px;
    }

    .step-title {
        font-size: 13px;
    }

    .step-desc {
        font-size: 12px;
    }

    .thankyou-actions {
        flex-direction: column;
    }

    .thankyou-btn-primary,
    .thankyou-btn-secondary {
        width: 100%;
    }

    .newsletter-title {
        font-size: 20px;
    }
}.policySection {
  padding: 80px 2rem;

   background: #f8f9fa;

  min-height: calc(100vh - 200px);
}

.policyContainer {
	max-width: 900px;
          margin  :0 auto;
  text-align: left;
   background: white;
	padding: 50px;
	 border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.policyTitle {
  font-size: 2.8rem;
    color: #1a2332;
    margin-bottom: 2rem;
   font-weight: 700;
    border-bottom: 3px solid #667eea;
  padding-bottom: 1rem;
}

.policyContent {
	display: flex;
		 flex-direction: column;
  gap: 2rem;
}

.policyContainer h2 {
    margin-top: 1rem;
    color: #2c3e50;
   font-size   :        1.8rem;
   font-weight: 700;
   margin-bottom     :   1rem;
}

.policyContainer h2:first-of-type {
    margin-top: 0;


}

.policyContainer p {


    color     :       #555;
  margin-bottom: 1rem;
   line-height: 1.9;
  font-size: 1rem;
  text-align: justify; 


}

.policyContainer p:last-child {
    margin-bottom  :      0;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1rem;
    }

    .policyContainer {
        padding: 35px;
        border-radius: 8px;
    }

    .policyTitle {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.8;
    }

    .policyContent {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
    }

    .policyContainer {
        padding: 20px;
        border-radius: 6px;
    }

    .policyTitle {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
        padding-bottom: 0.8rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        line-height: 1.7;
        text-align: left;
    }

    .policyContent {
        gap: 1rem;
    }
}