*    {

		 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: #f8f9fa;
} 

.navbar {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);

	padding    :  0;

    position :sticky;

	top: 0;

  z-index: 1000;

  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar-container {
  max-width: 1200px;
   margin: 0 auto;
    display: flex;
  justify-content: space-between;
    align-items: center;
		padding: 0 20px;
  height: 74px;
}

.navbar-brand     {
  display: flex;

	 align-items: center;
}

.logo {
   height  :       74px;
   width: auto;
  filter: brightness(0) invert(1);
}

.nav-toggle   {
      display: none;
	background: none;
    border: none;
   cursor: pointer;
  flex-direction     :        column;
   gap: 5px;
    padding: 10px;}

.hamburger {
   height     :  2px;
   width: 25px;
   display: block;
      transition: all 0.3s ease;
    background-color: white;
}

.nav-toggle.active .hamburger:nth-child(1) {

  transform: rotate(45deg) translate(10px, 10px);
}

.nav-toggle.active .hamburger:nth-child(2) {
 opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.nav-links {
	   display: flex;

   list-style: none;

    gap    :        30px;
     }

.nav-links a {

    color     :     white;
    text-decoration: none;
    font-weight: 500;
    transition   :        all 0.3s ease;
	 padding: 8px 12px;
	 border-radius    :        4px;
}

.nav-links a:hover {
  background-color: rgba(255,255,255,0.2);
  transform: translateY(-2px);


}@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 74px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        padding: 20px;
        gap: 10px;
    }

    .nav-links.active {
        display: flex;
    }

    .navbar-container {
        padding: 0 15px;
    }
}.hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	 color: white;
   padding: 80px 20px;
  text-align: center;
   display  :      grid;
   grid-template-columns: 1fr 1fr;
  gap: 40px;
    align-items: center;
  max-width: 1200px;
	margin: 0 auto;
}

.hero-content h1 {
  font-size   :   3.5rem;
   margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content p  
  {
		margin-bottom: 30px;
    opacity :  0.95;
    font-size: 1.3rem;
}

.cta-button {
   display: inline-block;
    background-color: #f39c12;
  color: white;
	padding  :14px 40px;
                    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
  transition :       all 0.3s ease;
  border   : 2px solid transparent;
	}

.cta-button:hover

{
    background-color: #e67e22; 
  transform: translateY(-3px); 
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);


}

.hero-image img {
    width: 100%;
   max-width: 500px;
   border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2); 
	
}@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }
}.container    {
               max-width   :     1200px;
   margin: 0 auto;
   padding: 0 20px;
}

.section-intro {
   padding: 80px 20px;
   background-color:     white;
}


.section-intro h2 {
   font-size:       2.5rem;
   margin-bottom     : 30px;
    text-align    :      center;
    color    :     #667eea;
}

.section-intro > .container > p {
   text-align: center;
    font-size :     1.1rem;
   margin-bottom: 50px;
    color  :     #555;
   max-width   :      700px;
     margin-left: auto;
         margin-right     :     auto;
}

.intro-grid {
   display   :grid;
  grid-template-columns: repeat(3, 1fr);
    gap:      30px;
}  

.intro-card	{
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
        padding: 40px;
  border-radius: 10px;
  border-left: 4px solid #667eea;
   transition  :   all 0.3s ease;
}

.intro-card:hover	{
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.15);
}

.intro-card h3 {
  color: #667eea;
    font-size: 1.3rem;
    margin-bottom    :  15px;
}

.intro-card p {
   color : #555;
    line-height: 1.8; 

}@media (max-width: 768px) {
    .intro-grid {
        grid-template-columns: 1fr;
    }

    .section-intro h2 {
        font-size: 2rem;
    }
}.section-risks {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.section-risks h2 {

    font-size: 2.5rem;

   margin-bottom: 60px;

   text-align: center;

   color: #764ba2;}

.risks-wrapper {
   display: flex;
    flex-direction: column;
  gap: 50px;
}

.risk-item {
  display: grid;
   grid-template-columns  : 1fr 1fr;
  gap: 40px;
    align-items: center;
   background: white;
    padding: 40px;
    border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.risk-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
   direction: rtl;
}

.risk-item:nth-child(even) .risk-content {
       direction: ltr;
}

.risk-item img {
	  width: 100%;
   border-radius: 8px;
    object-fit: cover;
   height: 300px;
     }

.risk-content h3 {
    font-size: 1.8rem; 
    color: #764ba2; 
	 margin-bottom    :15px;


}

.risk-content p {
  color: #555;
	line-height: 1.8;
  font-size: 1rem; 
	
}@media (max-width: 768px) {
    .risk-item {
        grid-template-columns: 1fr;
    }

    .risk-item:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .risk-item:nth-child(even) .risk-content {
        direction: ltr;
    }

    .risk-item img {
        height: 200px;
    }

    .section-risks h2 {
        font-size: 2rem;
    }
}.section-advantages {
       padding     :        80px 20px;
  background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
}

.section-advantages h2 {
    font-size :  2.5rem;
	   margin-bottom: 60px;
	    text-align: center;
	   color: #667eea;
}



.advantages-grid {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.advantage-box {
    background: white;
                    padding: 40px;
   border-radius     :   10px;
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.1);
	border-top: 4px solid #f39c12;
		transition: all 0.3s ease;
}

.advantage-box:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.2);
}

.advantage-box h3 {
  color:#764ba2;

   margin-bottom: 15px;

	 font-size: 1.4rem;
}

.advantage-box p {

    color: #555;
	    line-height: 1.8;
}@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: 1fr;
    }

    .section-advantages h2 {
        font-size: 2rem;
    }
}.section-services-preview		{
   padding: 80px 20px;
   background: white;
}

.section-services-preview h2 {
  font-size: 2.5rem;
   margin-bottom: 15px;
          text-align:   center;
    color: #667eea; 
	
}

.section-services-preview > .container > p {
      text-align: center;
   font-size: 1.1rem;
  color: #555;
    margin-bottom : 60px;
}


.services-cards

{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
   gap: 25px;
    margin-bottom: 50px;
	
} 

.service-card {
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
   color: white;
  padding: 35px;
   border-radius: 10px;
    text-align: center;
   transition     :   all 0.3s ease;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.15);
}
/* Hack for old browsers */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
}

.service-card h3 {
  margin-bottom: 15px;
    font-size    : 1.3rem;
}

.service-card p {
  font-size: 0.95rem;
    line-height: 1.6;
   opacity: 0.95;
}

.services-link {
  text-align: center;
    margin-top: 40px;
}

.services-link a {
  color: #667eea;
    text-decoration:        none;
 font-weight: 600;
    font-size: 1.1rem;
   padding: 10px 20px;
       border: 2px solid #667eea;
    border-radius: 50px;
  transition: all 0.3s ease;
   display: inline-block;
}

.services-link a:hover {
	background-color: #667eea;
  color: white;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
    .services-cards {
        grid-template-columns: 1fr;
    }

    .section-services-preview h2 {
        font-size: 2rem;
    }
}.section-cta {

		padding   : 80px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 40px;
    align-items: center;
	max-width: 1200px;
       margin: 0 auto;

}

.cta-content h2  
  {
 font-size: 2.8rem; 
	    margin-bottom: 20px; 
	  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.cta-content p {
   	font-size: 1.1rem;
    margin-bottom: 30px;
                    opacity: 0.95; 

     }

.cta-button-large    {
          display: inline-block;
      background-color: #f39c12;
      color: white;
      padding: 16px 50px;
       text-decoration: none;
      border-radius: 50px;
      font-weight: 600;
     font-size: 1.1rem;
     transition: all 0.3s ease;
      border: 2px solid transparent;
}

.cta-button-large:hover {
  background-color: #e67e22;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);

}

.cta-image img {
       width: 100%;
    border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}@media (max-width: 768px) {
    .section-cta {
        grid-template-columns: 1fr;
        padding: 50px 20px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }
}.section-contact{
               padding: 80px 20px;
   background-color :       #f8f9fa;
}

.section-contact h2 {

	    font-size: 2.5rem;
  margin-bottom: 15px;
                    text-align :        center;
    color: #667eea;
     }

.section-contact > .container > p {
	text-align: center; 
   color: #555; 
    margin-bottom: 50px; 
  font-size: 1.1rem;
}

.contact-form {
	max-width: 600px;
   margin  :     0 auto;
        background   :    white;
    padding: 50px;
   border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-group {
   margin-bottom: 25px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
  padding: 14px 16px;
   border: 2px solid #e0e0e0;
  border-radius    :    6px;
    font-family: inherit;
  font-size: 1rem;
	transition: all 0.3s ease;
	 background-color     :      white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
               border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color   : #999;
}

.contact-form textarea {
	resize: vertical;
}

.form-button {
   width: 100%;
	 padding     :        16px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    border: none;
	border-radius   :       6px;
                    font-weight: 600;
   font-size:   1.1rem;
    cursor: pointer;
  transition: all 0.3s ease;
}

.form-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.form-button:active {
  transform: translateY(0);
}

.footer {
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
        padding: 60px 20px 30px;
}

.footer-content


{
  margin-bottom: 40px;
  grid-template-columns: repeat(4, 1fr);
	 display: grid;
  margin  :    0 auto;
    gap: 40px;
  max-width: 1200px;
}

.footer-section h4 {
    color: #f39c12;
       font-size: 1.2rem;
    margin-bottom: 20px;
}

.footer-logo {
    height   :    96px;
         width: auto;
  filter: brightness(0) invert(1);
}


.footer-section ul {
	  list-style: none;
	}

.footer-section ul li {
   margin-bottom: 12px;
}

.footer-section ul li a {
    color: #bbb;
  text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
	color: #f39c12;
}

.footer-section p {
  color    :       #bbb;
   line-height  :      1.8;
    margin-bottom: 12px;
}

.footer-section a {
   color: #f39c12;
   text-decoration: none;
               transition: color 0.3s ease;
}

.footer-section a:hover {

	  color: #e67e22;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);

	    padding-top: 20px;

	  text-align: center;

	    color: #999;

	    font-size: 0.9rem;
}@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
    }

    .section-contact {
        padding: 50px 20px;
    }

    .contact-form {
        padding: 30px;
    }
}.cookie-alert   {

    position: fixed;
  bottom: 20px;
    left     :        20px;
        right: 20px;
  background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
  color: white;
  padding:    25px;
   border-radius: 10px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.3);
                    z-index: 999;
       display: none;
  max-width: 500px; 
	
	}

.cookie-alert.show {
 animation  :    slideUp 0.3s ease;
  display: block;
}@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}.cookie-content p {
	font-size: 0.95rem;
  line-height: 1.6;
   margin-bottom: 20px;
}

.cookie-buttons {

	  display: flex;
    gap: 10px;
          flex-wrap: wrap;

}

.cookie-btn {
	 padding: 10px 16px;
   border: none;
   border-radius: 6px;
  font-size: 0.9rem;
    cursor: pointer;
   transition: all 0.3s ease;
        font-weight     :     500;
}

.cookie-btn.reject {
  background-color: transparent;
    color: #f39c12;
  border: 2px solid #f39c12;
}

.cookie-btn.reject:hover {
	 background-color: #f39c12;
		color: white;
}

.cookie-btn.settings {
	background-color: #667eea;
   color  :       white;
}

.cookie-btn.settings:hover {
    background-color: #764ba2;
}

.cookie-btn.accept {
	background-color: #f39c12;
    color     :       white;
	 -ms-flex: 1;
  -webkit-flex:  1;
   flex :        1;
         min-width: 120px;
	
}

.cookie-btn.accept:hover   {
	 background-color : #e67e22;
}

.cookie-modal {
  position: fixed;
  top     :0;
    left: 0;
      right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
    display: none;
   justify-content: center;
	align-items: center;
   z-index:   1001;
}

.cookie-modal.show {
      display  :    flex;

}

.modal-content

{
        background: white;
  padding: 40px;
  border-radius  :      10px;
               max-width: 500px;
   width: 90%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.modal-content h2 {
  color: #2c3e50;
   margin-bottom: 30px;
   font-size: 1.8rem;
}

.cookie-options {
   margin-bottom: 30px;
}

.cookie-option {
             display: flex;
    align-items: flex-start;
    margin-bottom:   20px;
   cursor:        pointer;
}

.cookie-option input
{
  width: 18px;
  height: 18px;
   margin-right: 15px;
    cursor: pointer;
  margin-top: 5px;
}

.cookie-option span {
   font-weight: 600;
    color  :      #2c3e50;
  display:      block;


}

.cookie-option small  
  {
  display: block;
    color: #999;
   margin-top: 5px;
	font-size: 0.85rem;
}

.modal-buttons	{
	display     :  flex;
       gap: 15px;
}

.modal-btn {
    flex: 1;
    border-radius: 6px;
  border   :  none;
  transition    :all 0.3s ease;
    cursor: pointer;
  font-weight: 600;
      padding: 12px 25px;
}

.modal-btn {
                    background-color: #e0e0e0;
    color: #2c3e50;
}

.modal-btn:hover
	{
    background-color: #d0d0d0;
} 

.modal-btn.save {
    background-color: #667eea;
    color :white;
}

.modal-btn.save:hover {
   background-color   :     #764ba2;
}

.services-hero	{
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   padding: 60px 20px;
  text-align: center;
}

.hero-content-services {
   max-width: 1200px;
	 margin: 0 auto;
}

.hero-content-services h1 {
	font-size: 3rem;
    margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.hero-content-services p

{

	font-size: 1.2rem;
      opacity: 0.95;}

.services-section {
	    padding: 60px 20px;
  background-color: white;
     }

.services-section h2 {

	   margin-bottom: 15px;
                    font-size: 2.5rem;
   color: #667eea;
 text-align: center;}

.services-section > .container > p {
   text-align: center;
   font-size: 1.1rem;
   color: #555;
   margin-bottom: 40px;
     }

.service-detailed {
    padding: 70px 20px;
  background-color: white;
    border-bottom: 1px solid #f0f0f0;
}

.service-detailed.alternate {
   background-color: #f8f9fa; 

}

.service-item {
         max-width: 1200px;

	  margin: 0 auto;

	    display: grid;

	   grid-template-columns   :     1fr 1fr;

	                    gap : 60px;

	  align-items: center;
}

.service-detailed.alternate .service-item {
  grid-template-columns: 1fr 1fr;
  direction   :  rtl;
} 

.service-detailed.alternate .service-text {
    direction: ltr;
}

.service-image {
   position    :  relative;
}

.service-image img {
   width: 100%;
	 border-radius    : 12px;
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.15);
         transition: all 0.3s ease;
}

.service-image:hover img {
  transform: translateY(-5px);
  box-shadow: 0 25px 60px rgba(102, 126, 234, 0.25);
}

.service-text h3   {
   margin-bottom: 20px;
   font-size:  2.2rem;
    color: #667eea;
}

.service-text > p {
   font-size    :     1rem;
   color  :       #555;
  line-height: 1.8;
    margin-bottom: 25px;
}

.service-features {
    margin-bottom: 25px;
  list-style: none;
}

.service-features li

{
   padding: 12px 0;
	    color: #555;
	  border-bottom: 1px solid #f0f0f0;
	  padding-left: 0;

}

.service-features li:before {
  content: "✓ ";
   color: #f39c12;
               font-weight: bold;
  margin-right     : 10px;
}

.service-info {

  -webkit-border-radius: 8px;
   background-color: #f8f9fa;
  -moz-border-radius: 8px;
  padding: 15px;
   border-radius: 8px;
    font-size: 0.95rem;
   color     :#666;
   margin-bottom: 25px;
	
     }

.service-button  
  {
   display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 14px 40px;
  text-decoration: none;
  border-radius: 6px;
   font-weight     :      600;
   transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}@media (max-width: 768px) {
    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-detailed.alternate .service-item {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .service-detailed.alternate .service-text {
        direction: ltr;
    }

    .service-text h3 {
        font-size: 1.8rem;
    }

    .hero-content-services h1 {
        font-size: 2rem;
    }

    .services-section h2 {
        font-size: 2rem;
    }
}.pricing-section{
	    padding: 80px 20px;
  background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);

}

.pricing-section h2 {
    font-size: 2.5rem;
      margin-bottom: 15px;
     text-align: center;
   color: #667eea;
}

.pricing-section > .container > p {
  text-align: center;
   color   :  #555;
    margin-bottom    :60px;
 font-size: 1.1rem;
}

.pricing-grid {
    display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 30px;
  max-width: 1200px;
   margin: 0 auto;
}



.pricing-card {
    background: white;
	 padding: 40px;
    border-radius: 12px;
  box-shadow: 0 10px 35px rgba(102, 126, 234, 0.1);
  border-top: 4px solid #f39c12;
    transition: all 0.3s ease;
  text-align: center;
    position: relative;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.pricing-card.featured		{
  border-top-color: #667eea;
  border  :       2px solid #667eea;
  transform: scale(1.05);
         z-index: 10;
}

.featured-badge {
  position: absolute;
	top: -15px;
    left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 8px 16px;
  border-radius: 50px;
    font-size: 0.85rem;
   font-weight: 600;
	}

.pricing-card h3 {
     margin-bottom: 20px; 
  color   :    #667eea; 
	 font-size: 1.8rem;
}

.price {
   font-size: 3rem;
   color    :      #f39c12;
    font-weight: bold;
   margin-bottom: 5px;
}

.price-period {
  color: #999;
    font-size: 0.95rem;
   margin-bottom: 30px;
}

.pricing-features {
      list-style: none;
  margin-bottom: 30px;
  text-align: left;
}

.pricing-features li {
   padding: 12px 0;
    color: #555;
   border-bottom: 1px solid #f0f0f0; 

}

.pricing-features li:before {
  content: "✓ ";
  color: #2ecc71;
   font-weight: bold;
  margin-right: 10px; 
	
}

.pricing-button {
   width: 100%;
  padding   :     14px;
  background-color: #f39c12;
   color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
  cursor: pointer;
               text-decoration: none;
      display: inline-block;
      transition: all 0.3s ease;
   font-size: 0.95rem;
}

.pricing-button:hover		{
	 background-color: #e67e22;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(243, 156, 18, 0.3);
}


.pricing-button.featured-btn {
   background-color: #667eea;

	margin-bottom: 0;
}

.pricing-button.featured-btn:hover	{
	  background-color: #764ba2;
  box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);}@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-section h2 {
        font-size: 2rem;
    }
}.contact-cta-section	{
  padding: 60px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
   text-align: center;
}

.cta-content {
          max-width: 1200px;
     margin: 0 auto;
     }

.cta-content h2 {
  font-size: 2.5rem;
   margin-bottom: 20px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}

.cta-content p {


    font-size: 1.1rem;
    margin-bottom: 30px;
	 opacity: 0.95;
     }

.cta-link-button {
  text-decoration: none;
  display: inline-block;
  background-color     :    #f39c12;
    padding: 14px 40px;
  transition    : all 0.3s ease;
   color: white;
      border-radius: 50px;
  font-weight: 600;
}  

.cta-link-button:hover     {
    background-color: #e67e22;

  transform: translateY(-3px);

  box-shadow: 0 15px 40px rgba(0,0,0,0.3); 
	
}

.thankyou-section {
        padding: 80px 20px;
  background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
                    min-height: 600px;
  display: flex;
       align-items: center;


}

.thankyou-content
{
    max-width: 800px;
  background  :    white;
        padding: 60px;
    border-radius: 12px;
  box-shadow: 0 15px 50px rgba(102, 126, 234, 0.15);
   text-align: center;
  margin: 0 auto;
}

.success-icon {
          margin-bottom: 30px;
    display: flex;
  justify-content: center;
}

.success-icon svg {
  filter: drop-shadow(0 0 10px rgba(46, 204, 113, 0.3));
}

.thankyou-content h1 {
  margin-bottom: 15px;
	color:      #667eea;
	font-size    :    2.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #555;
   margin-bottom: 40px;
}

.confirmation-box {
  background-color: #f8f9fa;
  padding     : 40px;
   border-radius: 10px;
  margin-bottom: 30px;
	 text-align: left;
}

.confirmation-box h2 {
    font-size: 1.8rem;
   color: #667eea;
   margin-bottom: 30px;
    text-align: center;


}

.confirmation-steps {
   display    :   grid;
  grid-template-columns: repeat(4, 1fr);
  gap :   20px;
}

.step {
    text-align: center;
}

.step-number {
	width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
                    border-radius:  50%;
  display: flex;
  align-items: center;
   justify-content :        center;
  font-size: 1.5rem;
   font-weight: bold;
   margin: 0 auto 15px;
}

.step h3 {
    color    :    #667eea;
  margin-bottom: 10px;
                    font-size :       1.1rem;
}

.step p {
          color:   #555;
    font-size: 0.9rem;
  line-height: 1.6;
}

.info-box {
   background-color: #e8f4f8;
     padding: 30px;
       border-radius  :        10px;
   margin-bottom: 40px;
    border-left: 4px solid #667eea;
}

.info-box h3 {
   color    :        #667eea;
    margin-bottom: 15px;
}


.info-box p {
    color: #555;
    line-height: 1.8;
   margin-bottom: 10px;
}

.contact-info
{
   margin-top: 15px;
   font-weight: 600;
}

.contact-info a {
  color: #667eea;
	text-decoration: none;
  transition: color 0.3s ease; 
	
}  

.contact-info a:hover {
	   color: #764ba2;
     }

.action-buttons {

	  display: flex;
   gap: 15px;
    justify-content: center;
  flex-wrap: wrap;


}

.action-button {
  padding: 14px 35px; 
	    text-decoration: none; 
	   border-radius: 6px; 
	   font-weight: 600; 
			transition: all 0.3s ease; 
	        display: inline-block;
}

.action-button.primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
}

.action-button.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);

}

.action-button.secondary {
  background-color: white;
   color: #667eea;
   border: 2px solid #667eea;
}

.action-button.secondary:hover {

    background-color: #667eea;
  color: white;
  transform: translateY(-3px);
}

.faq-section {
   background-color: white;
   padding: 80px 20px;
}

.faq-section h2 {
  font-size: 2.5rem;
  margin-bottom: 60px;
   text-align: center;
   color: #667eea;
}

.faq-grid {
   display: grid;
  grid-template-columns: repeat(3, 1fr);
   gap: 30px;
    max-width: 1200px;
  margin: 0 auto;
}

.faq-item    {
  -webkit-border-radius: 10px;
     background-color    :    #f8f9fa;
    padding     :30px;
   -o-transition: all 0.3s ease;
     border-radius: 10px;
    -moz-border-radius: 10px;
   border-left: 4px solid #f39c12;
               transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.1);
}

.faq-item h3 {
	 color: #667eea; 
	 margin-bottom: 15px; 
   font-size: 1.1rem;
}

.faq-item p {

	   color: #555;
   line-height  :       1.8;
    font-size: 0.95rem;
	}@media (max-width: 768px) {
    .confirmation-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 30px;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .action-button {
        width: 100%;
    }

    .faq-section h2 {
        font-size: 2rem;
    }
}.next-steps-section {
    padding     :    80px 20px;
  background: linear-gradient(135deg, #667eea08 0%, #764ba208 100%);
}

.next-steps-section h2 {
   font-size: 2.5rem;
  margin-bottom: 60px;
               text-align    :      center;
    color: #667eea;
}

.next-steps-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
    gap: 30px;
   max-width: 1200px;
   margin: 0 auto;
}

.next-step-card {
    background: white;
   padding: 40px;
    border-radius    :10px;
  box-shadow: 0 10px 35px rgba(102, 126, 234, 0.1);
   transition :all 0.3s ease;
}

.next-step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.next-step-card h3 {
    color: #667eea;
    margin-bottom: 15px;
  font-size: 1.3rem;
}

.next-step-card p {
      color: #555;
	  line-height  :        1.8;
	               margin-bottom:      20px;
}

.next-step-link


{
  color  :        #667eea;
  text-decoration: none;
   font-weight     :       600;
  transition: all 0.3s ease;
         border-bottom: 2px solid #667eea;
  padding-bottom: 5px;
}

.next-step-link:hover {
  color: #764ba2;
   border-bottom-color: #764ba2;


}

@media (max-width: 768px) {
    .next-steps-content {
        grid-template-columns: 1fr;
    }

    .next-steps-section h2 {
        font-size: 2rem;
    }
}.policySection {
	    padding: 80px 2rem; 
  background: #f8f9fa; 
   min-height: 600px;
	}

.policyContainer {
    margin: 0 auto;
   text-align: left;
    max-width: 800px;
}

.policyContainer h1 {

	    text-align: center;
	 margin-bottom: 40px;
  font-weight     :     700;
   font-size: 2.8rem;
	color: #667eea;

     }

.policyContainer h2		{
    font-size: 1.8rem;
      color: #667eea;
   margin-top: 40px;
    margin-bottom: 20px;
  font-weight: 600;
   border-bottom: 2px solid #f39c12;
  padding-bottom:10px;
}

.policyContainer p {
   color  :  #555;
  margin-bottom  :       1.5rem;
  line-height:    1.8;
  font-size: 1rem;
	}

.policyContainer p:first-of-type {
   margin-top: 0;
}

.policyContainer a {

                    color: #667eea; 
    text-decoration: none; 
	transition: color 0.3s ease;


	}

.policyContainer a:hover    {
   color: #764ba2;
  text-decoration: underline;
}@media (max-width: 768px) {
    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .policyContainer p {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.2rem;
    }

    .policySection {
        padding: 60px 1rem;
    }
}

@media (max-width: 480px) {
    .policyContainer h1 {
        font-size: 1.6rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
    }

    .policySection {
        padding: 40px 0.75rem;
    }
}