* {
    margin:   0;
   padding:     0;
   box-sizing: border-box;
}

:root {
    --primary-color: #1e3a5f;
    --secondary-color: #2d5a8c;
    --accent-color: #3498db;
    --light-bg: #f8f9fa;
    --dark-text: #2c3e50;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

html {
	scroll-behavior: smooth;
}

body {

	  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  color: var(--dark-text);
    line-height: 1.6;
     background-color: #ffffff;

}

.navbar {
  background-color: var(--primary-color);
  padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index   :1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-container  {
    max-width: 1200px;
	 margin    : 0 auto;
	   padding   :    0 2rem;
	   display: flex;
	   justify-content: space-between;
	    align-items: center;

}

.nav-logo img {

	   height:     64px;
   width: auto;
  filter: brightness(0) invert(1);
     }

.nav-menu {
               display: flex;
   list-style: none;
      gap: 2rem;
}

.nav-link {
    color   :    #ffffff;
  text-decoration: none;
    font-weight: 500;
   transition :    color 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
  color: var(--accent-color);
}

.burger-menu {
  display     :     none;
         flex-direction: column;
	 background     :        none;
    border: none;
	cursor   :    pointer;
        gap: 6px;
}

.burger-menu span {
    width: 28px;
   height: 3px;
	background-color: #ffffff;
   border-radius: 2px;
  transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
     } 

.burger-menu.active span:nth-child(2)

{
  opacity   :0;
}

.burger-menu.active span:nth-child(3) {

	  transform: rotate(-45deg) translate(7px, -7px);
     }

.hero {

    display: grid;
	grid-template-columns: 1fr 1fr;
    gap: 3rem;
	 align-items: center;
    padding     :    5rem 2rem;
    max-width :  1200px;
   margin  :       0 auto;
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
	}

.hero-content h1
{
       font-size  :    3rem; 
  color: var(--primary-color); 
  margin-bottom: 1rem; 
   line-height: 1.2; 
   font-weight: 700;
     }

.hero-content p {
    font-size    :       1.2rem;
   color: #555;
        margin-bottom: 2rem;

}


.hero-btn {
     display: inline-block;
  background-color: var(--accent-color);
        color     :        white;
    padding: 0.9rem 2rem;
               border-radius: 8px;
  text-decoration: none;
        font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
   border   :  none;
  font-size: 1rem;
	
}

.hero-btn:hover {
   background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3);
}

.hero-image img {
   width: 100%;
    height: auto;
                    border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.services-preview {
    padding: 5rem 2rem;
  background-color: var(--light-bg);
}

.section-header{
   text-align: center;
    max-width: 600px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
   margin-bottom: 0.5rem;
	
}

.section-header p {
         font-size: 1.1rem;
   color  :      #666;
}

.services-grid    {
                    display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
 margin: 0 auto;
}

.service-card {
    background: white;
  border-radius: 12px;
    overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
	}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}


.service-card img {
                    width: 100%;
   height: 220px;
  object-fit   : cover;
}

.service-card h3 {


    font-size: 1.5rem;
  color: var(--primary-color);
    padding    :  1.5rem 1.5rem 0.5rem;


}  

.service-card p {
    padding: 0 1.5rem 1.5rem;
    color: #555;
      line-height: 1.6;
}

.coaching-section 
 {
   display: grid;
   grid-template-columns: 1fr 1fr;
	gap: 3rem;
  align-items:center;
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.coaching-content h2 {
   font-size: 2.5rem;
  color: var(--primary-color);
    margin-bottom:    1rem;
}

.coaching-content p {
   font-size: 1.1rem;
  color     :     #666;
  margin-bottom: 2rem;
}

.coaching-list {
         list-style: none;
}

.coaching-list li {
    padding: 0.8rem 0;
  padding-left: 2rem;
 position :        relative;
  color: #555;
} 

.coaching-list li:before {
  content: "✓"; 
	  position: absolute; 
	   left   :  0; 
	  color: var(--success-color); 
	    font-weight: bold; 
	          font-size :      1.2rem;
}

.coaching-section img {
  width: 100%;
  height: auto;
    border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.webinar-section {

  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color   :  white;
  padding: 5rem 2rem;
   text-align: center;



}

.webinar-header {
  max-width     :    800px;
   margin: 0 auto 3rem;
}

.webinar-header h2 {
    font-size: 2.5rem;
  margin-bottom: 1rem;
  color: white;
}

.webinar-header p   {
   font-size: 1.1rem;
   opacity: 0.95; 
	
}

.webinar-offers {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 2rem;
	max-width: 1200px;
   margin: 0 auto;
}

.webinar-item {
  background: rgba(255, 255, 255, 0.1);
    padding :2rem;
   border-radius    :      12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.webinar-item:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}

.webinar-item h3 {

    font-size: 1.5rem;
   margin-bottom: 1rem;
     }

.webinar-item p {
    opacity: 0.9;
   line-height     :   1.6;
}

.expertise-section   {
   display: grid;
    grid-template-columns: 1fr 1fr;
		gap: 3rem;
    align-items:  center;
 padding: 5rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.expertise-section img {
  width: 100%;
  height   :       auto;
    border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.expertise-text h2 {

	    font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;

}

.expertise-text p {

	  font-size: 1.1rem;
	color: #666;
   margin-bottom: 2rem;
	
}

.expertise-features {
	display  : grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
	gap: 2rem;
}

.feature-item {
	flex-direction: column;
		gap: 0.5rem;
  display: flex;

}

.feature-number {
    font-size: 2.5rem;
	font-weight  : 700;
  color: var(--accent-color);
}

.feature-label {
  font-size: 0.95rem;
    color: #666;

}

.cta-section {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
 color: white;
  padding: 4rem 2rem;
       text-align: center;
}

.cta-container {
   max-width: 800px;
    margin: 0 auto;
}

.cta-container h2


{
   font-size: 2.5rem;
	 margin-bottom     :        1rem;
}

.cta-container p  
  {
  opacity: 0.95;
     font-size: 1.1rem;
        margin-bottom: 2rem;
}  

.cta-button {
    display: inline-block;
	 background-color: white;
  color: var(--accent-color);
   padding: 1rem 2.5rem;
   border-radius: 8px;
  text-decoration: none;
   font-weight: 600;
    transition: all 0.3s ease;
  font-size: 1rem;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.contact-section {
	 padding: 5rem 2rem;
  background-color: var(--light-bg);
}

.contact-container


{
 max-width: 700px;
         margin: 0 auto; 

}


.contact-container h2 {


         font-size: 2.5rem;
  color: var(--primary-color);
    text-align: center;
         margin-bottom: 0.5rem;
}

.contact-container > p {
   text-align    :     center;
    color   :       #666;
                    margin-bottom: 3rem;
   font-size     :        1.1rem;
}

.contact-form {
  background   :    white;
   padding: 2.5rem;
    border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
  margin-bottom  :  1.5rem;
    display  : flex;
  flex-direction  :     column; 

}


.form-group label {
   font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--dark-text);
}

.form-group input,
.form-group select,
.form-group textarea {
	padding: 0.8rem 1rem;
  border: 2px solid var(--border-color);
	border-radius: 8px;
    font-family :  inherit;
   font-size  :    1rem;
	transition: all 0.3s ease;
  color: var(--dark-text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
   outline: none;

  border-color: var(--accent-color);

  box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.form-submit {
 width: 100%;
  padding: 1rem;
  background-color: var(--accent-color);
    color: white;
   border : none;
  border-radius   :8px;
	 font-size: 1rem;
    font-weight: 600;
  cursor: pointer;
	 transition: all 0.3s ease;
}

.form-submit:hover {
   background-color :       #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(52, 152, 219, 0.3);
}

.footer {
  background-color: var(--primary-color);
	color: white;
    padding: 3rem 2rem 1rem;
}

.footer-container
{
    max-width: 1200px;
    margin :      0 auto;
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
   margin-bottom    :        2rem;

}

.footer-logo-section	{
  display: flex;

  align-items: flex-start;
}

.footer-logo {
   height: 86px;

	  width: auto;

	  filter: brightness(0) invert(1);
}

.footer-info 
 {
    gap: 2rem;
 flex-direction: column;
   display: flex;
}

.footer-address h3,
.footer-phone h3 {
  font-size :   1.1rem;
	margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.footer-address p,
.footer-phone p {
  opacity: 0.9;
    line-height: 1.8;
}

.footer-phone a {
               color: white;
   text-decoration: none;
   transition: color 0.3s ease;
}

.footer-phone a:hover
	{


  color: var(--accent-color);
     }

.footer-nav


{
  display: grid;
    grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-nav-group h3
	{
  font-size: 1.1rem;
	margin-bottom: 1rem;
  color: var(--accent-color);
}

.footer-nav-group ul {
   list-style: none;
}

.footer-nav-group ul li{
   margin-bottom  : 0.5rem;
}

.footer-nav-group a {
       color: white;
   text-decoration: none;
   opacity: 0.85;
   transition: all 0.3s ease;
	
}

.footer-nav-group a:hover {


	 opacity: 1;
  color: var(--accent-color);
  padding-left: 0.5rem;}

.footer-bottom {

	               text-align :  center;
    padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
   opacity: 0.8;
	}@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--primary-color);
        flex-direction: column;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-menu.active {
        max-height: 300px;
        padding: 1rem 0;
    }
    
    .nav-menu li {
        padding: 1rem 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .coaching-section,
    .expertise-section {
        grid-template-columns: 1fr;
        padding: 3rem 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .webinar-section,
    .cta-section {
        padding: 3rem 1rem;
    }
    
    .webinar-header h2,
    .cta-container h2 {
        font-size: 2rem;
    }
    
    .webinar-offers {
        grid-template-columns: 1fr;
    }
    
    .expertise-features {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-nav {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .coaching-content h2,
    .expertise-text h2,
    .webinar-header h2,
    .cta-container h2 {
        font-size: 1.5rem;
    }
    
    .feature-number {
        font-size: 2rem;
    }
    
    .nav-menu li {
        padding: 0.8rem 1.5rem;
    }
}.services-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
  padding: 4rem 2rem;
   text-align: center;
     }

.services-hero-content h1     {

	          font-size: 3rem;
    margin-bottom    :      1rem;
   font-weight  :     700;

}

.services-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.service-detail-section {
    padding:      5rem 2rem;
  max-width: 1200px;
    margin:    0 auto;
}

.service-detail-container {
  display: flex;
   flex-direction: column;
	gap: 4rem;


}

.service-detail-item {
	display: grid;
 grid-template-columns: 1fr 1fr;
  gap   :        3rem;
    align-items: center;
}

.service-detail-item.alt {
    direction: rtl;
}

.service-detail-item.alt > * {
                       direction: ltr;
     }

.detail-image {
	 overflow: hidden;
          border-radius: 12px;
}

.detail-image img {
  width:     100%;
  height    :        auto;
   display: block;
    border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
    transition     :       transform 0.3s ease;
}

.detail-image:hover img     {
  transform: scale(1.05);
}

.detail-content h2 {
    font-size: 2rem;
  color: var(--primary-color);
   margin-bottom: 1rem;
    font-weight: 700;
}

.detail-content p {

	    font-size: 1.05rem;
  color: #555;
 margin-bottom: 2rem;
  line-height: 1.8;
     }

.service-details-list {
  display: flex;
  flex-direction: column;
   gap: 1rem;
}

.detail-point {
  gap: 1rem;
  align-items: flex-start;
    display: flex;
    color: #555;
}

.detail-icon {
  color: var(--accent-color);
    font-weight: bold;
   font-size: 1.2rem;
   flex-shrink: 0;
  margin-top: 0.2rem;
}

.pricing-section {
  background-color: var(--light-bg);
  padding: 5rem 2rem;
   text-align: center;
}

.pricing-section h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
	margin-bottom    :        0.5rem;
}

.pricing-intro


{
    margin-bottom   : 3rem;

	  color: #666;

		font-size: 1.1rem;
}

.pricing-grid {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
   max-width: 1200px;
    margin: 0 auto;
}

.pricing-card
	{
  background: white;
  border-radius     :12px;
  padding: 2.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
   position: relative;
    text-align: left;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
  border: 2px solid var(--accent-color);
  transform: scale(1.05); 

}

.pricing-card.featured:hover   {
  transform: scale(1.05) translateY(-8px);
}

.badge-featured {
    position : absolute;
          top: -15px;
  right: 20px;
  background-color: var(--accent-color);
   color: white;
   padding: 0.5rem 1rem;
   border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-header   {
    text-align: center;
   margin-bottom: 2rem;
   padding-bottom: 2rem;
  border-bottom: 2px solid var(--border-color);
}

.pricing-header h3 {
   font-size: 1.5rem;
  color: var(--primary-color);
    margin-bottom: 1rem;
}

.pricing-value {
  display: flex;
  justify-content     :      center;
    align-items: baseline;
   gap: 0.5rem;
}

.price-amount 
 {
               font-size:    2.5rem;
  font-weight: 700;
  color: var(--accent-color); 
	
}

.price-currency

{
    font-size: 1rem;
  color     :       #666;
}

.pricing-features {
    list-style: none;
   margin-bottom: 2rem;
}

.pricing-features li {
	padding: 0.8rem 0;
    color   : #555;
  border-bottom: 1px solid var(--border-color);
   display: flex;
	 align-items: center;
}

.pricing-features li:before {
  content: "✓";
  color: var(--success-color);
       font-weight: bold;
  margin-right: 0.8rem;
}

.pricing-btn {
   display: block;
    text-align: center;
  background-color: var(--accent-color);
    color: white;
          padding: 1rem;
  border-radius: 8px;
    text-decoration: none;
                    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
	 border: none;

}

.pricing-btn:hover {
	  background-color: #2980b9;
     transform: translateY(-2px);}

.pricing-btn.featured-btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, #2980b9 100%);
} 

.faq-section {
          padding: 5rem 2rem;
   max-width: 1200px;
   margin: 0 auto;
}

.faq-section h2 {
   font-size: 2.5rem;
  color: var(--primary-color);
	text-align: center;
  margin-bottom: 3rem; 
	
}

.faq-grid  {
   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 2rem;
}

.faq-item {
  background: var(--light-bg);
   padding   :      2rem;
    border-radius: 12px;
  border-left: 4px solid var(--accent-color);
}

.faq-question {
               font-size  : 1.1rem;
  color: var(--primary-color);
   margin-bottom: 1rem;
	font-weight: 600;
}



.faq-answer {
   font-size: 0.95rem;
  line-height: 1.8;
   color     :       #666;
}

.benefits-section {
  background: linear-gradient(135deg, #f5f7fa 0%, #e9ecef 100%);
  padding: 5rem 2rem;
}



.benefits-section h2 {
    font-size: 2.5rem;
  color: var(--primary-color);
    text-align: center;
    margin-bottom: 3rem;

}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap    :       2rem;
  max-width     :     1200px;
  margin: 0 auto;
}


.benefit-card {
	 background: white;
  padding: 2rem;
       border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.benefit-card:hover {
     transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);


}

.benefit-title {
    font-size: 1.2rem;
  color: var(--accent-color);
  margin-bottom: 1rem;
    font-weight: 600;
}

.benefit-card p {
    color: #666;
  line-height:    1.8;

}

.thankyou-hero {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  color    :       white;
    padding: 4rem 2rem;
                    min-height   : 60vh;
   display: flex;
  align-items: center;
    justify-content    :        center;
}

.thankyou-container {
   text-align: center;
   max-width: 700px;
	 margin: 0 auto;
} 

.success-icon {
   font-size  : 4rem;
  background-color: var(--success-color);
  width: 100px;
  height: 100px;
    border-radius: 50%;
  display: flex;
	 align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
    font-weight: bold;
}

.thankyou-hero h1 {
  font-size: 2.5rem;
  margin-bottom :1rem;
  font-weight     :        700;
}

.thankyou-hero > p {
   font-size: 1.2rem; 
	                    opacity:      0.95; 
	    margin-bottom     :     2rem;
}

.thankyou-details {
     background: rgba(255, 255, 255, 0.1);

	  padding: 2rem;

	   border-radius: 12px;

	  backdrop-filter: blur(10px);

	  margin    :  2rem 0;

}

.detail-text {
    font-size: 1.05rem;
   margin-bottom: 2rem;
    line-height: 1.8;
}

.next-steps {
               text-align: left;
  background: rgba(255, 255, 255, 0.05);
        padding : 1.5rem;
	 border-radius   :     8px;
   margin  :     2rem 0;
}

.next-steps h2 {
   font-size: 1.3rem;
  margin-bottom: 1rem;
}

.steps-list {
    list-style: none;
  counter-reset: step-counter;
}

.steps-list li {
  counter-increment: step-counter;
    margin-bottom :0.8rem;
   padding-left: 2rem;
    position: relative;


}

.steps-list li:before {
  content: counter(step-counter);
 position: absolute;
   left: 0;
  background-color: var(--success-color);
   width: 28px;
  height: 28px;
               border-radius: 50%;
    display   :    flex;
    align-items: center;
    justify-content: center;
   font-weight: bold;
	font-size  : 0.9rem;
}

.contact-info-box {
	  margin-top: 2rem;
    text-align: center;}

.contact-info-box p {
   margin-bottom: 1rem;
} 

.info-highlight {


  background-color: var(--success-color);
  padding: 1rem;
   border-radius: 8px;
      display: inline-block;


}

.phone-link {


   color: white;
    text-decoration: none;
 font-weight: 600;
  font-size: 1.2rem;}

.phone-link:hover {
  text-decoration: underline;
}

.action-buttons		{
 display    :flex;
    gap: 1rem;
   justify-content   :    center;
  margin-top: 2rem;
    flex-wrap     :      wrap;
}

.btn-primary,
.btn-secondary {


  text-decoration :     none;
  display: inline-block;
      border-radius: 8px;
	 padding: 1rem 2rem;
					cursor :     pointer;
	border: none;
   font-weight    :        600;
    transition: all 0.3s ease;
    font-size: 1rem; 
	
     } 

.btn-primary {
   background-color     : white;
  color: var(--primary-color);

}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background-color: transparent;
   color: white;
   border: 2px solid white;
}

.btn-secondary:hover {
	background-color:white;
  color: var(--primary-color);
}

.continue-learning  {
    padding: 5rem 2rem;
  background-color: var(--light-bg);
}

.continue-learning h2 {
	font-size: 2rem;
  color: var(--primary-color);
   text-align   :       center;
  margin-bottom: 3rem;
}

.materials-grid {

	  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1000px;
   margin: 0 auto;
	}

.material-card {
		background: white;
  padding: 2rem;
   border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition   :        all 0.3s ease;
}

.material-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.material-card h3 {
   font-size: 1.3rem;
  color: var(--accent-color);
   margin-bottom: 1rem;
}

.material-card p {
        color: #666;
    margin-bottom: 1.5rem;
	 line-height: 1.6;
}

.material-card a {
  color: var(--accent-color);
      text-decoration: none;
    font-weight     :        600;
    transition: all 0.3s ease;


}


.material-card a:hover {
    color: #2980b9;
}@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2rem;
    }

    .service-detail-item,
    .service-detail-item.alt {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-detail-item.alt {
        direction: ltr;
    }

    .detail-content h2 {
        font-size: 1.5rem;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .success-icon {
        font-size: 3rem;
        width: 80px;
        height: 80px;
    }

    .thankyou-hero h1 {
        font-size: 1.8rem;
    }

    .steps-list li {
        padding-left: 2.5rem;
    }

    .materials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-hero-content h1 {
        font-size: 1.5rem;
    }

    .services-hero-content p {
        font-size: 1rem;
    }

    .pricing-section h2,
    .faq-section h2,
    .benefits-section h2,
    .continue-learning h2 {
        font-size: 1.5rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price-amount {
        font-size: 1.8rem;
    }

    .detail-content h2 {
        font-size: 1.2rem;
    }

    .thankyou-hero {
        min-height: auto;
        padding: 2rem 1rem;
    }

    .thankyou-hero h1 {
        font-size: 1.5rem;
    }

    .thankyou-details {
        padding: 1rem;
    }

    .action-buttons {
        gap: 0.5rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}.policy-hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
   color: white;
   padding: 3rem 2rem;
  text-align: center;
}

.policy-hero-content {
    max-width: 800px;
   margin: 0 auto;
}

.policy-hero-content h1  
  {
   font-size: 2.5rem;
    margin-bottom: 1rem;
   font-weight: 700;
}

.policy-hero-content p {
   font-size: 1.2rem;
  opacity: 0.95;
}

.policySection {
	 padding: 4rem 2rem;
                    background: #f8f9fa;


}

.policyContainer {
    text-align: left;
   margin: 0 auto;
         max-width: 800px;
}

.policyContainer h2		{
    font-size: 1.8rem;
  color: var(--primary-color);
   margin-bottom: 1.5rem;
  margin-top: 2rem;
   font-weight: 700;
}

.policyContainer h2:first-child {
	 margin-top: 0;
}

.policyContainer p {
   color: #555;
	margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
  text-align: justify;
}

.policyContainer p:last-child {
  margin-bottom: 0;
}@media (max-width: 768px) {
    .policy-hero-content h1 {
        font-size: 2rem;
    }

    .policy-hero-content p {
        font-size: 1rem;
    }

    .policy-hero-section {
        padding: 2.5rem 1rem;
    }

    .policyContainer h2 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .policyContainer p {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        text-align: left;
    }

    .policySection {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .policy-hero-content h1 {
        font-size: 1.5rem;
    }

    .policy-hero-section {
        padding: 2rem 1rem;
    }

    .policyContainer h2 {
        font-size: 1.2rem;
        margin-top: 1.2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }

    .policySection {
        padding: 2rem 1rem;
    }
}