/* SproutITSkill Styles */

/* CSS Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #0E0E11;
    color: #E6E6E6;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styles */
#mainHeader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 28, 34, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

#primaryNav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

#logoContainer {
    z-index: 1001;
}

#logo {
    max-width: 80px;
    height: auto;
    display: block;
}

#logoLink {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5BE9B9;
    text-decoration: none;
    transition: color 0.3s ease;
}

#logoLink:hover {
    color: #FFB86F;
}

#navMenu {
    display: flex;
    list-style: none;
    gap: 2rem;
    transition: all 0.3s ease;
}

#navMenu li a {
    color: #E6E6E6;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

#navMenu li a:hover {
    color: #5BE9B9;
    background-color: rgba(91, 233, 185, 0.1);
    transform: scale(1.05);
}

#navMenu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #5BE9B9;
    transition: width 0.3s ease;
}

#navMenu li a:hover::after {
    width: 80%;
}

/* Hamburger Menu */
#hamburgerMenu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    width: 30px;
    height: 20px;
    justify-content: space-between;
}

#hamburgerMenu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #E6E6E6;
    transition: all 0.3s ease;
    transform-origin: center;
}

#hamburgerMenu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

#hamburgerMenu.active span:nth-child(2) {
    opacity: 0;
}

#hamburgerMenu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
#heroSection {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 2rem;
    margin-top: 80px;
    background: linear-gradient(135deg, #0E0E11 0%, #1A1C22 50%, #2A2D38 100%);
    position: relative;
    overflow: hidden;
}

#heroSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(91, 233, 185, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

#heroContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

#heroTitle {
    font-size: 4.5rem;
    font-weight: 800;
    color: #E6E6E6;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
    text-align: left;
}

#heroTitle::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #5BE9B9, #FFB86F);
    border-radius: 2px;
}

#heroSubtitle {
    font-size: 1.4rem;
    color: #E6E6E6;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    text-align: left;
    max-width: 600px;
    line-height: 1.6;
}

#heroButtons {
    display: flex;
    gap: 1.5rem;
    text-align: left;
}

#heroCtaPrimary,
#heroCtaSecondary {
    padding: 1.2rem 2.5rem;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

#heroCtaPrimary {
    background: linear-gradient(135deg, #5BE9B9, #4BCF9F);
    color: #0E0E11;
    box-shadow: 0 4px 15px rgba(91, 233, 185, 0.3);
}

#heroCtaPrimary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(91, 233, 185, 0.4);
}

#heroCtaSecondary {
    background: transparent;
    color: #FFB86F;
    border: 2px solid #FFB86F;
}

#heroCtaSecondary:hover {
    background: rgba(255, 184, 111, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 184, 111, 0.2);
}

#heroImage {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

#heroImg {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

#heroImg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 233, 185, 0.2), rgba(255, 184, 111, 0.2));
    border-radius: 20px;
    z-index: -1;
}

#heroImg:hover {
    transform: scale(1.03) rotate(1deg);
}

/* Features Section */
#featuresSection {
    padding: 5rem 2rem;
    background-color: #1A1C22;
}

#featuresContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#featuresTitle {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #E6E6E6;
    background: linear-gradient(135deg, #5BE9B9, #FFB86F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#featuresGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

#featuresGrid > div {
    background-color: #2A2D38;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
    justify-content: space-between;
}

#featuresGrid > div:hover {
    transform: translateY(-10px);
    border-color: #5BE9B9;
    box-shadow: 0 20px 40px rgba(91, 233, 185, 0.2);
}

#featuresGrid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

#featuresGrid > div:hover img {
    transform: scale(1.05);
}

#featuresGrid h3 {
    font-size: 1.3rem;
    color: #5BE9B9;
    margin-bottom: 0.5rem;
}

#featuresGrid p {
    color: #E6E6E6;
    opacity: 0.9;
}

/* Testimonials Section */
#testimonialsSection {
    padding: 5rem 2rem;
    background-color: #2A2D38;
}

#testimonialsContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#testimonialsTitle {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #E6E6E6;
    background: linear-gradient(135deg, #5BE9B9, #FFB86F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#testimonialsTitle i {
    color: #FFB86F;
    margin-right: 0.5rem;
    font-size: 1.2em;
}

#testimonialsGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

#testimonialsGrid > div {
    background-color: #1A1C22;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
    justify-content: space-between;
}

#testimonialsGrid > div:hover {
    transform: translateY(-10px);
    border-color: #FFB86F;
    box-shadow: 0 20px 40px rgba(255, 184, 111, 0.2);
}

#testimonialText1,
#testimonialText2,
#testimonialText3 {
    font-size: 1.1rem;
    color: #E6E6E6;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-style: italic;
}

#authorName1,
#authorName2,
#authorName3 {
    color: #5BE9B9;
    margin-bottom: 0.3rem;
    font-size: 1.2rem;
}

#authorRole1,
#authorRole2,
#authorRole3 {
    color: #E6E6E6;
    opacity: 0.8;
    font-size: 0.9rem;
}

#authorName1 i,
#authorName2 i,
#authorName3 i {
    color: #5BE9B9;
    margin-right: 0.5rem;
    font-size: 0.9em;
}

#authorRole1 i,
#authorRole2 i,
#authorRole3 i {
    color: #FFB86F;
    margin-right: 0.5rem;
    font-size: 0.9em;
}

.testimonial-icon {
    color: #5BE9B9;
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    transition: all 0.3s ease;
}

#testimonialsGrid > div:hover .testimonial-icon {
    transform: scale(1.1);
    opacity: 1;
}

/* Learning Path Section */
#learningPathSection {
    padding: 5rem 2rem;
    background-color: #1A1C22;
}

#learningPathContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#learningPathTitle {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #E6E6E6;
    background: linear-gradient(135deg, #5BE9B9, #FFB86F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#learningPathTitle i {
    color: #FFB86F;
    margin-right: 0.5rem;
    font-size: 1.2em;
}

#learningPathSteps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

#learningPathSteps > div {
    background-color: #2A2D38;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 400px;
    justify-content: flex-start;
}

#learningPathSteps > div:hover {
    transform: translateY(-5px);
    border-color: #5BE9B9;
    box-shadow: 0 15px 30px rgba(91, 233, 185, 0.2);
}

#stepTitle1,
#stepTitle2,
#stepTitle3 {
    color: #FFB86F;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

#stepTitle1 i,
#stepTitle2 i,
#stepTitle3 i {
    color: #5BE9B9;
    margin-right: 0.5rem;
    font-size: 1.1em;
}

#stepDesc1,
#stepDesc2,
#stepDesc3 {
    color: #E6E6E6;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

#stepList1,
#stepList2,
#stepList3 {
    list-style: none;
    padding-left: 0;
    margin-top: auto;
    padding-top: 1rem;
}

#stepList1 li,
#stepList2 li,
#stepList3 li {
    color: #E6E6E6;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

#stepList1 li::before,
#stepList2 li::before,
#stepList3 li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5BE9B9;
}

#stepList1 li i,
#stepList2 li i,
#stepList3 li i {
    color: #FFB86F;
    margin-right: 0.5rem;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

#learningPathSteps > div:hover #stepList1 li i,
#learningPathSteps > div:hover #stepList2 li i,
#learningPathSteps > div:hover #stepList3 li i {
    transform: scale(1.2);
    color: #5BE9B9;
}

/* CTA Section */
#ctaSection {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2A2D38, #1A1C22);
    text-align: center;
}

#ctaContainer {
    max-width: 800px;
    margin: 0 auto;
}

#ctaTitle {
    font-size: 2.5rem;
    color: #E6E6E6;
    margin-bottom: 1rem;
}

#ctaDescription {
    font-size: 1.2rem;
    color: #E6E6E6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

#ctaButton {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #FFB86F;
    color: #0E0E11;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

#ctaButton:hover {
    background-color: transparent;
    color: #FFB86F;
    border-color: #FFB86F;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 184, 111, 0.3);
}

/* Page Header */
#pageHeader {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, #0E0E11 0%, #1A1C22 50%, #2A2D38 100%);
}

#pageHeaderContainer {
    max-width: 800px;
    margin: 0 auto;
}

#pageTitle {
    font-size: 3rem;
    color: #E6E6E6;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #5BE9B9, #FFB86F);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#pageSubtitle {
    font-size: 1.2rem;
    color: #E6E6E6;
    opacity: 0.9;
}

/* About Content */
#aboutContent {
    padding: 5rem 2rem;
    background-color: #1A1C22;
}

#aboutContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

#aboutText h2 {
    font-size: 2rem;
    color: #5BE9B9;
    margin: 2rem 0 1rem;
}

#aboutText h2:first-child {
    margin-top: 0;
}

#aboutText p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #E6E6E6;
    opacity: 0.9;
}

#approachList {
    list-style: none;
    padding-left: 0;
}

#approachList li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #E6E6E6;
    opacity: 0.9;
}

#approachList li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #5BE9B9;
    font-weight: bold;
}

#aboutImage {
    position: sticky;
    top: 100px;
}

#aboutImg {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Values Section */
#valuesSection {
    padding: 5rem 2rem;
    background-color: #2A2D38;
}

#valuesContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#valuesTitle {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #5BE9B9;
}

#valuesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

#valuesGrid > div {
    background-color: #1A1C22;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

#valuesGrid > div:hover {
    transform: translateY(-5px);
    border-color: #FFB86F;
    box-shadow: 0 15px 30px rgba(255, 184, 111, 0.2);
}

#valuesGrid h3 {
    font-size: 1.3rem;
    color: #FFB86F;
    margin-bottom: 0.5rem;
}

#valuesGrid p {
    color: #E6E6E6;
    opacity: 0.9;
}

/* Contact Section */
#contactSection {
    padding: 5rem 2rem;
    background-color: #1A1C22;
}

#contactContainer {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

#contactForm {
    background-color: #2A2D38;
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid #5BE9B9;
}

#formTitle {
    font-size: 2rem;
    color: #5BE9B9;
    margin-bottom: 2rem;
}

#messageForm > div {
    margin-bottom: 1.5rem;
}

#messageForm label {
    display: block;
    margin-bottom: 0.5rem;
    color: #E6E6E6;
    font-weight: 500;
}

#messageForm input,
#messageForm textarea {
    width: 100%;
    padding: 1rem;
    background-color: #1A1C22;
    border: 1px solid #2A2D38;
    border-radius: 8px;
    color: #E6E6E6;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#messageForm input:focus,
#messageForm textarea:focus {
    outline: none;
    border-color: #5BE9B9;
    box-shadow: 0 0 0 3px rgba(91, 233, 185, 0.1);
}

#submitButton {
    background-color: #5BE9B9;
    color: #0E0E11;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

#submitButton:hover {
    background-color: transparent;
    color: #5BE9B9;
    border: 2px solid #5BE9B9;
    transform: translateY(-2px);
}

#contactInfo h2 {
    font-size: 2rem;
    color: #FFB86F;
    margin-bottom: 2rem;
}

#contactInfo > div {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #2A2D38;
    border-radius: 8px;
    border-left: 4px solid #FFB86F;
}

#contactInfo h3 {
    color: #FFB86F;
    margin-bottom: 0.5rem;
}

#contactInfo p {
    color: #E6E6E6;
    opacity: 0.9;
}

#contactImg {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-top: 2rem;
}

/* Policy Pages Content */
#privacyContent,
#termsContent,
#cookiesContent {
    padding: 5rem 2rem;
    background-color: #1A1C22;
}

#privacyContainer,
#termsContainer,
#cookiesContainer {
    max-width: 800px;
    margin: 0 auto;
}

#privacyText,
#termsText,
#cookiesText {
    line-height: 1.8;
}

#privacyText h2,
#termsText h2,
#cookiesText h2 {
    font-size: 2rem;
    color: #5BE9B9;
    margin: 2rem 0 1rem;
}

#privacyText h2:first-child,
#termsText h2:first-child,
#cookiesText h2:first-child {
    margin-top: 0;
}

#privacyText h3,
#termsText h3,
#cookiesText h3 {
    font-size: 1.3rem;
    color: #FFB86F;
    margin: 1.5rem 0 0.5rem;
}

#privacyText p,
#termsText p,
#cookiesText p {
    margin-bottom: 1.5rem;
    color: #E6E6E6;
    opacity: 0.9;
}

#privacyText ul,
#termsText ul,
#cookiesText ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

#privacyText li,
#termsText li,
#cookiesText li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #E6E6E6;
    opacity: 0.9;
}

#privacyText li::before,
#termsText li::before,
#cookiesText li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5BE9B9;
    font-weight: bold;
    font-size: 1.2rem;
}

#lastUpdated {
    background-color: #2A2D38;
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #FFD1DC;
    margin-bottom: 2rem;
}

#contactPrivacyInfo,
#contactTermsInfo,
#contactCookiesInfo {
    background-color: #2A2D38;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #5BE9B9;
    margin-top: 1rem;
}

/* Footer */
#mainFooter {
    background-color: #0E0E11;
    padding: 3rem 2rem 1rem;
    border-top: 1px solid #2A2D38;
}

#footerContainer {
    max-width: 1200px;
    margin: 0 auto;
}

#footerContent {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

#footerBrand h3 {
    font-size: 1.5rem;
    color: #5BE9B9;
    margin-bottom: 0.5rem;
}

#footerBrand p {
    color: #E6E6E6;
    opacity: 0.9;
}

#footerContact h4 {
    color: #FFB86F;
    margin-bottom: 1rem;
}

#footerContact p {
    color: #E6E6E6;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

#footerLegal h4 {
    color: #FFB86F;
    margin-bottom: 1rem;
}

#legalLinks {
    list-style: none;
    padding: 0;
    margin: 0;
}

#legalLinks li {
    margin-bottom: 0.5rem;
}

#legalLinks a {
    color: #E6E6E6;
    text-decoration: none;
    opacity: 0.9;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

#legalLinks a:hover {
    color: #5BE9B9;
    opacity: 1;
    transform: translateX(5px);
}

#legalLinks a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #5BE9B9;
    transition: width 0.3s ease;
}

#legalLinks a:hover::after {
    width: 100%;
}

#footerBottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2A2D38;
}

#copyright {
    color: #E6E6E6;
    opacity: 0.7;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #hamburgerMenu {
        display: flex;
    }

    #navMenu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(26, 28, 34, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.3s ease;
        z-index: 1000;
    }

    #navMenu.active {
        right: 0;
    }

    #navMenu li a {
        font-size: 1.5rem;
        padding: 1rem;
    }

    #heroContainer {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    #heroTitle {
        font-size: 3rem;
        text-align: center;
    }

    #heroTitle::after {
        left: 50%;
        transform: translateX(-50%);
    }

    #heroSubtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    #heroButtons {
        justify-content: center;
    }

    #featuresGrid {
        grid-template-columns: 1fr;
    }

    #aboutContainer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #aboutImage {
        position: static;
    }

    #contactContainer {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #contactForm {
        padding: 2rem;
    }

    #footerContent {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    #pageTitle {
        font-size: 2.5rem;
    }

    #primaryNav {
        padding: 0 1rem;
    }

    #heroSection,
    #featuresSection,
    #testimonialsSection,
    #learningPathSection,
    #ctaSection,
    #aboutContent,
    #valuesSection,
    #contactSection,
    #privacyContent,
    #termsContent,
    #cookiesContent {
        padding: 5rem 1rem;
    }

    #pageHeader {
        padding: 6rem 1rem 3rem;
    }

    #featuresTitle,
    #testimonialsTitle,
    #learningPathTitle,
    #ctaTitle,
    #valuesTitle {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    #featuresGrid,
    #testimonialsGrid,
    #learningPathSteps,
    #valuesGrid {
        gap: 2rem;
    }

    #legalLinks {
        display: inline-block;
        text-align: left;
    }
}

@media (max-width: 480px) {
    #heroTitle {
        font-size: 2.5rem;
    }

    #heroSubtitle {
        font-size: 1.2rem;
    }

    #heroButtons {
        flex-direction: column;
        gap: 1rem;
    }

    #heroCtaPrimary,
    #heroCtaSecondary {
        width: 100%;
        text-align: center;
    }

    #featuresTitle,
    #ctaTitle,
    #valuesTitle {
        font-size: 2rem;
    }

    #pageTitle {
        font-size: 2rem;
    }

    #contactForm {
        padding: 1.5rem;
    }
}

/* Smooth scroll for anchor links */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1A1C22;
}

::-webkit-scrollbar-thumb {
    background: #5BE9B9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #FFB86F;
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid #5BE9B9;
    outline-offset: 2px;
}

/* Selection styles */
::selection {
    background-color: #5BE9B9;
    color: #0E0E11;
}

::-moz-selection {
    background-color: #5BE9B9;
    color: #0E0E11;
}

#featureImg1,
#featureImg2,
#featureImg3,
#featureImg4,
#featureImg5,
#featureImg6 {
    height: 200px;
    object-fit: cover;
    margin-bottom: 1rem;
}

#testimonialContent1,
#testimonialContent2,
#testimonialContent3 {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

#stepContent1,
#stepContent2,
#stepContent3 {
    display: flex;
    flex-direction: column;
    height: 100%;
}

#stepList1,
#stepList2,
#stepList3 {
    margin-top: auto;
    padding-top: 1rem;
}

/* Section Dividers and Spacing */
#heroSection,
#featuresSection,
#testimonialsSection,
#learningPathSection,
#ctaSection,
#aboutContent,
#valuesSection,
#contactSection,
#privacyContent,
#termsContent,
#cookiesContent {
    position: relative;
    padding: 8rem 2rem;
    margin: 0;
}

/* Add subtle pattern overlay to sections */
#heroSection::before,
#featuresSection::before,
#testimonialsSection::before,
#learningPathSection::before,
#ctaSection::before,
#aboutContent::before,
#valuesSection::before,
#contactSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(91, 233, 185, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.5;
}

/* Section Dividers */
#heroSection::after,
#featuresSection::after,
#testimonialsSection::after,
#learningPathSection::after,
#ctaSection::after,
#aboutContent::after,
#valuesSection::after,
#contactSection::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #5BE9B9, #FFB86F);
    border-radius: 2px;
    opacity: 0.7;
}

/* Enhanced Section Backgrounds */
#heroSection {
    background: linear-gradient(135deg, #0E0E11 0%, #1A1C22 50%, #2A2D38 100%);
}

#featuresSection {
    background-color: #1A1C22;
}

#testimonialsSection {
    background-color: #2A2D38;
}

#learningPathSection {
    background-color: #1A1C22;
}

#ctaSection {
    background: linear-gradient(135deg, #2A2D38, #1A1C22);
}

#aboutContent {
    background-color: #1A1C22;
}

#valuesSection {
    background-color: #2A2D38;
}

#contactSection {
    background-color: #1A1C22;
}

/* Enhanced Container Spacing */
#featuresContainer,
#testimonialsContainer,
#learningPathContainer,
#ctaContainer,
#aboutContainer,
#valuesContainer,
#contactContainer {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Enhanced Section Titles */
#featuresTitle,
#testimonialsTitle,
#learningPathTitle,
#ctaTitle,
#valuesTitle {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.5rem;
}

#featuresTitle::after,
#testimonialsTitle::after,
#learningPathTitle::after,
#ctaTitle::after,
#valuesTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #5BE9B9, #FFB86F);
    border-radius: 2px;
}

/* Enhanced Grid Spacing */
#featuresGrid,
#testimonialsGrid,
#learningPathSteps,
#valuesGrid {
    gap: 3rem;
    margin-top: 2rem;
}

/* Enhanced Card Design */
#featuresGrid > div,
#testimonialsGrid > div,
#learningPathSteps > div,
#valuesGrid > div {
    background-color: rgba(42, 45, 56, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(91, 233, 185, 0.1);
    padding: 2.5rem;
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

#featuresGrid > div:hover,
#testimonialsGrid > div:hover,
#learningPathSteps > div:hover,
#valuesGrid > div:hover {
    transform: translateY(-10px);
    border-color: #5BE9B9;
    box-shadow: 0 20px 40px rgba(91, 233, 185, 0.2);
}

/* Enhanced Section Blocks Design */
#aboutContainer,
#featuresContainer,
#testimonialsContainer,
#learningPathContainer,
#valuesContainer,
#contactContainer {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: rgba(26, 28, 34, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(91, 233, 185, 0.1);
}

/* About Section Specific Styles */
#aboutContainer {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

#aboutText {
    background: rgba(42, 45, 56, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(91, 233, 185, 0.15);
}

#aboutText h2 {
    font-size: 2.2rem;
    color: #5BE9B9;
    margin: 2rem 0 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

#aboutText h2:first-child {
    margin-top: 0;
}

#aboutText h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #5BE9B9, #FFB86F);
    border-radius: 2px;
}

#aboutText p {
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #E6E6E6;
    opacity: 0.9;
    font-size: 1.1rem;
}

#approachList {
    list-style: none;
    padding-left: 0;
    margin-top: 2rem;
}

#approachList li {
    padding: 1rem 1.5rem;
    margin-bottom: 1rem;
    background: rgba(91, 233, 185, 0.1);
    border-radius: 12px;
    color: #E6E6E6;
    position: relative;
    padding-left: 3rem;
    transition: all 0.3s ease;
}

#approachList li:hover {
    transform: translateX(10px);
    background: rgba(91, 233, 185, 0.15);
}

#approachList li::before {
    content: '→';
    position: absolute;
    left: 1.5rem;
    color: #5BE9B9;
    font-weight: bold;
    transition: all 0.3s ease;
}

#approachList li:hover::before {
    transform: translateX(5px);
}

#aboutImage {
    position: sticky;
    top: 100px;
}

#aboutImg {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    border: 2px solid rgba(91, 233, 185, 0.2);
}

#aboutImg:hover {
    transform: scale(1.02);
    border-color: #5BE9B9;
    box-shadow: 0 25px 50px rgba(91, 233, 185, 0.2);
}

/* Values Section Enhancement */
#valuesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

#valuesGrid > div {
    background: rgba(42, 45, 56, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(91, 233, 185, 0.1);
    position: relative;
    overflow: hidden;
}

#valuesGrid > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 233, 185, 0.1), rgba(255, 184, 111, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
}

#valuesGrid > div:hover {
    transform: translateY(-10px);
    border-color: #5BE9B9;
    box-shadow: 0 20px 40px rgba(91, 233, 185, 0.2);
}

#valuesGrid > div:hover::before {
    opacity: 1;
}

#valuesGrid h3 {
    font-size: 1.5rem;
    color: #FFB86F;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

#valuesGrid h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #5BE9B9, #FFB86F);
    border-radius: 2px;
}

#valuesGrid p {
    color: #E6E6E6;
    opacity: 0.9;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    #aboutContainer {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    #aboutText {
        padding: 2rem;
    }

    #aboutImage {
        position: static;
    }

    #valuesGrid {
        grid-template-columns: 1fr;
    }

    #aboutText h2 {
        font-size: 1.8rem;
    }

    #approachList li {
        padding: 0.8rem 1.2rem;
        padding-left: 2.5rem;
    }
}

/* Services Section */
#servicesSection {
    padding: 5rem 2rem;
    background-color: #1A1C22;
    position: relative;
}

#servicesSection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 1px 1px, rgba(91, 233, 185, 0.05) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.5;
}

#servicesContainer {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    background: rgba(26, 28, 34, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(91, 233, 185, 0.1);
}

#servicesTitle {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #5BE9B9;
    position: relative;
    padding-bottom: 1.5rem;
}

#servicesTitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #5BE9B9, #FFB86F);
    border-radius: 2px;
}

#servicesGrid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

#servicesGrid > div {
    background: rgba(42, 45, 56, 0.4);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(91, 233, 185, 0.1);
    position: relative;
    overflow: hidden;
}

#servicesGrid > div::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(91, 233, 185, 0.1), rgba(255, 184, 111, 0.1));
    opacity: 0;
    transition: all 0.4s ease;
}

#servicesGrid > div:hover {
    transform: translateY(-10px);
    border-color: #5BE9B9;
    box-shadow: 0 20px 40px rgba(91, 233, 185, 0.2);
}

#servicesGrid > div:hover::before {
    opacity: 1;
}

#serviceIcon1,
#serviceIcon2,
#serviceIcon3,
#serviceIcon4 {
    font-size: 2.5rem;
    color: #5BE9B9;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
}

#servicesGrid > div:hover #serviceIcon1,
#servicesGrid > div:hover #serviceIcon2,
#servicesGrid > div:hover #serviceIcon3,
#servicesGrid > div:hover #serviceIcon4 {
    transform: scale(1.1);
    color: #FFB86F;
}

#serviceTitle1,
#serviceTitle2,
#serviceTitle3,
#serviceTitle4 {
    font-size: 1.5rem;
    color: #FFB86F;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

#serviceTitle1::after,
#serviceTitle2::after,
#serviceTitle3::after,
#serviceTitle4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #5BE9B9, #FFB86F);
    border-radius: 2px;
}

#serviceDesc1,
#serviceDesc2,
#serviceDesc3,
#serviceDesc4 {
    color: #E6E6E6;
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 768px) {
    #servicesContainer {
        padding: 2rem;
    }

    #servicesTitle {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }

    #servicesGrid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    #serviceIcon1,
    #serviceIcon2,
    #serviceIcon3,
    #serviceIcon4 {
        font-size: 2rem;
    }
}

/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(14, 14, 17, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.active {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: rgba(42, 45, 56, 0.95);
    padding: 2.5rem;
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    border: 1px solid rgba(91, 233, 185, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.cookie-popup.active .cookie-content {
    transform: translateY(0);
}

#cookieTitle {
    color: #5BE9B9;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

#cookieText {
    color: #E6E6E6;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.cookie-accept,
.cookie-settings {
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.cookie-accept {
    background: linear-gradient(135deg, #5BE9B9, #4BCF9F);
    color: #0E0E11;
}

.cookie-accept:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(91, 233, 185, 0.3);
}

.cookie-settings {
    background: transparent;
    color: #FFB86F;
    border: 2px solid #FFB86F;
}

.cookie-settings:hover {
    background: rgba(255, 184, 111, 0.1);
    transform: translateY(-2px);
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 2rem;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-settings {
        width: 100%;
    }
}

.game-feature-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, #5BE9B9, #FFB86F);
    color: #0E0E11;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(91, 233, 185, 0.15);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
}
.game-feature-button:hover {
    background: linear-gradient(135deg, #FFB86F, #5BE9B9);
    color: #0E0E11;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 25px rgba(255, 184, 111, 0.25);
}

.finance-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, #5BE9B9, #FFB86F);
    color: #0E0E11;
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(91, 233, 185, 0.15);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
}
.finance-button:hover {
    background: linear-gradient(135deg, #FFB86F, #5BE9B9);
    color: #0E0E11;
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 25px rgba(255, 184, 111, 0.25);
}
.brandName{
    text-decoration: none;
    color: white;
    text-decoration-style: unset;
}