* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 100px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.8;
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
}

section {
    padding: 80px 20px;
    border-bottom: 1px solid #ecf0f1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a2e;
    font-weight: 700;
}

.section-title-accent {
    color: #667eea;
}

.productivity-consulting {
    background: #ffffff;
}

.consulting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.consulting-content h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.consulting-content p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.consulting-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.feature-list {
    list-style: none;
    margin-top: 25px;
}

.feature-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #333;
    font-size: 1.05rem;
}

.feature-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #667eea;
    font-size: 1.5rem;
}

.time-management {
    background: linear-gradient(to right, #f5f7fa 0%, #ffffff 100%);
}

.time-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.time-grid-reverse {
    direction: rtl;
}

.time-grid-reverse > * {
    direction: ltr;
}

.time-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-coaching {
    background: #ffffff;
}

.cards-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.coaching-card {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafc 100%);
    padding: 40px 30px;
    border-radius: 15px;
    border: 1px solid #e8eef7;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.coaching-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

.coaching-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.coaching-card p {
    color: #666;
    line-height: 1.7;
    font-size: 0.95rem;
}

.conferences {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.conferences .section-title {
    color: white;
}

.conferences .section-title-accent {
    color: #ffd700;
}

.conference-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.conference-item {
    background: rgba(255, 255, 255, 0.15);
    padding: 35px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.conference-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateX(5px);
}

.conference-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.coaching-packages {
    background: #ffffff;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.package-card {
    background: white;
    border: 2px solid #ecf0f1;
    border-radius: 15px;
    padding: 45px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.package-card.featured {
    border-color: #667eea;
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(102, 126, 234, 0.2);
}

.package-card h3 {
    font-size: 1.5rem;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.package-price {
    font-size: 2.5rem;
    color: #667eea;
    font-weight: 700;
    margin: 20px 0;
}

.package-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.package-features li {
    padding: 12px 0;
    color: #666;
    border-bottom: 1px solid #ecf0f1;
    font-size: 0.95rem;
}

.package-features li:last-child {
    border-bottom: none;
}

.package-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 2px solid #667eea;
    font-weight: 600;
}

.package-btn:hover {
    background: white;
    color: #667eea;
}

.success-stories {
    background: #f5f7fa;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.story-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.story-card h3 {
    color: #667eea;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.story-card p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.story-author {
    color: #999;
    font-style: italic;
    font-size: 0.9rem;
}

.business-areas {
    background: white;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.area-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.area-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.3);
}

.area-box h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.area-box p {
    font-size: 0.9rem;
    opacity: 0.95;
}

.why-us {
    background: linear-gradient(to bottom, #ffffff 0%, #f9fafc 100%);
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.why-image {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.why-content h2 {
    font-size: 2rem;
    color: #1a1a2e;
    margin-bottom: 25px;
}

.why-content ul {
    list-style: none;
}

.why-content li {
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.7;
}

.why-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.3rem;
}

.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.cta-btn {
    display: inline-block;
    padding: 16px 50px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.cta-btn:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.contact-section {
    background: #f9fafc;
    padding: 80px 20px;
}

.contact-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a2e;
}

.contact-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #1a1a2e;
    font-weight: 600;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    color: #333;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 40px;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

footer {
    background: #1a1a2e;
    color: white;
    padding: 60px 20px 40px;
    border-top: 1px solid #2c3e50;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-logo {
    max-height: 96px;
    width: auto;
    margin-bottom: 20px;
    filter: brightness(0) invert(1);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #bbb;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-contact {
    color: #bbb;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    color: #999;
    font-size: 0.9rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1.05rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .consulting-grid,
    .time-grid,
    .why-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cards-wrapper {
        grid-template-columns: 1fr;
    }

    .conference-grid {
        grid-template-columns: 1fr;
    }

    .packages-grid {
        grid-template-columns: 1fr;
    }

    .package-card.featured {
        transform: scale(1);
    }

    .stories-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    section {
        padding: 50px 20px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .areas-grid {
        grid-template-columns: 1fr;
    }

    section {
        padding: 40px 20px;
    }
}.navbar {
  background: linear-gradient(to right, #ffffff 0%, #f9fafc 100%);
  padding: 15px 20px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	 position     :     sticky;
  top: 0;
   z-index: 1000;
    border-bottom: 1px solid #ecf0f1;
}

.nav-container
	{
    max-width: 1200px;
   margin: 0 auto;
    display: flex;
    justify-content: space-between;
   align-items: center;
}

.logo-wrapper {
    display: flex;
    align-items: center;


} 

.logo {
    max-height: 74px;
    width: auto;
   display: block;

}

.nav-menu {
  list-style: none;
  display  : flex;
    gap: 40px;
  margin     :        0;
    padding: 0;
}

.nav-menu a {
  color: #1a1a2e;
   text-decoration   :    none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
    position: relative;
}

.nav-menu a::after {
  content: '';
   position: absolute;
         bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
  background: linear-gradient(to right, #667eea, #764ba2);
       transition: width 0.3s ease;
}

.nav-menu a:hover {
  color:  #667eea;
}

.nav-menu a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.burger span {
   width: 25px;
     height: 3px;
  background     :    #1a1a2e;
    border-radius   :3px;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.burger.active span:nth-child(2) {
    opacity    :     0;
}

.burger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}@media (max-width: 768px) {
    .burger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        gap: 0;
        background: linear-gradient(to bottom, #ffffff, #f9fafc);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-menu.active {
        max-height: 300px;
        padding: 20px 0;
    }

    .nav-menu li {
        padding: 0;
    }

    .nav-menu li a {
        display: block;
        padding: 15px 20px;
        color: #1a1a2e;
        border-bottom: 1px solid #ecf0f1;
    }

    .nav-menu li:last-child a {
        border-bottom: none;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a:hover {
        background: #f0f2f8;
        color: #667eea;
    }

    .nav-container {
        flex-wrap: wrap;
    }

    .logo {
        max-height: 60px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-height: 50px;
    }

    .burger span {
        width: 22px;
        height: 2.5px;
    }

    .nav-menu {
        top: 65px;
    }

    .nav-menu.active {
        max-height: 280px;
    }
}.services-hero {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  color: white;
    padding   :80px 20px;
	text-align: center;
    position: relative;
   overflow: hidden;
}

.services-hero::before {
  content: '';
     position: absolute;
    top: -50%;
    right: -10%;
	width: 400px;
   height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.services-hero-content {
  z-index: 2;
    position: relative;
  max-width: 700px;
    margin: 0 auto;
}

.services-hero h1 {

	  font-size: 3rem;
   margin-bottom: 20px;
   font-weight: 700;


}

.services-hero p {
   font-size: 1.15rem;
  opacity: 0.95;
}

.coaching-detail-grid 
 {
  display: grid;
   grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 60px;
}

.coaching-detail-content h2 {
    font-size: 2rem;
  color    :        #1a1a2e;
   margin-bottom: 20px;
}

.coaching-detail-content p {
  margin-bottom: 15px;
   font-size   :    1.05rem;
  color: #555;
   line-height: 1.8;
}  

.service-image {
  width:100%;
  height: auto;
    border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
   object-fit: cover;
}

.service-features {
    list-style: none;

   margin-top: 25px;
}

.service-features li {
	 padding: 12px 0;
    position :       relative;
	color: #333;
	padding-left: 30px;
  font-size: 1.05rem;
}

.service-features li::before {
  content: '▸';
   position: absolute;
   left: 0;
  color: #667eea;
	 font-size: 1.5rem;
}

.training-reverse {
   direction: rtl;
}

.training-reverse > * {
   direction: ltr;
}

.consulting-types {
	display     :        grid;
  grid-template-columns: repeat(2, 1fr);
   gap    :  30px;
   margin-top: 50px;


}

.consulting-box {
  background: linear-gradient(135deg, #ffffff 0%, #f9fafc 100%);
  padding: 40px;
  border-radius: 15px;
   border: 1px solid #e8eef7;
    transition: all 0.3s ease;
}

.consulting-box:hover		{
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(102, 126, 234, 0.15);
	border-color: #667eea;
}

.consulting-box h3 {
   font-size: 1.4rem;
  color: #1a1a2e;
    margin-bottom: 15px;
}


.consulting-box p  {
	  color: #666;
  line-height: 1.7;
       margin-bottom: 15px;

}

.consulting-checklist {
    list-style: none;
}

.consulting-checklist li {
	    padding: 8px 0;
   padding-left: 25px;
  position: relative;
    color: #555;
   font-size: 0.95rem;
     }

.consulting-checklist li::before {
  content: '✓';
   position: absolute;
   left     :    0;
   color: #667eea;
    font-weight: bold;
}

.webinar-grid {
   display: grid;
  grid-template-columns: repeat(2, 1fr);
    gap: 40px;
   margin-top   :  50px;
}

.webinar-card {
  background: rgba(255, 255, 255, 0.15);
   padding    :     40px;
   border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.webinar-card:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
}

.webinar-card h3 {
    font-size: 1.3rem;

	  margin-bottom :       15px;
}

.webinar-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    opacity: 0.95;
}

.webinar-details {

    margin-top: 15px;
    font-size: 0.85rem;
  opacity: 0.85;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
     }

.workshop-grid  
  {
                    display :      grid;
   grid-template-columns: 1fr 1fr;
  gap: 50px;
 align-items: center;
   margin-bottom: 60px;
}

.workshop-content h2 {
    font-size: 2rem;
    color: #1a1a2e;
  margin-bottom: 20px;
}

.workshop-topics {
    list-style: none;
  margin-top: 25px; 

}

.workshop-topics li   {
 padding: 12px 0;
   padding-left: 30px;
   position: relative;
   color    :    #333;
    font-size: 1.05rem;
}

.workshop-topics li::before {
	  content: '▸';
    position: absolute;
    left: 0;
    color: #667eea;
   font-size: 1.5rem;
	}

.process-timeline {
   display: grid;
  grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
  text-align: center;

   position: relative;
}

.process-step::after {
  content: ''; 
	   position: absolute; 
		top: 40px; 
		left: 60%; 
	  width  :   40%; 
	    height: 2px; 
	  background: linear-gradient(to right, #667eea, transparent);
}

.process-step:last-child::after {
   display: none;
}

.step-number {
	width: 60px;
   height: 60px;
  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: 700;
      margin: 0 auto 15px;
}

.process-step h3 {
   font-size: 1.1rem;
   color: #1a1a2e;
    margin-bottom: 10px;
}

.process-step p {
   color: #666;
  font-size: 0.9rem;
  line-height: 1.6;
}

.pricing-table {
   margin-top: 50px; 
    overflow-x: auto; 
    border-radius: 15px; 
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.pricing-table table {
  width: 100%;
   border-collapse: collapse;
    background: white;
}


.pricing-table th {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
   padding: 20px;
   text-align   :        left;
    font-weight: 600;
   border: none;
}

.pricing-table td {
  padding: 18px 20px;
  border-bottom: 1px solid #ecf0f1;
    color: #555;
}

.pricing-table tr:hover {
  background     :        #f9fafc; 

}

.pricing-highlight {
	color: #667eea;
    font-weight: 600;
}

.benefits-grid {
  margin-top: 50px;
  gap: 30px;
  grid-template-columns: repeat(3, 1fr);
    display: grid;
}

.benefit-card {
   background: white;
    padding: 35px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
   border: 2px solid transparent;
}

.benefit-card:hover{
   border-color    :     #667eea;
  transform: translateY(-5px);
}

.benefit-card h3 {
		font-size    : 1.2rem;
    color     :        #1a1a2e;
  margin-bottom: 12px;
}

.benefit-card p {
  color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.services-cta {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
    padding: 80px 20px;
  text-align: center;
}

.services-cta h2 {
	font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}  

.services-cta p {
  font-size: 1.15rem;
    margin-bottom  :  30px;
   opacity: 0.95;
}

.services-cta-btn {
    display  :    inline-block;
    -moz-border-radius: 50px;
  padding :      16px 50px;
  background: white;
   color: #667eea;
	text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
  transition: all 0.3s ease;
   border :   2px solid white;
}

.services-cta-btn:hover {
    background: transparent;
	 color: white;
  transform: translateY(-2px);
}  

.thankyou-wrapper {
	   min-height: 70vh;
    display: flex;
   align-items :        center;
    justify-content: center;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
   padding: 60px 20px;
     }

.thankyou-content {
               max-width: 700px;
   text-align: center;
  background: white;
    padding: 60px 50px;
     border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
   animation: slideUp 0.6s ease-out;
}@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}.success-icon {
  width: 80px;
   height: 80px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 50%;
               display: flex;
   align-items: center;
   justify-content: center;
   margin: 0 auto 30px;
        font-size: 3rem;
}  

.thankyou-content h1 {
	font-size: 2.5rem;
  color: #1a1a2e;
    margin-bottom: 15px;
  font-weight: 700;
}

.thankyou-subtitle {
   font-size: 1.2rem;
	 color: #667eea;
       margin-bottom: 30px;
   font-weight: 600;
}

.thankyou-content p {
       font-size: 1.05rem;
   color: #555;
  line-height :        1.8;
    margin-bottom: 20px;
	}

.details-box {
  background: linear-gradient(135deg, #f9fafc 0%, #ffffff 100%);
   border    :   2px solid #ecf0f1;
   border-radius: 12px;
  padding: 25px;
    margin: 30px 0;
   text-align: left;
}

.detail-item {
    display: flex;
    justify-content: space-between;
	padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
}

.detail-item:last-child {

    border-bottom: none;
	}

.detail-label {
  color: #999;
    font-weight: 600;
}

.detail-value {
    color: #1a1a2e;
   font-weight: 600;
}

.next-steps {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
    border-left   :       4px solid #667eea;
  padding: 20px;
   margin: 30px 0;
  border-radius: 8px;
	 text-align: left;
}

.next-steps h3 {
  color:    #667eea;
  margin-bottom: 15px;
	 font-size: 1.1rem;
}

.next-steps ol {
  margin-left: 20px;
}

.next-steps li {
  color: #555;
    margin-bottom: 10px;
     font-size: 0.95rem;
}

.action-buttons {
    display   :    flex;
                    gap: 15px;
    margin-top: 35px;
  flex-wrap: wrap;
   justify-content: center; 
	
}

.btn {
    padding: 14px 35px;
        border-radius: 50px;
   text-decoration: none;
       font-weight: 600;
    font-size   :     0.95rem;
  transition   :all 0.3s ease;
        border: 2px solid;
   cursor: pointer;
    display: inline-block;

}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
     color: white;
	 border-color: transparent;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
}

.btn-secondary {
  background: white;
  color: #667eea;
	border-color: #667eea;
}

.btn-secondary:hover {
   background: #667eea;
   color: white;
}@media (max-width: 768px) {
    .services-hero h1 {
        font-size: 2.2rem;
    }

    .coaching-detail-grid,
    .workshop-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .consulting-types {
        grid-template-columns: 1fr;
    }

    .webinar-grid {
        grid-template-columns: 1fr;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-step::after {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .thankyou-content {
        padding: 40px 30px;
    }

    .thankyou-content h1 {
        font-size: 1.8rem;
    }

    .action-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-hero h1 {
        font-size: 1.8rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .thankyou-wrapper {
        min-height: 60vh;
        padding: 30px 15px;
    }

    .thankyou-content {
        padding: 30px 20px;
    }

    .success-icon {
        width: 70px;
        height: 70px;
        font-size: 2.5rem;
    }

    .details-box {
        padding: 18px;
    }

    .detail-item {
        flex-direction: column;
        gap: 5px;
    }
}.policySection  {
    padding: 80px 2rem;
  background: linear-gradient(to bottom, #f5f7fa 0%, #ffffff 100%);
  min-height: calc(100vh - 300px);
}

.policyContainer {
  max-width: 800px;
   margin: 0 auto;
	 text-align: left;
}

.policyContainer h2 {
  font-size: 2.5rem; 
	   color :#1a1a2e; 
	        margin-bottom: 1.5rem; 
	   font-weight: 700; 
	  text-align: center;
}

.policyContainer h3 {
      font-size: 1.4rem;
  color: #667eea;
   margin-top: 2rem;
  margin-bottom: 1rem;
   font-weight: 600;

}

.policyContainer p {
	    color: #555;
  margin-bottom: 1.5rem;
   line-height: 1.8;
  font-size: 1.05rem;
   text-align: justify;


}

.policyContainer strong {
    color: #1a1a2e;
  font-weight: 600;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
   padding: 0 20px;
}

footer {
  background: #1a1a2e;
   color: white;
    padding: 60px 20px 40px;
    border-top: 1px solid #2c3e50;
}

.footer-content {
    display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
    margin-bottom: 40px;
  max-width: 1200px;
  margin-left: auto;
    margin-right     :        auto;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size   : 1.1rem;
  font-weight: 700;
}

.footer-logo {
   max-height:        96px;
    width: auto;
   margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.footer-links {
   list-style: none;
}


.footer-links li{
  margin-bottom: 12px;
}

.footer-links a {
   color: #bbb;
   text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #667eea;
}

.footer-contact {
  color: #bbb;
   line-height: 1.8;
   font-size: 0.95rem;
}

.footer-contact p {
  margin-bottom: 12px;
}


.footer-bottom {
   text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
   color: #999;
    font-size: 0.9rem;
  max-width: 1200px;
 margin: 0 auto;
}@media (max-width: 768px) {
    .policySection {
        padding: 60px 1.5rem;
    }

    .policyContainer h2 {
        font-size: 2rem;
    }

    .policyContainer h3 {
        font-size: 1.2rem;
    }

    .policyContainer p {
        font-size: 1rem;
        text-align: left;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .policySection {
        padding: 40px 1rem;
        min-height: auto;
    }

    .policyContainer h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .policyContainer h3 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .policyContainer p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
        line-height: 1.6;
    }

    footer {
        padding: 40px 15px 30px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-section h3 {
        margin-bottom: 15px;
        font-size: 1rem;
    }

    .footer-logo {
        max-height: 80px;
    }

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-contact p {
        margin-bottom: 10px;
        font-size: 0.9rem;
    }
}
