* {
  margin: 0;
  padding: 0;
    box-sizing   : border-box;
}

:root {
    --primary: #2d4a7b;
    --accent: #e8a76f;
    --text: #1a1a1a;
    --light-bg: #f5f5f5;
    --border: #e0e0e0;
    --white: #ffffff;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text);
   line-height: 1.6;
  background: var(--white);
	
}

.navbar {
  background: var(--primary);
      padding: 1.2rem 0;
   position: sticky;
  top: 0;
   z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.nav-container {


	max-width: 1200px;
    margin: 0 auto;
  padding: 0 20px;
    display: flex;
    justify-content   :       space-between;
	 align-items: center;
}

.logo-section .logo {


	height: 40px;

  width: auto;


}

.nav-links {
    display: flex;
  list-style    :   none;
    gap:    2rem;
}

.nav-links a {


  color: var(--white);
         text-decoration: none;
    font-weight     :       500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent);
}

.burger-menu {
   display: none;
  cursor: pointer;
        background:      none;
  border: none;
   padding: 0;
}

.burger-menu img   {
    width     :    24px;
  height: 24px;
  stroke: var(--white);
	
}

.hero {
  display: grid;
    grid-template-columns: 1fr 1fr;
	gap: 3rem;
    align-items: center;
   padding: 4rem 2rem;
   max-width: 1200px;
	margin   :      0 auto;
}  

.hero-content h1   {
  font-size: 2.8rem;
    margin-bottom: 1rem;
  color: var(--primary);
   line-height: 1.2;
}

.hero-content p {
   margin-bottom: 2rem;

	   font-size: 1.1rem;

	    color: #555;
}

.cta-button {
    display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 0.9rem 2.2rem;
   border-radius: 4px;
 text-decoration: none;
    font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--accent);

}

.cta-button:hover {
  background: transparent;
  color: var(--accent);
}  

.hero-image img   {
	    width: 100%;
    height: auto;
    border-radius: 8px;
   object-fit: cover;

}

.services-preview {
  padding: 4rem 2rem;
  background: var(--light-bg);
}

.section-header{

	    text-align :     center;
	margin-bottom: 3rem;
	 max-width: 1200px;
   margin-left: auto;
  margin-right: auto;

}

.section-header h2 {
   font-size: 2.2rem;
  color: var(--primary);
  margin-bottom     : 0.5rem;
}

.section-header p     {
   font-size  :1rem;
  color     :    #666;
}

.services-grid {
  display     :   grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
	 max-width: 1200px;
    margin: 0 auto;
}

.service-card {
  background: var(--white);
   border-radius :        8px;
 overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
               transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {


  transform: translateY(-5px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
	}

.service-card img {
  width: 100%;
   height   :200px;
    object-fit: cover;
}

.service-card h3 {
   font-size: 1.3rem;
  padding    : 1.5rem 1.5rem 0.5rem;
  color: var(--primary);
}

.service-card p {

	  padding: 0 1.5rem 1.5rem;
    color: #666;
    font-size: 0.95rem;


}

.why-us {
  padding: 4rem 2rem;
   max-width: 1200px;
  margin: 0 auto;
}

.why-us h2 {
    font-size: 2.2rem;
  color: var(--primary);
  margin-bottom: 2.5rem;
    text-align: center;
}

.benefits {
	  display  :        grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
   gap: 2rem;}

.benefit-item {
   padding: 2rem; 
  background: #fafafa; 
  border-left: 4px solid var(--accent); 
    border-radius: 4px;
}

.benefit-item h3 {
  font-size: 1.1rem;
  color: var(--primary);
   margin-bottom: 0.8rem;
}

.benefit-item p {
  color :  #666;
	 font-size: 0.95rem;
}

.offerings {
  padding: 4rem 2rem;
  background: var(--primary);
  color: var(--white);


	}

.offerings h2 {
	font-size: 2.2rem;
  text-align: center;
    margin-bottom :     3rem;
}

.offerings-grid   {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
   max-width  : 1200px;
    margin: 0 auto;
}

.offering-box

{
  background: rgba(255,255,255,0.1);
  padding: 2rem;
    border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);


}

.offering-box h3 {

    font-size: 1.2rem;
   margin-bottom: 0.8rem;
  color: var(--accent);}

.offering-box p {
   font-size: 0.95rem;
   opacity: 0.95;
}

.cta-section {
	  background: linear-gradient(135deg, var(--primary) 0%, #1f3a5f 100%);
  padding: 4rem 2rem;
  text-align     : center;
  color: var(--white);
	}

.cta-wrapper h2 {

	  font-size: 2rem;
   margin-bottom: 1rem;}

.cta-wrapper p {
  font-size: 1.1rem;
	 margin-bottom: 2rem;
  opacity: 0.95;
}

.primary-button


{
   display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 1rem 2.5rem;
  border-radius: 4px;
    text-decoration: none;
  font-weight: 600;
   transition: all 0.3s ease;
  border: 2px solid var(--accent); 

}

.primary-button:hover {
    background: transparent; 
	  color: var(--accent);
}

.contact-section {
    padding   :   4rem 2rem;
  max-width   :        1200px;
    margin: 0 auto;
}

.contact-container {
    display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-left h2 {
  font-size: 1.8rem;
  color: var(--primary);
    margin-bottom: 1rem;
}


.contact-left p {
   color: #666;
               margin-bottom: 2rem;
	
}

.contact-info {
    display: flex;
    flex-direction: column;
   gap: 1.5rem;
}

.info-item {
    padding: 1.2rem;
  background: var(--light-bg);
  border-radius: 6px;
}

.info-item p {
  margin: 0.3rem 0;
  font-weight: 500;
}

.contact-form {
	  gap: 1.5rem;
    display: flex;
    flex-direction: column;
     }

.form-group {
    display  :flex;
    flex-direction: column;
}

.contact-form input,
.contact-form select,
.contact-form textarea  
  {
               padding :     0.9rem; 
  border: 2px solid var(--border); 
    border-radius: 4px; 
   font-family: inherit; 
  font-size: 0.95rem; 
   transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
	 outline: none;
  border-color: var(--accent);
}

.contact-form textarea  {
   resize: vertical;
  min-height: 120px;
}

.submit-button {
  background: var(--accent);

	  color: var(--white);

		padding: 1rem;

	   border: none;

	  border-radius: 4px;

	   font-weight   :  600;

	   font-size: 1rem;

	         cursor: pointer;

	  transition: all 0.3s ease;
}


.submit-button:hover

{
  background: var(--primary);
}

.footer {


  background: var(--primary);
     color: var(--white);
     padding    :       3rem 2rem 1.5rem;

}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-main {
    display: grid;
	grid-template-columns: auto 1fr;
   gap :  3rem;
    margin-bottom: 2rem;
}

.footer-logo {
   display: flex;
   align-items: flex-start;
}

.footer-info {
    display:        grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
          gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 0.8rem;
  color: var(--accent);
}

.footer-column p,
.footer-column a {
   font-size    :  0.9rem;
    opacity: 0.9;


}

.footer-column a

{
    display: block;
	 text-decoration:    none;
  color: var(--white);
  margin: 0.4rem 0;
   transition :  color 0.3s ease;
}

.footer-column a:hover {
  color: var(--accent);
	
}

.footer-column ul {
    list-style: none;
}

.footer-bottom		{
               text-align: center;
   padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
	 opacity: 0.8;
}@media (max-width: 768px) {
    .burger-menu {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--primary);
        padding: 1rem;
        gap: 0;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding: 0.8rem 0;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-us h2,
    .offerings h2,
    .cta-wrapper h2 {
        font-size: 1.6rem;
    }

    .benefit-item,
    .offering-box {
        padding: 1.5rem;
    }

    .services-preview,
    .why-us,
    .contact-section {
        padding: 2rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.4rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .service-card h3 {
        font-size: 1.1rem;
    }

    .contact-info {
        flex-direction: column;
    }

    .footer-info {
        grid-template-columns: 1fr;
    }
}.services-hero  
  {
  background: linear-gradient(135deg, var(--primary) 0%, #1f3a5f 100%);
  color: var(--white);
  padding :  4rem 2rem;
  text-align: center;
}

.services-hero h1 {
                    font-size: 2.8rem;
	margin-bottom: 1rem;
}

.services-hero p {
 font-size: 1.1rem;
	opacity     : 0.95;
}

.services-detailed {
   max-width:    1200px;
                    margin: 0 auto;
    padding:   3rem 2rem;
}

.service-full {
	 display    :   grid;
   grid-template-columns: 1fr 1fr;
	gap: 3rem;
    align-items: center;
               margin-bottom: 4rem;
}

.service-full.reverse    {
  direction: rtl;
}

.service-full.reverse > * {
			direction :   ltr;
}

.service-image-wrapper {
  overflow: hidden;
 border-radius :   8px;
}

.service-image-wrapper img {
   width    :      100%;
  height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease; 
	
}

.service-full:hover .service-image-wrapper img {
  transform: scale(1.05);
}

.service-content h2 {
	   font-size: 2rem;
  color: var(--primary);
   margin-bottom     :      1.2rem; 

	}

.service-content p {
    font-size: 1rem;
	   color:      #555;
	   line-height: 1.8;
	     margin-bottom: 2rem;
}

.service-details {
    display    :       grid;
  grid-template-columns: repeat(3, 1fr);
	gap: 1.5rem;
}

.detail-box {
  background: var(--light-bg);
  padding: 1.2rem;
    border-radius: 6px;
  border-left: 3px solid var(--accent);
}

.detail-box h3 {
  font-size: 0.9rem;
  color: var(--primary);
    text-transform: uppercase;
  letter-spacing: 0.5px;
    margin-bottom   :0.5rem;
}

.detail-box p {
    font-size: 0.95rem;
  color: #666;
   margin: 0;
}

.webinars-section {
  padding   :       4rem 2rem;
  background: var(--light-bg);
}

.webinars-section h2 {
      font-size: 2.2rem;
  color: var(--primary);
   text-align: center;
    margin-bottom: 0.5rem;


}

.intro-text  {
   text-align: center;
   color: #666;
    margin-bottom: 2.5rem;
    font-size: 1rem;
}

.webinars-grid {
	   display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
   gap    :       2rem;
    max-width: 1200px;
        margin: 0 auto;
     }

.webinar-card {
  background: var(--white); 
	   padding: 1.8rem; 
	  border-radius: 8px; 
	  box-shadow: 0 2px 12px rgba(0,0,0,0.08); 
	  transition     :  all 0.3s ease;
}

.webinar-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.webinar-header {
   display: flex;
    justify-content: space-between;
   align-items: flex-start;
    margin-bottom :        1rem;
}

.webinar-card h3 {
  font-size: 1.2rem;
  color: var(--primary);
  margin: 0;
  flex: 1; 

}

.webinar-badge {
                    background: #2ecc71;
  color: var(--white);
   padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size     :0.75rem;
	 font-weight: 600;
    white-space: nowrap;
   margin-left: 0.5rem;
}

.webinar-badge.paid {


  background: var(--accent);

}

.webinar-card p		{
    color: #666;
  font-size: 0.95rem;
    margin-bottom: 1.2rem;
}



.webinar-info {
  border-top: 1px solid var(--border);
   padding-top    :        1rem;
}

.webinar-info p {
         font-size: 0.9rem;
                    margin: 0.4rem 0;
  color    :        #555;
}

.packages-section {
     padding: 4rem 2rem;
   max-width: 1200px;
    margin: 0 auto; 
	
}

.packages-section h2 {


       font-size: 2.2rem;
  color: var(--primary);
	text-align: center;
          margin-bottom: 3rem;

     }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
}

.package-card   {
  background: var(--white);
  border: 2px solid var(--border);
       border-radius: 8px;
  padding: 2rem;
     transition     :all 0.3s ease;
  text-align: center;
}

.package-card.featured {
  border-color: var(--accent);
  transform: scale(1.05);
  box-shadow: 0 10px 40px rgba(232, 167, 111, 0.2);
}

.package-card:hover {
     box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.package-header h3 {
   font-size: 1.6rem;
  color: var(--primary);
   margin-bottom: 0.5rem;


}

.package-price {
  color:        #999;
	   font-size: 0.9rem;
	    margin-bottom: 1.5rem;
}


.package-list {
	 list-style   :none;
  margin-bottom: 2rem;
          text-align: left; 
	
}



.package-list li


{
   padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
   color: #666;
  font-size: 0.95rem;
}

.package-list li:last-child {
  border-bottom: none;
}

.package-button {
    display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 4px;
   text-decoration: none;
  font-weight   :     600;
     transition: all 0.3s ease;
  border: 2px solid var(--primary);
  color: var(--primary);
    background: transparent;
}

.package-button.primary		{
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}

.package-button:hover {
  transform: scale(1.05);
}

.faq-section {
    padding: 4rem 2rem;
  background: var(--light-bg);
}

.faq-section h2 {

	    font-size: 2.2rem;
  color: var(--primary);
  text-align: center;
  margin-bottom   :     3rem;
}

.faq-container {

   max-width: 800px;

	   margin: 0 auto;


}

.faq-item {
  background: var(--white);
   margin-bottom     : 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question  {
    width   :    100%;
    padding: 1.5rem;
 border   :        none;
  background: var(--white);
  text-align: left;
  font-size     : 1rem;
   font-weight: 600;
  color: var(--primary);
    cursor: pointer;
   transition: all 0.3s ease;
  display: flex;
   justify-content: space-between;
    align-items: center;

}

.faq-question:hover {
  background: var(--light-bg);
}

.faq-question::after {
  content: '+';
   font-size: 1.5rem;
  transition: transform 0.3s ease;

}

.faq-question.active::after {


  transform: rotate(45deg);}

.faq-answer {
    max-height: 0;
	 overflow: hidden;
    transition    :  max-height 0.3s ease;
}

.faq-answer.active {
   max-height: 300px;
}

.faq-answer p	{
	   padding: 0 1.5rem 1.5rem;
  color: #666;
    font-size: 0.95rem;
    line-height: 1.7;
	}

.thankyou-section  
  {
    padding:6rem 2rem;
    text-align: center;
}

.thankyou-container {
  max-width: 600px;
   margin: 0 auto;
}

.success-icon {
				 margin-bottom     :        2rem;
    display: flex;
   justify-content: center;
}

.thankyou-content h1 {
   font-size: 2.5rem;
  color: var(--primary);
    margin-bottom: 0.5rem;
}

.main-message {
	font-size: 1.2rem;
    color: #666;
	margin-bottom: 2rem;
}

.message-box		{
  background: var(--light-bg);
	  padding: 1.8rem;
	    border-radius    :       8px;
	  margin-bottom: 2.5rem;
	  border-left: 4px solid var(--accent);
}

.message-box p {
     color: #555;
  font-size: 0.95rem;
  line-height: 1.8;
	
}

.next-steps {
    margin-bottom: 2.5rem;
  text-align: left;
}

.next-steps h2 {
  font-size: 1.3rem;
  color: var(--primary);
   margin-bottom: 1.2rem;
      text-align: center;
}

.steps-list {
    list-style     :      none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
  padding: 0.8rem 0 0.8rem 2.5rem;
   position: relative;
    color: #666;
  font-size: 0.95rem;
}

.steps-list li::before {
  content: counter(step-counter);
    position: absolute;
    left: 0;
    width: 24px;
  height    :     24px;
  background: var(--accent);
  color: var(--white);
    border-radius   :     50%;
   display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
   font-size: 0.8rem;


}

.action-buttons {
  display: flex;

	    gap     : 1rem;

	  margin-bottom: 2rem;

	    justify-content     :        center;
}

.button-primary,
.button-secondary {
	      padding: 0.9rem 1.8rem;
   border-radius: 4px;
   text-decoration: none;
  font-weight     :        600;
  transition: all 0.3s ease;
   display: inline-block;


}

.button-primary {
  background: var(--accent);
  color: var(--white);
}

.button-primary:hover {
  background: var(--primary);
}

.button-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.button-secondary:hover {
  background: var(--primary);
  color: var(--white);
}

.contact-reminder


{
     background: var(--primary);
  color: var(--white);
    padding :       1.5rem;
      border-radius: 8px;
   font-size: 0.95rem; 

     }

.contact-reminder p {
    margin: 0;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .service-full {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-full.reverse {
        direction: ltr;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .service-details {
        grid-template-columns: 1fr;
    }

    .detail-box {
        text-align: center;
    }

    .webinars-section h2,
    .packages-section h2,
    .faq-section h2 {
        font-size: 1.6rem;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .button-primary,
    .button-secondary {
        width: 100%;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .main-message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .services-hero {
        padding: 2rem 1rem;
    }

    .services-hero h1 {
        font-size: 1.4rem;
    }

    .service-content h2 {
        font-size: 1.2rem;
    }

    .webinar-header {
        flex-direction: column;
    }

    .webinar-badge {
        margin-left: 0;
        margin-top: 0.5rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .next-steps h2 {
        font-size: 1.1rem;
    }
}.policySection {

	    padding: 4rem 2rem;

  background: var(--light-bg);

  min-height: calc(100vh - 400px);
     }

.policyContainer {
        max-width: 900px;
   margin: 0 auto;
    text-align: left;
}  

.policyContainer h1 {

	    font-size: 2.8rem;
  color: var(--primary);
   margin-bottom :   2rem;
   line-height: 1.2;}

.policyContainer h2		{
   font-size: 1.6rem;
  color: var(--primary);
        margin-top: 2.5rem;
   margin-bottom: 1rem;
  font-weight: 600;
}

.policyContainer p {
  color: #555;
   margin-bottom:      1.2rem;
   line-height :  1.8;
    font-size: 0.95rem;
  text-align: justify;
}

.policyContainer p:first-of-type {
  font-size    : 1rem;

    color: #666;

}@media (max-width: 768px) {
    .policySection {
        padding: 3rem 1.5rem;
    }

    .policyContainer h1 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .policyContainer h2 {
        font-size: 1.3rem;
        margin-top: 2rem;
        margin-bottom: 0.8rem;
    }

    .policyContainer p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 2rem 1rem;
    }

    .policyContainer h1 {
        font-size: 1.6rem;
        margin-bottom: 1.2rem;
    }

    .policyContainer h2 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
}