* {
    margin: 0;
   padding: 0;
    box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
      line-height: 1.6;
	color: #333;
} 

.navbar-container {
    position: fixed;
   top: 0;
   left: 0;
   right: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.navbar-wrapper {
   max-width: 1200px;
      margin: 0 auto;
    display     :     flex;
    justify-content: space-between;
  align-items: center;
	 padding: 1rem 2rem;
}

.brand-section .company-logo {
    height: 45px;
  width: auto;
}

.desktop-navigation {
  display: flex;

	  gap: 2rem;
}

.desktop-navigation a		{
  text-decoration: none;
                    color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-navigation a:hover  
  {
   color   : #2c5aa0;
}

.mobile-toggle
	{
   display: none; 
  flex-direction: column; 
    cursor: pointer; 
   gap: 4px;
}

.mobile-toggle span {
   transition: 0.3s;
  background: #333;
    width: 25px;
    height: 3px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
   opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {

	  transform: rotate(45deg) translate(-5px, -6px);
}

.mobile-navigation {


   display: none;
	 position: fixed;
    top: 80px;
   left: 0;
  right: 0;
  background: white;
    flex-direction: column;
    padding  :     1rem 2rem;
  border-top: 1px solid #eee;
     }

.mobile-navigation a {

	               padding: 1rem 0; 
	  text-decoration : none; 
	   color: #333; 
	   border-bottom: 1px solid #eee; 
	  font-weight: 500;
}

.hero-section   {
    padding: 120px 2rem 80px; 
	  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%); 
	    min-height: 100vh; 
	  display: flex; 
	  align-items: center;
}

.hero-content {
  max-width: 1200px; 
	   margin: 0 auto; 
	   display: grid; 
	  grid-template-columns :      1fr 1fr; 
	    gap : 4rem; 
	  align-items:        center;
}



.hero-text h1 {
   font-size: 3.2rem;
    font-weight: 700;
   color: #2c3e50;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-description {
	 font-size: 1.2rem;
	color: #6c757d;
  margin-bottom: 2.5rem;
   line-height: 1.7;
}

.hero-actions {
    gap: 1.5rem;
                    display: flex;
}

.primary-button, .secondary-button {
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 8px;
   font-weight: 600;
  transition: all 0.3s ease;
   display: inline-block;
}

.primary-button {
    background: #2c5aa0;
  color:   white;
}

.primary-button:hover {
   background: #1e3d6f;
  transform: translateY(-2px);

}

.secondary-button {
   background: transparent;
    color: #2c5aa0;
  border  :       2px solid #2c5aa0;
}

.secondary-button:hover {
	color: white;
     background   :      #2c5aa0;
}

.hero-image img {
      width: 100%;
	height: 400px;
   object-fit: cover;
    border-radius: 15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
     }

.services-section {
      padding: 80px 2rem;
   background: white;
}

.section-header {

   max-width :  600px;
   text-align: center;
  margin: 0 auto 4rem;}

.section-header h2 {
   font-size: 2.5rem;
	color: #2c3e50;
    margin-bottom: 1rem;
}

.section-header p {
   font-size  :       1.1rem;
   color: #6c757d;
}

.services-grid {
   max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 3rem;
}

.service-card {
   background: white;
   border-radius: 15px;
   overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
   transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px); 
	
}

.service-card img {
    width     :      100%;
   height  : 250px;
  object-fit: cover;
}

.service-card h3
{
  font-size: 1.5rem;
  color: #2c3e50;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p{
    color: #6c757d;
    margin     : 0 1.5rem 1.5rem;
  line-height: 1.6;}

.features-section {
     padding: 80px 2rem;
    background: #f8f9fa;

}

.features-content {
   max-width: 1200px; 
	    margin    :0 auto; 
	   display: grid; 
	    grid-template-columns: 1fr 1fr; 
	   gap: 4rem; 
	   align-items: center;
}

.features-text h2 {
   color: #2c3e50;
    margin-bottom     :        2rem;
  font-size: 2.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
               gap: 2rem;
}

.feature-item h4 {
  font-size: 1.3rem;
	color: #2c5aa0;
   margin-bottom     :     0.5rem;
}

.feature-item p {
   color: #6c757d;
    line-height: 1.6;
}

.features-image img {
    width: 100%;
  height   :      400px;
    object-fit: cover;
	border-radius: 15px;
}

.cta-section    {
  padding  :      80px 2rem;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
  color: white;
   text-align: center;
}

.cta-content {
   max-width   :  800px;
   margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
   margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.1rem;
   margin-bottom : 2.5rem;
    line-height: 1.7;
}

.cta-button {
    padding: 18px 40px;
   background: white;
  color: #2c5aa0;
  text-decoration    :    none;
	 border-radius: 8px;
  font-weight    :  600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
   display: inline-block;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.contact-section {
  padding: 80px 2rem;
    background: white; 

}

.contact-container {
	max-width  :  1200px;
	margin :        0 auto;
	 display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
   color: #2c3e50;
   margin-bottom     : 2rem;
}

.contact-details {
  display: flex;
   flex-direction: column;
  gap: 2rem;
}

.contact-item h4 {
   font-size: 1.2rem;
         color: #2c5aa0;
        margin-bottom: 0.5rem;
}

.contact-item p {
  color: #6c757d;
               line-height: 1.6;
}  

.contact-form {
	background     :    #f8f9fa;
   padding: 2.5rem;
   border-radius: 15px;
}

.contact-form h3 {
   font-size: 1.8rem;
        color: #2c3e50;
    margin-bottom: 2rem;
}  

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
               width: 100%;
   padding: 15px;
    border: 1px solid #ddd;
  border-radius: 8px;
   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: #2c5aa0;
}

.submit-button


{
  background: #2c5aa0;
  padding    :      15px;
   cursor: pointer;
   font-size: 1.1rem;
   border-radius: 8px;
    font-weight: 600;
    border     :  none;
    width: 100%;
    transition: all 0.3s ease;
    color: white;
}

.submit-button:hover {
         background   :     #1e3d6f;
  transform: translateY(-2px);
}

.footer-section  {
   background: #2c3e50;
	   color: white;
	   padding: 50px 2rem 20px;
}

.footer-content {

   max-width: 1200px;
   margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
	}

.footer-brand p {
  margin-top: 1rem;
   color    :        #bdc3c7;
  line-height: 1.6;
}

.footer-logo {
 height: 40px; 
  width:   auto; 
  filter: brightness(0) invert(1);
}

.footer-links

{
       display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap     :      2rem;
}

.footer-column h4 {
  color: white;
   margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
  display    :   block;
    color: #bdc3c7;
	 text-decoration: none;
	margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: white;


}



.footer-column p {
   color: #bdc3c7;
   margin-bottom: 0.5rem;
    line-height: 1.6;
}

.footer-bottom {
   max-width: 1200px;
   margin   :        2rem auto 0;
	 padding-top: 2rem;
        border-top: 1px solid #34495e;
   text-align: center;
	color: #bdc3c7;
}@media (max-width: 768px) {
    .desktop-navigation {
        display: none;
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .features-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .navbar-wrapper {
        padding: 1rem;
    }
    
    .hero-section {
        padding: 100px 1rem 60px;
    }
    
    .services-section,
    .features-section,
    .cta-section,
    .contact-section {
        padding: 60px 1rem;
    }
}.page-hero {

	  background: linear-gradient(rgba(44, 90, 160, 0.8), rgba(30, 61, 111, 0.8)), url('concepts/business_correspondence_course_3.webp');
  background-size: cover;
   background-position: center;
  height: 60vh;
                    display: flex;
    align-items: center;
		 justify-content :     center;
      text-align: center;
    color: white;


}

.hero-content-about {
    max-width: 800px;

    padding: 0 2rem;
}

.hero-content-about h1  
  {
    font-size :       3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content-about p {
  font-size: 1.3rem;
  line-height: 1.6;
}

.about-intro {
   padding: 80px 2rem;
     background: white;
}

.about-content {
  max-width   :       1200px;
	margin: 0 auto;
    display: grid;
   grid-template-columns: 1fr 1fr;
   gap     :   4rem;
  align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.intro-text p {
  font-size: 1.1rem;
     color: #6c757d;
      line-height :    1.7;
       margin-bottom: 1.5rem;

}

.intro-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
   border-radius: 15px;
}

.values-section {
   background: #f8f9fa;
   padding: 80px 2rem;
}

.values-container {
   max-width: 1200px;
  margin: 0 auto;
    text-align: center;
}

.values-container h2 {
  font-size: 2.5rem;
   color: #2c3e50;
  margin-bottom     :     3rem;
	
}


.values-grid {
         display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.value-card {
	  background :      white;
    padding: 2.5rem 2rem;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;}

.value-card:hover  {
  transform: translateY(-5px); 
	
}

.value-card h3 {

	  font-size: 1.4rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.value-card p {
	  color     :       #6c757d;
   line-height: 1.6;

}

.expertise-section

{
  padding: 80px 2rem;
    background: white;
}


.expertise-content {
   max-width: 1200px;
    margin: 0 auto;
   display: grid;
   grid-template-columns: 1fr 1fr;
	 gap :        4rem;
          align-items: center;
}

.expertise-image img {
	width: 100%;
    height: 400px;
  object-fit: cover;
	border-radius: 15px;
}

.expertise-text h2 {
   font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.expertise-list {
     display: flex;
  flex-direction: column;
    gap: 2rem;
     }

.expertise-item h4 {
	   font-size   :     1.3rem;
  color: #2c5aa0;
   margin-bottom: 0.5rem;

}

.expertise-item p


{
       color: #6c757d;
	 line-height: 1.6;
}

.approach-section {
    padding: 80px 2rem;
  background: #f8f9fa;
}

.approach-container {
   max-width: 1200px;
   text-align: center;
  margin: 0 auto;
} 

.approach-container h2 {
	margin-bottom: 3rem;
	 color: #2c3e50;
  font-size   :   2.5rem;
}

.approach-steps {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.step-item {
	background: white;
  padding: 3rem 2rem;
    border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.step-number {
    display: inline-block;
	 width: 60px;
   height: 60px;
  background: #2c5aa0;
    color: white;
    border-radius: 50%;
   font-size: 1.5rem;
    font-weight :    bold;
   line-height: 60px;
    margin-bottom     :    1.5rem;
}

.step-item h3 {


   font-size: 1.4rem;
  color: #2c3e50;
  margin-bottom: 1rem;
     }

.step-item p  {
   color: #6c757d;
    line-height :    1.6;
}

.statistics-section {
   padding: 80px 2rem;
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3d6f 100%);
    color: white;
}

.stats-container {
   max-width: 1200px;
  margin  :0 auto;
    display : grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
   gap: 2rem;
    text-align: center;
}

.stat-item h3 {
  font-size: 3rem;
    font-weight: bold;
   margin-bottom: 0.5rem;
}

.stat-item p {
   font-size: 1.1rem;
    opacity: 0.9;
}

.thankyou-hero {
   padding: 120px 2rem 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  min-height: 100vh;
}

.thankyou-container {
  max-width: 1200px;
       margin:    0 auto;
   display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items:start;
}

.thankyou-content {
    text-align: center;
}

.success-icon {
  margin-bottom: 2rem;
}

.checkmark {
   -moz-border-radius: 50%;
    width: 80px;
  height: 80px;
   border-radius: 50%;
    background: #27ae60;
    position: relative;
    margin   : 0 auto;
		 display: flex;
  align-items: center;
    justify-content: center;
}

.checkmark::before {
	  content: '✓'; 
		font-size: 2.5rem; 
	    color   :   white; 
	  font-weight :     bold;

}

.thankyou-content h1 {
    font-size    :       3rem;
	color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thankyou-message
	{

	  font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom   :     3rem;


}

.next-steps {
   margin-bottom: 3rem;
    text-align: left;
}

.next-steps h2 {
  font-size: 2rem;
  color: #2c3e50;
          margin-bottom: 2rem;
  text-align: center;

}

.steps-list {
    display: flex;
  flex-direction: column;
   gap: 2rem;
}

.step-item-thankyou {
    display: flex;
    align-items : flex-start;
   gap: 1.5rem;
    background: white;
   padding: 2rem;
  border-radius     :      10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.step-number-thankyou {
   background  :     #2c5aa0;
  color: white;
  width: 40px;
    height: 40px;
   border-radius: 50%;
   display: flex;
   align-items: center;
  justify-content: center;
  font-weight: bold;
  flex-shrink: 0;
} 

.step-content h3 
 {
   font-size: 1.3rem;
	 color: #2c3e50;
  margin-bottom    :    0.5rem;
}

.step-content p {
	 color: #6c757d;
  line-height: 1.6;
}

.additional-info {
  margin-bottom: 3rem;
}

.additional-info h2 {
    font-size   :    2rem;
   color: #2c3e50;
  margin-bottom: 2rem;
    text-align    :     center;
}

.info-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
  background: white; 
	    padding: 1.5rem; 
	   border-radius: 10px; 
	  box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
			text-align: left;
}



.info-card h3 {
   font-size: 1.2rem;
    color    :   #2c5aa0;
    margin-bottom     :     0.5rem;
}

.info-card p {
    color: #6c757d;
    line-height: 1.6;
   font-size: 0.95rem;
}

.action-buttons
	{
    flex-wrap :       wrap;
   justify-content: center;
  display: flex;
   gap: 1.5rem;
}



.thankyou-image img {


    width: 100%;
	height: 500px;
    object-fit: cover;
    border-radius:  15px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);}@media (max-width: 768px) {
    .hero-content-about h1 {
        font-size: 2.5rem;
    }
    
    .hero-content-about p {
        font-size: 1.1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .approach-steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .thankyou-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thankyou-content h1 {
        font-size: 2.5rem;
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .step-item-thankyou {
        flex-direction: column;
        text-align: center;
    }
    
    .step-content {
        text-align: left;
    }
    
    .page-hero {
        height: 50vh;
    }
    
    .values-section,
    .approach-section,
    .about-intro,
    .expertise-section,
    .statistics-section {
        padding: 60px 1rem;
    }
    
    .thankyou-hero {
        padding: 100px 1rem 60px;
    }
}.privacy-section {
  padding: 80px 2rem;
  background: white;
}

.privacy-content {
    max-width    :  1200px;
  margin: 0 auto;
   color: #6c757d;
     line-height: 1.7; 
	
}

.privacy-content p {
    margin-bottom: 1.5rem;

   font-size: 1.1rem;
}@media (max-width: 768px) {
    .privacy-section {
        padding: 60px 1rem;
    }
}