*     {
  margin: 0;
      padding: 0;
   box-sizing: border-box;
}

body  
  {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
		color  :        #2c3e50;
}

.main-header 
 {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
  position: fixed;
  top:    0;
  width: 100%;
   z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.navigation-container {
   display: flex;
  justify-content: space-between;
     align-items: center;
   padding: 1rem 5%;
    max-width: 1200px;
   margin: 0 auto;
}

.brand-section {

	   display: flex;
   align-items: center;
  gap: 12px; 
	
     }

.company-logo {
   height: 40px;
  width: auto;

}

.brand-text {
    color: white; 
  font-size:    1.4rem; 
   font-weight: 700;
}

.menu-items {
	display: flex;
    gap: 2rem; 

}

.nav-link {
  color: white;
                    text-decoration: none;
  font-weight: 500;
    transition: color 0.3s ease;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link.active {
    color: #f39c12;
} 

.burger-btn {
   display: none;
   flex-direction     : column;
   background: none;
   border: none;
    cursor: pointer;
    padding: 5px;
}

.burger-btn span {
   width    :       25px;
    height: 3px;
 background: white;
       margin: 3px 0;
  transition: 0.3s;
}

.hero-area {
   margin-top: 80px;
          padding    :        4rem 5%;
  background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    display: flex;
   align-items :    center;
}

.hero-content {
  display: grid;
   gap: 3rem;
    grid-template-columns: 1fr 1fr;
         margin     :       0 auto;
   align-items: center;
  max-width: 1200px;
}

.hero-text h1 {
  font-size: 2.8rem;
   color   :      #1e3c72;
  margin-bottom: 1.5rem;
   line-height: 1.2;
}

.hero-text p {
          font-size    :   1.2rem;
       color: #666;
     margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
   flex-wrap: wrap;
}

.primary-btn, .secondary-btn {
       padding: 12px 30px;
    text-decoration: none;
   border-radius: 5px;
    font-weight: 600;
  transition: all 0.3s ease;
  display: inline-block;
}

.primary-btn {
  background: #f39c12;
  color: white;
}

.primary-btn:hover
{
   background: #e67e22;
  -webkit-transform: translateY(-2px);
  transform: translateY(-2px);
  -ms-transform: translateY(-2px);
}

.secondary-btn {

    background: transparent;
 color: #1e3c72;
   border: 2px solid #1e3c72;


}

.secondary-btn:hover {
	background: #1e3c72;
  color  :   white;
}

.hero-image {
  width: 100%;
	  height: auto;
	   border-radius: 10px;
	  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.features-showcase {
    padding: 5rem 5%;
    background: white;
}

.container {
   max-width: 1200px;
   margin: 0 auto;
}

.features-showcase h2 {
   text-align: center;
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom     :      3rem;
}

.features-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
   background: #f8f9fa;
   padding: 2rem;
   border-radius: 10px;
  text-align    :   center;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
	
}

.feature-card:hover {
  transform: translateY(-5px); 
	
}

.feature-card img {


  width: 100%;
               height: 200px;
   object-fit: cover;
    border-radius     :    8px;
   margin-bottom  : 1.5rem;


}

.feature-card h3		{
    color: #1e3c72;
  margin-bottom: 1rem;
   font-size: 1.4rem;
}

.feature-card p {
  color: #666;
    line-height: 1.6;
}

.cta-section {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
   padding: 4rem 5%;
    text-align   :    center;
   color: white;
}

.cta-content h2 {
   font-size: 2.3rem;
   margin-bottom: 1rem;
} 

.cta-content p {
	font-size: 1.1rem;
  margin-bottom: 2rem;
   opacity: 0.9;
}

.cta-button {
   display: inline-block;
   background: #f39c12;
        color: white;
  padding: 15px 40px;
   text-decoration: none;
	 border-radius:       50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
   	background: #e67e22;

  transform: scale(1.05);}

.expertise-area {
   padding    :5rem 5%;
  background: #f8f9fa;
}

.expertise-content {
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center; 

}

.expertise-text h2 {
    font-size: 2.2rem;
  color: #1e3c72;
   margin-bottom: 2rem;
}

.benefit-item		{
  margin-bottom: 2rem; 

}

.benefit-item h4		{
   margin-bottom: 0.5rem;
    font-size: 1.2rem;
    color: #f39c12;
}

.benefit-item p {
         color: #666;
}

.expertise-image img {
   width  :100%;
  height: auto;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-section {


    padding: 5rem 5%;
    background: white;
     }

.contact-section h2 {
  text-align: center;
    font-size: 2.5rem;
   color: #1e3c72;
   margin-bottom: 3rem;
}

.contact-wrapper {
     display: grid;
  grid-template-columns: 1fr 1fr;
        gap    :3rem;
    max-width: 1000px;
	 margin: 0 auto;}

.contact-info h3 {
  color: #1e3c72;
   font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-info p {
   color: #666;
   margin-bottom  :       2rem;
}

.contact-item {
   margin-bottom: 1rem;
}

.contact-item strong {
   color: #1e3c72;
   display: inline-block;
  width: 80px;
}

.contact-form  {
  background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;

}

.form-group {
  margin-bottom    : 1.5rem;
}

.form-group label {
  display: block;
   margin-bottom: 0.5rem;
    color: #1e3c72;
   font-weight: 600;
}



.form-group input,
.form-group select,
.form-group textarea

{
   width: 100%;
    padding: 12px;
  border: 2px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #f39c12;
}

.submit-btn {
  background: #f39c12;
  color: white;
  padding: 12px 30px;
    border    :none;
	border-radius: 5px;
   font-size: 1.1rem;
    font-weight :  600;
  cursor: pointer;
  transition: background 0.3s ease;
   width   :   100%;
}

.submit-btn:hover {
        background: #e67e22;
}

.site-footer {

	  background: #1a1a1a;
   color: white;
        padding: 3rem 5% 1rem;
     }

.footer-content {
  display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
  gap     :2rem;
   max-width: 1200px;
    margin: 0 auto;
}

.footer-logo   {
     height: 40px;
   width: auto;
  filter: brightness(0) invert(1);
   margin-bottom: 1rem;


}

.footer-brand h3 {
  color: #f39c12;
  margin-bottom: 1rem;
}

.footer-brand p {
    color     :        #ccc;
   line-height: 1.6;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    margin-bottom: 1rem;
    color: #f39c12;
}

.footer-links ul,
.footer-legal ul {


  list-style: none;

}

.footer-links a,
.footer-legal a {
  color: #ccc;
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
   color: #f39c12;
}

.footer-contact p {
    color   :#ccc;
   margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid #333;
	margin-top: 2rem;
   padding-top: 1rem;
   text-align: center;
   color: #888;
}@media (max-width: 768px) {
    .burger-btn {
        display: flex;
    }

    .menu-items {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1e3c72;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .menu-items.active {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .expertise-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-actions {
        justify-content: center;
    }
}.page-hero {
   margin-top: 80px;
  background: linear-gradient(rgba(30, 60, 114, 0.8), rgba(42, 82, 152, 0.8)), url('previews/wealth_building_strategies_4.webp') center/cover;
               padding: 5rem 5%;
  color: white;
    text-align: center;
}

.page-hero h1 {
       font-size: 3rem;

   margin-bottom :   1rem;}

.page-hero p {
   font-size: 1.3rem;
    opacity: 0.9;
  max-width: 600px;
  margin :  0 auto;
}

.about-intro {
	padding: 5rem 5%;
  background  :       white;
}

.intro-content {
  gap: 3rem;
	 display: grid;
    align-items: center;
  grid-template-columns: 2fr 1fr;
}

.intro-text h2 {
    color: #1e3c72;
	font-size: 2.5rem;
  margin-bottom: 2rem;
}

.intro-text p {
    color   :        #666;
  font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height    :      1.7;
}



.mission-points {
	 margin-top: 2rem;
}

.point-item {
   margin-bottom: 2rem;
    padding-left: 1rem;
    border-left  :    4px solid #f39c12;
}

.point-item h4 {
    color: #1e3c72;
   margin-bottom: 0.5rem;
   font-size: 1.3rem;
}

.point-item p {
	color: #666;
  margin-bottom: 0;
}

.intro-image img {
  width: 100%;
   height : auto;
   border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.our-approach {
  padding: 5rem 5%;
				 background: #f8f9fa;
}

.our-approach h2 {
   text-align:  center;
  margin-bottom :    3rem;
  color: #1e3c72;
  font-size    : 2.5rem;
}

.approach-grid

{
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); 
    gap: 2rem;
}

.approach-card {
    background: white;
    padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
}

.approach-card img {
    width: 100%;
  height: 200px;
   object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.approach-card h3     {
   color: #1e3c72;
  margin-bottom:        1rem;
   font-size: 1.4rem;
}

.approach-card p {
        color: #666;
	line-height: 1.6;
}

.company-values {
    padding: 5rem 5%;
    background: white;
}

.company-values h2 {
   text-align: center;
   color: #1e3c72;
    font-size: 2.5rem;
	 margin-bottom: 3rem; 

}

.values-content {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.value-item {
    margin-bottom: 2.5rem;
}

.value-item h3 {
    color: #f39c12;
  margin-bottom: 1rem;
      font-size: 1.4rem;
}

.value-item p
{
    color  :      #666;
    line-height: 1.6;
}

.values-image img		{
   width: 100%;
    height: auto;
    border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.why-choose-us {
                    padding: 5rem 5%;
    background: #f8f9fa;
}

.why-choose-us h2 {
   text-align: center;
		 color: #1e3c72;
    font-size: 2.5rem;
  margin-bottom: 3rem;

}

.reasons-grid {
    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
}

.reason-box {
  background: white;
  padding: 2rem;
    border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
   text-align    :  center;
	transition: transform 0.3s ease;
}

.reason-box:hover {

  transform: translateY(-5px);


	}

.reason-box h4 {
   color: #1e3c72;
     margin-bottom: 1rem;
      font-size: 1.3rem;
}

.reason-box p {
  color  :       #666;
	line-height: 1.6;
}

.cta-about {
  background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
	               padding: 4rem 5%;
	    text-align: center;
	   color: white;
}

.cta-about h2 {
    font-size: 2.3rem;
	margin-bottom: 1rem;
}

.cta-about p {
  margin-bottom: 2rem;
    font-size: 1.1rem;
  opacity: 0.9;
}


.thankyou-hero {
   margin-top: 80px;

	   padding: 5rem 5%;

	  background: linear-gradient(45deg, #f8f9fa 0%, #e9ecef 100%);

	  min-height: 80vh;

	    display: flex;

	   align-items: center;
}

.thankyou-content {
    display: grid;

    grid-template-columns :        2fr 1fr;

  gap:3rem;

    align-items   :   center;
}

.success-icon {
   text-align: center;
    margin-bottom: 2rem;
}

.checkmark-circle    {
    width   :80px;
	 height: 80px;
    border-radius: 50%;
    background: #27ae60;
   display: inline-flex;
  align-items: center;
                    justify-content: center;
   margin: 0 auto;
  animation   :scaleIn 0.5s ease-out;
}

.checkmark {
	    width: 30px;
    height: 15px;
    border: 3px solid white;
   border-top: none;
   border-right: none;
  transform: rotate(-45deg);}@keyframes scaleIn {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}.thankyou-content h1 {

	 color: #1e3c72;
   font-size: 2.8rem;
    margin-bottom     :        1rem;
    text-align: center;


}

.lead-text {
                    font-size: 1.3rem;
  color: #666;
         margin-bottom:      3rem;
    text-align: center;
}

.next-steps h2 {
    color: #1e3c72;
    font-size:2rem;
   margin-bottom: 2rem;
   text-align: center;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.step-item {
	   text-align: center;
   padding: 1.5rem;
	}

.step-number{
  width: 50px;
    height: 50px;
  background: #f39c12;
  color: white;
    border-radius: 50%;
  display: flex;
    align-items: center;
  justify-content: center;
	 font-size: 1.5rem;
   font-weight: bold;
  margin: 0 auto 1rem;
}

.step-item h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
    color: #1e3c72;
}

.step-item p {
     color: #666;
    line-height: 1.6;
}

.contact-info-box {
  background: #f8f9fa;
                    padding: 2rem;
   border-radius: 10px;
  text-align: center;
   margin-bottom: 2rem;
          border-left: 4px solid #f39c12;
	}

.contact-info-box h3 {
  color: #1e3c72;
   margin-bottom: 1rem;

}

.contact-info-box p {
   color: #666;
   margin-bottom: 1rem;
}

.contact-details p  
  {
    margin-bottom: 0.5rem;
	}

.contact-details strong	{
    color: #1e3c72;
}

.action-buttons  
  {
   display     :       flex;
	gap: 1rem;
   justify-content: center;
   flex-wrap: wrap;
}  

.thankyou-image img {
   width :  100%;
                    height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);


}

.while-waiting {
    padding  :    4rem 5%;
  background: white;
}

.while-waiting h2 
 {
  text-align: center;
    color: #1e3c72;
    font-size: 2.3rem;
   margin-bottom: 3rem;
}

.preparation-tips    {
  display     :   grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.tip-card {
    background: #f8f9fa;
    padding    :2rem;
   border-radius    : 10px;
   border-top: 4px solid #f39c12;
}

.tip-card h4 {
   color: #1e3c72;

  margin-bottom: 1rem;

    font-size: 1.3rem;
}

.tip-card p {
     color: #666;
    line-height: 1.6;


}

.testimonial-preview {
   padding: 4rem 5%;
   background: #f8f9fa;
}

.testimonial-preview h2 {
   text-align: center;
    color  :   #1e3c72;
  font-size: 2.3rem;
  margin-bottom: 3rem;
}

.testimonials-grid	{
    display  :grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap :       2rem;
}

.testimonial-card {
   background   : white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.testimonial-card p {
   color: #666;
   font-style :     italic;
   margin-bottom: 1.5rem;
   line-height: 1.6;
}

.testimonial-author strong {
    color    :  #1e3c72;
   display: block;
      margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: #999;
   font-size: 0.9rem;
}@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2.3rem;
    }

    .intro-content {
        grid-template-columns: 1fr;
    }

    .values-content {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        grid-template-columns: 1fr;
    }

    .thankyou-content h1 {
        font-size: 2.2rem;
    }

    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .approach-grid {
        grid-template-columns: 1fr;
    }

    .reasons-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}.cookies-privacy-section {
    padding: 5rem 5%;
   background     :     #f8f9fa;
}

.cookies-privacy-section h2 {
   text-align: center;
         color:        #1e3c72;
   font-size     : 2.5rem;
   margin-bottom: 3rem;
}

.cookies-privacy-content {
    max-width: 1000px;
  margin: 0 auto;
  background    :white;
   padding: 2rem;
      border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.cookies-privacy-content p {
    color: #666;

	font-size: 1.1rem;

    margin-bottom: 1.5rem;

  line-height:     1.7;
}@media (max-width: 768px) {
    .cookies-privacy-content {
        padding: 1.5rem;
    }

    .cookies-privacy-section h2 {
        font-size: 2rem;
    }
}