* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: #0B0E13;
    color: #ffffff;
    min-height: 100vh;
}

.header {
    background-color: #0B0E13;
    border-bottom: 1px solid #19242E;
    padding: 20px 0;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.8;
}

/* Burger Menu Styles */
.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.burger-line {
    width: 100%;
    height: 3px;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.burger-menu.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.burger-menu.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
}

.navigation {
    display: flex;
    gap: 32px;
    justify-self: center;
}

.nav-link {
    text-decoration: none;
    color: #9CA3AF;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-link:hover {
    color: #C7F284;
    border-bottom: 2px solid #C7F284;
    padding-bottom: 4px;
}

.nav-link.active {
    color: #C7F284;
    border-bottom: 2px solid #C7F284;
    padding-bottom: 4px;
}

.watch-news-btn {
    background-color: #C7F284;
    color: #0B0E13;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    justify-self: end;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.watch-news-btn:hover {
    background-color: #B5E06A;
    transform: translateY(-2px);
}

.hero {
    background-color: #0B0E13;
    padding: 40px 0 60px 0;
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    min-height: 80vh;
    overflow: hidden;
}

.hero-spheres {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.sphere {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(199, 242, 132, 0.3) 0%, rgba(199, 242, 132, 0.1) 50%, transparent 100%);
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

.sphere-left {
    width: 300px;
    height: 300px;
    top: 20%;
    left: -150px;
    animation-delay: 0s;
}

.sphere-right {
    width: 400px;
    height: 400px;
    top: 30%;
    right: -200px;
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.6;
    }
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(198, 244, 98, 0.2) 0%, rgba(51, 217, 255, 0.2) 100%);
    border: 1px solid #C6F462;
    color: #C6F462;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 500;
    background: linear-gradient(135deg, #C6F462 0%, #33D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    background-color: #C7F284;
    color: #0B0E13;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    background-color: #B5E06A;
    transform: translateY(-2px);
}

.features {
    background-color: #0B0E13;
    padding: 20px 0 100px 0;
    position: relative;
    overflow: hidden;
}

.floating-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.line {
    position: absolute;
    background: linear-gradient(90deg, transparent, #C7F284, transparent);
    height: 1px;
    opacity: 0.3;
}

.line-1 {
    width: 200px;
    top: 20%;
    left: 10%;
    animation: float1 15s ease-in-out infinite;
}

.line-2 {
    width: 150px;
    top: 40%;
    right: 15%;
    animation: float2 18s ease-in-out infinite;
}

.line-3 {
    width: 180px;
    top: 60%;
    left: 20%;
    animation: float3 20s ease-in-out infinite;
}

.line-4 {
    width: 120px;
    top: 30%;
    right: 30%;
    animation: float4 16s ease-in-out infinite;
}

.line-5 {
    width: 160px;
    top: 70%;
    right: 10%;
    animation: float5 22s ease-in-out infinite;
}

.line-6 {
    width: 140px;
    top: 15%;
    left: 50%;
    animation: float6 19s ease-in-out infinite;
}

.line-7 {
    width: 100px;
    top: 50%;
    left: 5%;
    animation: float7 17s ease-in-out infinite;
}

.line-8 {
    width: 190px;
    top: 80%;
    left: 40%;
    animation: float8 21s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(50px) translateY(0); }
    50% { transform: translateX(100px) translateY(0); }
    75% { transform: translateX(30px) translateY(0); }
}

@keyframes float2 {
    0%, 100% { transform: translateX(0) translateY(0); }
    33% { transform: translateX(0) translateY(30px); }
    66% { transform: translateX(0) translateY(-15px); }
}

@keyframes float3 {
    0%, 100% { transform: translateX(0) translateY(0); }
    20% { transform: translateX(60px) translateY(0); }
    40% { transform: translateX(120px) translateY(0); }
    60% { transform: translateX(80px) translateY(0); }
    80% { transform: translateX(40px) translateY(0); }
}

@keyframes float4 {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(0) translateY(25px); }
}

@keyframes float5 {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-30px) translateY(0); }
    50% { transform: translateX(-70px) translateY(0); }
    75% { transform: translateX(-50px) translateY(0); }
}

@keyframes float6 {
    0%, 100% { transform: translateX(0) translateY(0); }
    30% { transform: translateX(0) translateY(20px); }
    60% { transform: translateX(0) translateY(-10px); }
}

@keyframes float7 {
    0%, 100% { transform: translateX(0) translateY(0); }
    40% { transform: translateX(70px) translateY(0); }
    80% { transform: translateX(140px) translateY(0); }
}

@keyframes float8 {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(0) translateY(30px); }
    50% { transform: translateX(0) translateY(-20px); }
    75% { transform: translateX(0) translateY(10px); }
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.features-title {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #C6F462 0%, #33D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: rgba(21, 30, 40, 0.6);
    border: 1px solid rgba(198, 244, 98, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #C6F462 0%, #33D9FF 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: #0B0E13;
}

.feature-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0B0E13;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.feature-description {
    font-size: 1rem;
    color: #9CA3AF;
    line-height: 1.6;
}

.blog {
    background-color: #151E28;
    padding: 100px 0;
}

.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blog-title {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, #C6F462 0%, #33D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.blog-card {
    background: rgba(21, 30, 40, 0.8);
    border: 1px solid rgba(198, 244, 98, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: rgba(198, 244, 98, 0.3);
    box-shadow: 0 20px 40px rgba(198, 244, 98, 0.1);
}

.blog-image {
    width: 100%;
    height: 200px;
    background: #0B0E13;
    border-radius: 12px;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    position: relative;
    width: 120px;
    height: 120px;
}

.placeholder-circle {
    width: 100px;
    height: 100px;
    border: 2px solid #C7F284;
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 10px;
}

.placeholder-lines {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 80px;
    height: 80px;
}

.placeholder-lines .line {
    position: absolute;
    background: #C7F284;
    height: 1px;
    width: 30px;
}

.placeholder-lines .line:nth-child(1) {
    top: 20px;
    left: 10px;
    transform: rotate(45deg);
}

.placeholder-lines .line:nth-child(2) {
    top: 40px;
    left: 15px;
    transform: rotate(-30deg);
}

.placeholder-lines .line:nth-child(3) {
    top: 60px;
    left: 5px;
    transform: rotate(60deg);
}

.placeholder-numbers {
    position: absolute;
    top: 15px;
    right: 10px;
    color: #C7F284;
    font-size: 12px;
    font-weight: 600;
}

.placeholder-numbers span {
    display: block;
    margin-bottom: 5px;
}

.placeholder-train {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.train-body {
    width: 120px;
    height: 40px;
    background: #ffffff;
    border-radius: 8px;
    position: relative;
}

.train-window {
    width: 20px;
    height: 20px;
    background: #33D9FF;
    border-radius: 4px;
    position: absolute;
    top: 10px;
    left: 20px;
}

.train-line {
    width: 100%;
    height: 2px;
    background: #9CA3AF;
    position: absolute;
    bottom: 10px;
}

.placeholder-code {
    width: 100%;
    height: 100%;
    background: #0B0E13;
    padding: 20px;
    position: relative;
}

.code-line {
    height: 8px;
    background: #9CA3AF;
    margin-bottom: 8px;
    border-radius: 2px;
}

.code-line:nth-child(1) { width: 60%; }
.code-line:nth-child(2) { width: 80%; }
.code-line:nth-child(3) { width: 45%; }
.code-line:nth-child(4) { width: 70%; }

.code-highlight {
    position: absolute;
    top: 60px;
    left: 20px;
    width: 40px;
    height: 8px;
    background: #C7F284;
    border-radius: 2px;
}

.blog-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-card-description {
    font-size: 1rem;
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 24px;
}

.blog-link {
    color: #C7F284;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.blog-link:hover {
    color: #33D9FF;
}

.blog-btn {
    background: linear-gradient(135deg, #C6F462 0%, #33D9FF 100%);
    color: #0B0E13;
    border: none;
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Manrope', sans-serif;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.blog-container {
    text-align: center;
}

.blog-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(198, 244, 98, 0.3);
}

.footer {
    background-color: #0B0E13;
    padding: 60px 0 20px 0;
    border-top: 1px solid rgba(198, 244, 98, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    width: 32px;
    height: 32px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.footer-description {
    color: #9CA3AF;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 400px;
}

.footer-contact {
    color: #9CA3AF;
    line-height: 1.6;
}

.footer-contact p {
    margin-bottom: 8px;
}

.footer-heading {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-link {
    color: #9CA3AF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #C7F284;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(198, 244, 98, 0.1);
    border: 1px solid rgba(198, 244, 98, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C7F284;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(198, 244, 98, 0.2);
    border-color: #C7F284;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(198, 244, 98, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-copyright {
    color: #9CA3AF;
    font-size: 0.9rem;
    margin: 0;
}


/* Mobile Responsive Design */
@media (max-width: 760px) {
    /* Global mobile styles */
    * {
        box-sizing: border-box;
    }
    
    /* Header */
    .header-content {
        grid-template-columns: 1fr auto;
        gap: 20px;
        text-align: left;
        padding: 0 20px;
        align-items: center;
    }
    
    .logo {
        justify-self: start;
    }
    
    .navigation {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(11, 14, 19, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .navigation.active {
        display: flex;
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 15px 30px;
        border-radius: 12px;
        background-color: rgba(255, 255, 255, 0.1);
        font-size: 18px;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .nav-link:hover {
        background-color: rgba(198, 244, 98, 0.2);
        color: #C6F462;
    }
    
    .watch-news-btn {
        display: none;
    }
    
    .burger-menu {
        display: flex;
        justify-self: end;
    }
    
    /* Hero Section */
    .hero {
        padding: 60px 20px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 20px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
    
    /* Features Section */
    .features {
        padding: 60px 20px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    /* Blog Section */
    .blog {
        padding: 60px 20px;
    }
    
    .blog-container {
        padding: 0 20px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .blog-card {
        padding: 20px;
    }
    
    /* Footer */
    .footer {
        padding: 60px 20px 30px 20px;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-column {
        padding: 0 20px;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

/* Blog Page Styles */
.blog-main {
    background-color: #0B0E13;
    min-height: 100vh;
    padding-top: 40px;
}

.blog-hero {
    text-align: center;
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.blog-hero-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #C6F462 0%, #33D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-hero-subtitle {
    font-size: 18px;
    color: #8B9CA8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.blog-articles {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.blog-article {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding: 40px;
    background-color: #151E28;
    border-radius: 16px;
    border: 1px solid #19242E;
    transition: all 0.3s ease;
}

.blog-article:hover {
    transform: translateY(-4px);
    border-color: #33D9FF;
    box-shadow: 0 20px 40px rgba(51, 217, 255, 0.1);
}

.article-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
}

.article-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 16px;
}

.article-date {
    color: #8B9CA8;
    font-size: 14px;
    font-weight: 500;
}

.article-category {
    color: #C6F462;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.3;
}

.article-excerpt {
    color: #8B9CA8;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.article-link {
    color: #33D9FF;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.article-link:hover {
    color: #C6F462;
    transform: translateX(4px);
}

/* Newsletter Section */
.newsletter-section {
    background-color: #151E28;
    padding: 80px 20px;
    margin-top: 40px;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.newsletter-description {
    font-size: 18px;
    color: #8B9CA8;
    line-height: 1.6;
    margin-bottom: 40px;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 12px;
    background-color: #0B0E13;
    border-radius: 12px;
    padding: 8px;
    border: 1px solid #19242E;
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 16px;
    padding: 16px 20px;
    outline: none;
}

.newsletter-input::placeholder {
    color: #8B9CA8;
}

.newsletter-btn {
    background: linear-gradient(135deg, #C6F462 0%, #33D9FF 100%);
    color: #0B0E13;
    border: none;
    border-radius: 8px;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(51, 217, 255, 0.3);
}

/* Active navigation link */
.nav-link.active {
    color: #C6F462;
}

/* Responsive Design for Blog */
@media (max-width: 760px) {
    .blog-main {
        padding-top: 20px;
    }
    
    .blog-hero {
        padding: 60px 20px;
    }
    
    .blog-hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .blog-hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .blog-articles {
        padding: 0 20px;
    }
    
    .blog-article {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px;
        margin-bottom: 30px;
    }
    
    .article-image {
        height: 200px;
    }
    
    .article-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .article-excerpt {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .newsletter-section {
        padding: 60px 20px;
    }
    
    .newsletter-container {
        padding: 0 20px;
    }
    
    .newsletter-title {
        font-size: 28px;
    }
    
    .newsletter-description {
        font-size: 16px;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .newsletter-input-group {
        flex-direction: column;
        gap: 10px;
    }
    
    .newsletter-input {
        padding: 15px 20px;
    }
    
    .newsletter-btn {
        padding: 15px 30px;
        width: 100%;
    }
}

/* About Us Page Styles */
.about-main {
    background-color: #0B0E13;
    min-height: 100vh;
    padding-top: 40px;
}

.about-hero {
    text-align: center;
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #C6F462 0%, #33D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-size: 18px;
    color: #8B9CA8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.our-story {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.story-container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.story-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.6;
    color: #8B9CA8;
}

.story-image {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
}

.mission-vision {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-vision-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background-color: #151E28;
    border: 1px solid #19242E;
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-4px);
    border-color: #C6F462;
    box-shadow: 0 20px 40px rgba(198, 244, 98, 0.1);
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.card-description {
    font-size: 16px;
    line-height: 1.6;
    color: #8B9CA8;
}

/* Responsive Design for About Us */
@media (max-width: 760px) {
    .about-main {
        padding-top: 20px;
    }
    
    .about-hero {
        padding: 60px 20px;
    }
    
    .about-hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .about-hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .our-story {
        padding: 60px 20px;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 20px;
    }
    
    .story-image {
        height: 300px;
    }
    
    .story-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .story-description {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .mission-vision {
        padding: 60px 20px;
    }
    
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0 20px;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }
    
    .card-title {
        font-size: 20px;
        margin-bottom: 15px;
    }
    
    .card-description {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* Contact Page Styles */
.contact-main {
    background-color: #0B0E13;
    min-height: 100vh;
    padding-top: 40px;
}

.contact-hero {
    text-align: center;
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero-title {
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, #C6F462 0%, #33D9FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-hero-subtitle {
    font-size: 18px;
    color: #8B9CA8;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #C6F462 0%, #33D9FF 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    color: #0B0E13;
    width: 24px;
    height: 24px;
}

.contact-details {
    flex: 1;
}

.contact-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 8px;
}

.contact-value {
    font-size: 16px;
    color: #8B9CA8;
    line-height: 1.5;
}

.contact-form-container {
    background-color: #151E28;
    border: 1px solid #19242E;
    border-radius: 16px;
    padding: 40px;
}

.contact-form-card {
    width: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-label {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.form-input,
.form-textarea {
    background-color: #0B0E13;
    border: 1px solid #19242E;
    border-radius: 8px;
    padding: 16px;
    color: #ffffff;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #C6F462;
    box-shadow: 0 0 0 3px rgba(198, 244, 98, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #8B9CA8;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    accent-color: #C6F462;
    margin-top: 2px;
}

.checkbox-label {
    font-size: 14px;
    color: #8B9CA8;
    line-height: 1.5;
    cursor: pointer;
}

.privacy-link {
    color: #33D9FF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-link:hover {
    color: #C6F462;
}

.contact-submit-btn {
    background: linear-gradient(135deg, #C6F462 0%, #33D9FF 100%);
    color: #0B0E13;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.contact-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(198, 244, 98, 0.3);
}

/* Responsive Design for Contact */
@media (max-width: 760px) {
    .contact-main {
        padding-top: 20px;
    }
    
    .contact-hero {
        padding: 60px 20px;
    }
    
    .contact-hero-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .contact-hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }
    
    .contact-info {
        gap: 30px;
        padding: 0 20px;
    }
    
    .contact-section-title {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .contact-item {
        padding: 20px;
    }
    
    .contact-label {
        font-size: 16px;
    }
    
    .contact-value {
        font-size: 14px;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .form-input,
    .form-textarea {
        padding: 15px 20px;
        font-size: 16px;
    }
    
    .contact-submit-btn {
        width: 100%;
        padding: 15px 30px;
    }
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(4px);
}

.modal-content {
    background-color: #151E28;
    margin: 5% auto;
    padding: 0;
    border: 1px solid #19242E;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: modalSlideIn 0.3s ease-out;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-header {
    background: linear-gradient(135deg, #C6F462 0%, #33D9FF 100%);
    color: #0B0E13;
    padding: 24px 32px;
    border-radius: 16px 16px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.modal-close {
    color: #0B0E13;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    transition: opacity 0.3s ease;
}

.modal-close:hover {
    opacity: 0.7;
}

.modal-body {
    padding: 32px;
    color: #ffffff;
}

.modal-body h3 {
    color: #C6F462;
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px 0;
}

.modal-body h3:first-child {
    margin-top: 0;
}

.modal-body p {
    color: #8B9CA8;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Responsive Modal */
@media (max-width: 760px) {
    .modal-content {
        width: 95%;
        margin: 10% auto;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 20px 24px;
    }
    
    .modal-title {
        font-size: 20px;
    }
    
    .modal-close {
        font-size: 28px;
    }
    
    .modal-body {
        padding: 24px;
    }
    
    .modal-body h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .modal-body p {
        font-size: 14px;
        line-height: 1.5;
        margin-bottom: 16px;
    }
}

/* Image Styles */
.blog-card-img, .article-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.blog-card-img {
    height: 200px;
}

.article-img {
    height: 250px;
}

/* Tablet Responsive Design */
@media (max-width: 1024px) and (min-width: 769px) {
    .header-content {
        padding: 0 20px;
    }
    
    .hero {
        padding: 80px 20px;
    }
    
    .features {
        padding: 80px 20px;
    }
    
    .blog {
        padding: 80px 20px;
    }
    
    .footer {
        padding: 80px 20px 40px 20px;
    }
    
    .blog-main {
        padding-top: 20px;
    }
    
    .blog-hero {
        padding: 80px 20px;
    }
    
    .blog-articles {
        padding: 0 20px;
    }
    
    .newsletter-section {
        padding: 80px 20px;
    }
    
    .about-main {
        padding-top: 20px;
    }
    
    .about-hero {
        padding: 80px 20px;
    }
    
    .our-story {
        padding: 80px 20px;
    }
    
    .mission-vision {
        padding: 80px 20px;
    }
    
    .contact-main {
        padding-top: 20px;
    }
    
    .contact-hero {
        padding: 80px 20px;
    }
    
    .contact-content {
        padding: 80px 20px;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .blog-hero-title,
    .about-hero-title,
    .contact-hero-title {
        font-size: 28px;
    }
    
    .blog-hero-subtitle,
    .about-hero-subtitle,
    .contact-hero-subtitle {
        font-size: 14px;
    }
    
    .feature-card {
        padding: 20px 15px;
    }
    
    .blog-card {
        padding: 15px;
    }
    
    .blog-article {
        padding: 15px;
    }
    
    .mission-card,
    .vision-card {
        padding: 20px 15px;
    }
    
    .contact-item {
        padding: 15px;
    }
    
    .contact-form-container {
        padding: 20px 15px;
    }
    
    .modal-content {
        width: 98%;
        margin: 2% auto;
    }
    
    .modal-header {
        padding: 15px 20px;
    }
    
    .modal-body {
        padding: 15px 20px;
    }
}
