
        :root {
            --primary-bg: #0a0a1a;
            --secondary-bg: #141428;
            --accent-gold: #d4af37;
            --accent-purple: #8b5cf6;
            --text-primary: #ffffff;
            --text-secondary: #c9c9d9;
            --card-bg: rgba(20, 20, 40, 0.8);
            --border-gold: 1px solid rgba(212, 175, 55, 0.5);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background-color: var(--primary-bg);
            color: var(--text-primary);
            overflow-x: hidden;
            position: relative;
        }

        h1, h2, h3, h4 {
            font-family: 'Cinzel', serif;
            color: var(--accent-gold);
        }

        /* Stars Background */
        .stars-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            overflow: hidden;
        }

        .stars {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: transparent;
        }

        .star {
            position: absolute;
            background-color: white;
            border-radius: 50%;
            animation: twinkle 4s infinite ease-in-out;
        }

        @keyframes twinkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.2); }
        }

        /* Navigation */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background-color: rgba(10, 10, 26, 0.9);
            backdrop-filter: blur(10px);
            z-index: 1000;
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .nav-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 20px;
        }

        .logo {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--accent-gold);
            text-decoration: none;
            letter-spacing: 1px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            color: var(--text-secondary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--accent-gold);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 0;
            background-color: var(--accent-gold);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        /* Sections */
        section {
            min-height: 100vh;
            padding: 100px 20px 50px;
            display: none;
        }

        section.active {
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Section Layout */
        .section-layout {
            display: flex;
            gap: 30px;
        }

        .sidebar {
            width: 250px;
            flex-shrink: 0;
            position: sticky;
            top: 100px;
            height: fit-content;
        }

        .sidebar-nav {
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            padding: 20px;
        }

        .sidebar-nav h3 {
            font-size: 1.3rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .sidebar-nav ul {
            list-style: none;
        }

        .sidebar-nav li {
            margin-bottom: 10px;
        }

        .sidebar-nav a {
            display: block;
            padding: 12px 15px;
            color: var(--text-secondary);
            text-decoration: none;
            border-radius: 8px;
            transition: all 0.3s ease;
        }

        .sidebar-nav a:hover, .sidebar-nav a.active {
            background-color: rgba(139, 92, 246, 0.2);
            color: var(--accent-gold);
        }

        .main-content {
            flex: 1;
            max-width: 900px;
        }

        /* Home Section */
        #home .zodiac-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .zodiac-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            padding: 20px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .zodiac-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
        }

        .zodiac-symbol {
            font-size: 2.5rem;
            margin-bottom: 10px;
            color: var(--accent-gold);
        }

        .zodiac-name {
            font-weight: 600;
            margin-bottom: 5px;
        }

        .zodiac-date {
            font-size: 0.8rem;
            color: var(--text-secondary);
        }

        .zodiac-info {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(20, 20, 40, 0.95);
            padding: 15px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            pointer-events: none;
        }

        .zodiac-card:hover .zodiac-info {
            opacity: 1;
            pointer-events: auto;
        }

        .daily-horoscope {
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            padding: 30px;
            margin-bottom: 40px;
        }

        .daily-horoscope h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .horoscope-content {
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.1rem;
        }

        .services-preview {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
            margin-bottom: 40px;
        }

        .service-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            overflow: hidden;
            transition: transform 0.3s ease;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-img {
            width: 100%;
            height: 180px;
            object-fit: cover;
        }

        .service-content {
            padding: 20px;
        }

        .service-title {
            font-size: 1.3rem;
            margin-bottom: 10px;
        }

        .service-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .articles-scroll {
            display: flex;
            gap: 20px;
            overflow-x: auto;
            padding-bottom: 20px;
            margin-bottom: 40px;
        }

        .articles-scroll::-webkit-scrollbar {
            height: 8px;
        }

        .articles-scroll::-webkit-scrollbar-track {
            background: var(--secondary-bg);
            border-radius: 10px;
        }

        .articles-scroll::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 10px;
        }

        .article-thumb {
            flex-shrink: 0;
            width: 250px;
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            overflow: hidden;
        }

        .article-thumb img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        .article-thumb-content {
            padding: 15px;
        }

        .article-tag {
            display: inline-block;
            padding: 5px 10px;
            background-color: rgba(139, 92, 246, 0.2);
            color: var(--accent-purple);
            border-radius: 20px;
            font-size: 0.8rem;
            margin-bottom: 10px;
        }

        .article-title {
            font-size: 1rem;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .big-cta {
            text-align: center;
            margin: 40px 0;
        }

        .big-cta-btn {
            padding: 20px 40px;
            background: linear-gradient(45deg, var(--accent-gold), var(--accent-purple));
            color: var(--primary-bg);
            border: none;
            border-radius: 50px;
            font-family: 'Cinzel', serif;
            font-weight: 600;
            font-size: 1.3rem;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }

        .big-cta-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(139, 92, 246, 0.4);
        }

        /* About Section */
        .bio-section {
            display: flex;
            gap: 40px;
            margin-bottom: 50px;
            align-items: center;
            max-width: 1200px;
        }

        .bio-image {
            flex: 1;
            max-width: 400px;
        }

        .bio-image img {
            width: 100%;
            border-radius: 10px;
            border: var(--border-gold);
        }

        .bio-content {
            flex: 2;
        }

        .bio-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .bio-text {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .mission-section {
           max-width: 1200px;
            position: relative;
            padding: 50px;
            border-radius: 10px;
            margin-bottom: 50px;
            overflow: hidden;
            
            background-size: cover;
            background-position: center;
            border: var(--border-gold);
        }

        .mission-content {
            position: relative;
            z-index: 2;
        }

        .mission-content h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .mission-text {
            color: var(--text-secondary);
            line-height: 1.8;
            font-size: 1.1rem;
            text-align: center;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline-section {
          
            margin-bottom: 50px;
        }

        .timeline {
            position: relative;
            padding-left: 30px;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 2px;
            height: 100%;
            background-color: rgba(212, 175, 55, 0.3);
        }

        .timeline-item {
            position: relative;
            padding-bottom: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .timeline-item:hover {
            transform: translateX(10px);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -34px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background-color: var(--accent-gold);
            border: 3px solid var(--primary-bg);
        }

        .timeline-year {
            font-weight: 600;
            color: var(--accent-gold);
            font-size: 1.2rem;
            margin-bottom: 5px;
        }

        .timeline-event {
            color: var(--text-secondary);
        }

        .testimonials-carousel {
           max-width: 1200px;
            position: relative;
            margin-bottom: 50px;
        }

        .testimonials-container {
            display: flex;
            overflow-x: auto;
            gap: 20px;
            padding-bottom: 20px;
        }

        .testimonials-container::-webkit-scrollbar {
            height: 8px;
        }

        .testimonials-container::-webkit-scrollbar-track {
            background: var(--secondary-bg);
            border-radius: 10px;
        }

        .testimonials-container::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 10px;
        }

        .testimonial-card {
            flex-shrink: 0;
            width: 370px;
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            padding: 30px;
        }

        .testimonial-text {
            color: var(--text-secondary);
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 20px;
            position: relative;
        }

        .testimonial-text::before {
            content: '"';
            font-size: 3rem;
            color: rgba(212, 175, 55, 0.3);
            position: absolute;
            top: -10px;
            left: -10px;
        }

        .testimonial-author {
            text-align: right;
            color: var(--accent-gold);
            font-weight: 500;
        }

        .press-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 20px;
            margin-bottom: 50px;
        }

        .press-logo {
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            height: 100px;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: all 0.3s ease;
        }

        .press-logo:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        }

        .press-logo img {
            max-width: 80%;
            max-height: 60%;
            filter: grayscale(100%);
            transition: filter 0.3s ease;
        }

        .press-logo:hover img {
            filter: grayscale(0%);
        }

        /* Services Section */
        .service-section {
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            padding: 30px;
            margin-bottom: 30px;
        }

        .service-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .service-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--accent-gold), var(--accent-purple));
            display: flex;
            justify-content: center;
            align-items: center;
            margin-right: 20px;
            font-size: 1.8rem;
            color: var(--primary-bg);
        }

        .service-title {
            font-size: 2rem;
        }

        .service-description {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .benefits-list {
            list-style: none;
            margin-bottom: 20px;
        }

        .benefits-list li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: var(--text-secondary);
        }

        .benefits-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            color: var(--accent-gold);
        }

        .service-pricing {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 20px;
        }

        .price {
            font-size: 1.5rem;
            color: var(--accent-gold);
            font-weight: 600;
        }

        .pricing-table {
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            overflow: hidden;
            margin-bottom: 50px;
        }

        .pricing-table table {
            width: 100%;
            border-collapse: collapse;
        }

        .pricing-table th, .pricing-table td {
            padding: 15px;
            text-align: left;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .pricing-table th {
            background-color: rgba(139, 92, 246, 0.2);
            color: var(--accent-gold);
            font-weight: 600;
        }

        .pricing-table tr:last-child td {
            border-bottom: none;
        }

        .fixed-cta {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 999;
        }

        .fixed-cta-btn {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background: linear-gradient(45deg, var(--accent-gold), var(--accent-purple));
            color: var(--primary-bg);
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .fixed-cta-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
        }

        /* FAQ Section */
        .faq-search {
            margin-bottom: 30px;
        }

        .faq-search input {
            width: 100%;
            padding: 15px;
            background-color: var(--card-bg);
            border: var(--border-gold);
            border-radius: 10px;
            color: var(--text-primary);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
        }

        .faq-search input:focus {
            outline: none;
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
        }

        .faq-category {
            margin-bottom: 40px;
        }

        .faq-category h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--accent-purple);
        }

        .faq-card {
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            margin-bottom: 15px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
        }

        .faq-question h4 {
            font-size: 1.2rem;
            color: var(--text-primary);
        }

        .faq-toggle {
            font-size: 1.2rem;
            color: var(--accent-gold);
            transition: transform 0.3s ease;
        }

        .faq-card.active .faq-toggle {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .faq-card.active .faq-answer {
            max-height: 500px;
        }

        .faq-answer-content {
            padding: 0 20px 20px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .contact-form {
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            padding: 30px;
            margin-top: 40px;
        }

        .contact-form h3 {
            font-size: 1.8rem;
            margin-bottom: 20px;
            text-align: center;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--text-secondary);
        }

        .form-control {
            width: 100%;
            padding: 15px;
            background-color: var(--primary-bg);
            border: var(--border-gold);
            border-radius: 8px;
            color: var(--text-primary);
            font-family: 'Poppins', sans-serif;
            font-size: 1rem;
        }

        .form-control:focus {
            outline: none;
            box-shadow: 0 0 10px rgba(139, 92, 246, 0.3);
        }

        textarea.form-control {
            min-height: 120px;
            resize: vertical;
        }

        /* Tips and Articles Section */
        .featured-article {
            display: flex;
            gap: 30px;
            margin-bottom: 50px;
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            overflow: hidden;
        }

        .featured-article img {
            width: 400px;
            height: 501px;
            object-fit: cover;
        }

        .featured-content {
            flex: 1;
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .featured-tag {
            display: inline-block;
            padding: 5px 15px;
            background-color: rgba(139, 92, 246, 0.2);
            color: var(--accent-purple);
            border-radius: 20px;
            font-size: 0.9rem;
            margin-bottom: 15px;
            align-self: flex-start;
        }

        .featured-title {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .featured-excerpt {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .masonry-grid {
            column-count: 3;
            column-gap: 20px;
        }

        .masonry-item {
            display: inline-block;
            width: 100%;
            margin-bottom: 20px;
            break-inside: avoid;
        }

        .masonry-item img {
            width: 100%;
            border-radius: 10px 10px 0 0;
        }

        .masonry-content {
            background-color: var(--card-bg);
            padding: 15px;
            border-radius: 0 0 10px 10px;
            border: var(--border-gold);
            border-top: none;
        }

        .newsletter-signup {
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            padding: 30px;
            margin-top: 50px;
            text-align: center;
        }

        .newsletter-signup h3 {
            font-size: 1.8rem;
            margin-bottom: 15px;
        }

        .newsletter-signup p {
            color: var(--text-secondary);
            margin-bottom: 20px;
        }

        .newsletter-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 15px;
            background-color: var(--primary-bg);
            border: var(--border-gold);
            border-radius: 30px 0 0 30px;
            color: var(--text-primary);
            font-family: 'Poppins', sans-serif;
        }

        .newsletter-form button {
            padding: 12px 25px;
            background: linear-gradient(45deg, var(--accent-gold), var(--accent-purple));
            color: var(--primary-bg);
            border: none;
            border-radius: 0 30px 30px 0;
            font-family: 'Cinzel', serif;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .newsletter-form button:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
        }

        .pagination {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 40px;
        }

        .page-btn {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--card-bg);
            border: var(--border-gold);
            color: var(--text-secondary);
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .page-btn:hover, .page-btn.active {
            background-color: rgba(139, 92, 246, 0.2);
            color: var(--accent-gold);
        }

        /* CTA Section */
        .cta-layout {
            display: flex;
            gap: 50px;
            align-items: center;
        }

        .cta-content {
            flex: 1;
        }

        .cta-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
        }

        .cta-content p {
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .cta-form {
            flex: 1;
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            padding: 40px;
        }

        .cta-form h2 {
            font-size: 2rem;
            margin-bottom: 30px;
            text-align: center;
        }

        .testimonials-strip {
            display: flex;
            gap: 30px;
            overflow-x: auto;
            padding: 30px 0;
            margin-top: 50px;
        }

        .testimonials-strip::-webkit-scrollbar {
            height: 8px;
        }

        .testimonials-strip::-webkit-scrollbar-track {
            background: var(--secondary-bg);
            border-radius: 10px;
        }

        .testimonials-strip::-webkit-scrollbar-thumb {
            background: var(--accent-gold);
            border-radius: 10px;
        }

        .testimonial-quote {
            flex-shrink: 0;
            width: 300px;
            background-color: var(--card-bg);
            border-radius: 10px;
            border: var(--border-gold);
            padding: 20px;
            text-align: center;
        }

        .testimonial-quote-text {
            color: var(--text-secondary);
            font-style: italic;
            margin-bottom: 15px;
            position: relative;
        }

        .testimonial-quote-text::before {
            content: '"';
            font-size: 2rem;
            color: rgba(212, 175, 55, 0.3);
            position: absolute;
            top: -10px;
            left: -5px;
        }

        .testimonial-quote-author {
            color: var(--accent-gold);
            font-weight: 500;
        }

        /* Footer */
        footer {
            background-color: var(--secondary-bg);
            padding: 50px 20px 30px;
            border-top: var(--border-gold);
            margin-top: 100px;
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
        }

        .footer-section {
            flex: 1;
            min-width: 250px;
        }

        .footer-section h3 {
            font-size: 1.5rem;
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-secondary);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--accent-gold);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: rgba(139, 92, 246, 0.2);
            display: flex;
            justify-content: center;
            align-items: center;
            color: var(--accent-purple);
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--accent-purple);
            color: var(--text-primary);
            transform: translateY(-3px);
        }

        .copyright {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: var(--border-gold);
            color: var(--text-secondary);
        }
        .blog-image{

           max-width: 900px;
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            background-size: cover;
            background-position: center;
            padding-bottom: 20px;
            
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .masonry-grid {
                column-count: 2;
            }
            
            .featured-article {
                flex-direction: column;
            }
            
            .featured-article img {
                width: 100%;
                height: 250px;
            }
            
            .cta-layout {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                position: fixed;
                top: 70px;
                left: 0;
                width: 100%;
                background-color: rgba(10, 10, 26, 0.95);
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-150%);
                transition: transform 0.3s ease;
            }
            
            .nav-links.active {
                transform: translateY(0);
            }
            
            .nav-links li {
                margin: 15px 0;
            }
            
            .menu-toggle {
                display: flex;
            }
            
            .section-layout {
                flex-direction: column;
            }
            
            .sidebar {
                width: 100%;
                position: static;
                margin-bottom: 30px;
            }
            
            .masonry-grid {
                column-count: 1;
            }
            
            .bio-section {
                flex-direction: column;
            }
            
            .timeline {
                padding-left: 20px;
            }
            
            .timeline-item::before {
                left: -24px;
            }
        }
   