        /* CSS will be inlined for performance */
        :root {
            --primary: #15803d;
            --primary-dark: #0f6e32;
            --accent: #84cc16;
            --background: #ffffff;
            --foreground: #0f172a;
            --muted: #f8fafc;
            --muted-foreground: #64748b;
            --card: #ffffff;
            --card-foreground: #0f172a;
            --border: #e2e8f0;
            --input: #f1f5f9;
            --radius: 0.75rem;
            
            --font-heading: "Space Grotesk", sans-serif;
            --font-body: "DM Sans", sans-serif;
            
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            --bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);
            
            --container-padding: 1rem;
            --section-padding: 5rem 0;
        }

        :root[data-theme="dark"] {
                --background: #0f172a;
                --foreground: #f1f5f9;
                --muted: #1e293b;
                --muted-foreground: #94a3b8;
                --card: #1e293b;
                --card-foreground: #f1f5f9;
                --border: #334155;
                --input: #334155;
            }
        

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

        html {
            scroll-behavior: smooth;
            scroll-padding-top: 5rem;
        }

        body {
            font-family: var(--font-body);
            line-height: 1.6;
            color: var(--foreground);
            background: var(--background);
            overflow-x: hidden;
            transition: background-color 0.3s ease;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 var(--container-padding);
        }

        /* Improved Floating Navigation */
        .floating-nav {
            position: fixed;
            top: 1rem;
            left: 50%;
            transform: translateX(-50%);
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 0.75rem 1.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            animation: slideInDown 0.8s var(--bounce);
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 95%;
            max-width: 1200px;
        }

        [data-theme="dark"] {
            .floating-nav {
                background: rgba(30, 41, 59, 0.95);
                border-color: rgba(255, 255, 255, 0.1);
            }
        }

        .nav-brand {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.25rem;
            color: var(--primary);
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .nav-links {
            display: flex;
            gap: 1.5rem;
        }

        .nav-link {
            text-decoration: none;
            color: var(--muted-foreground);
            font-weight: 500;
            font-size: 0.9rem;
            transition: var(--transition);
            position: relative;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link::after {
            content: "";
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
        }

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

        .nav-buttons {
            display: flex;
            gap: 0.75rem;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: var(--foreground);
            cursor: pointer;
            padding: 0.5rem;
        }

        .mobile-menu {
            display: none;
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            border: 1px solid var(--border);
            border-radius: 1rem;
            margin-top: 0.5rem;
            padding: 1.5rem;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            z-index: 1000;
        }

        [data-theme="dark"] {
            .mobile-menu {
                background: rgba(30, 41, 59, 0.95);
                border-color: rgba(255, 255, 255, 0.1);
            }
        }

        .mobile-menu-content {
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }

        .mobile-nav-link {
            text-decoration: none;
            color: var(--muted-foreground);
            font-weight: 500;
            padding: 0.5rem 0;
            transition: var(--transition);
        }

        .mobile-nav-link:hover {
            color: var(--primary);
        }

        .mobile-buttons {
            display: flex;
            flex-direction: column;
            gap: 0.75rem;
            margin-top: 1rem;
            padding-top: 1rem;
            border-top: 1px solid var(--border);
        }

        /* Buttons */
        .btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.75rem 1.5rem;
            border-radius: var(--radius);
            font-weight: 500;
            font-size: 0.875rem;
            text-decoration: none;
            border: none;
            cursor: pointer;
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            color: white;
            box-shadow: 0 4px 15px rgba(21, 128, 61, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-2px) !important;
            box-shadow: 0 8px 25px rgba(21, 128, 61, 0.4);
            background: linear-gradient(135deg, var(--primary-dark), var(--primary));
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px) !important;
        }

        .btn-large {
            padding: 1rem 2rem;
            font-size: 1rem;
        }

        .btn-icon {
            padding: 0.75rem;
            border-radius: 50%;
        }

        .btn-full {
            width: 100%;
            justify-content: center;
        }

        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 8rem 1rem 4rem;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            max-width: 800px;
            animation: fadeInUp 1s ease-out;
            position: relative;
            z-index: 2;
        }

        .hero-avatar {
            position: relative;
            width: 140px;
            height: 140px;
            margin: 0 auto 2rem;
        }

        .avatar-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid rgba(21, 128, 61, 0.2);
            animation: glow 2s ease-in-out infinite alternate;
        }

        .avatar-status {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 16px;
            height: 16px;
            background: var(--accent);
            border-radius: 50%;
            border: 2px solid var(--background);
            animation: pulse 2s infinite;
        }

        .hero-title {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            margin-bottom: 1.5rem;
            line-height: 1.1;
        }

        .title-normal {
            color: var(--foreground);
            display: block;
        }

        .title-gradient {
            background: linear-gradient(135deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .hero-subtitle h2 {
            font-family: var(--font-heading);
            font-size: clamp(1.5rem, 4vw, 2.5rem);
            color: var(--muted-foreground);
            margin-bottom: 1.5rem;
            font-weight: 600;
        }

        .hero-tags {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-bottom: 2.5rem;
        }

        .tag {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            color: var(--muted-foreground);
            font-size: 0.9rem;
            background: rgba(21, 128, 61, 0.1);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
        }

        .tag i {
            color: var(--primary);
            width: 16px;
            height: 16px;
        }

        .hero-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            justify-content: center;
            margin-bottom: 3rem;
        }

        .hero-stats {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            max-width: 500px;
            margin: 0 auto;
        }

        .stat {
            text-align: center;
            padding: 1.5rem;
            background: rgba(21, 128, 61, 0.05);
            border-radius: var(--radius);
            transition: var(--transition);
        }

        .stat:hover {
            transform: translateY(-5px) !important;
            background: rgba(21, 128, 61, 0.1);
        }

        .stat-number {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: clamp(1.75rem, 4vw, 2.5rem);
            color: var(--primary);
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 0.875rem;
            color: var(--muted-foreground);
        }

        .scroll-indicator {
            position: absolute;
            bottom: 2rem;
            left: 50%;
            transform: translateX(-50%);
            animation: bounce 2s infinite;
        }

        .scroll-mouse {
            width: 24px;
            height: 40px;
            border: 2px solid var(--primary);
            border-radius: 12px;
            display: flex;
            justify-content: center;
            padding-top: 8px;
        }

        .scroll-wheel {
            width: 4px;
            height: 12px;
            background: var(--primary);
            border-radius: 2px;
            animation: pulse 2s infinite;
        }

        /* Section Styles */
        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: clamp(2rem, 6vw, 3.5rem);
            color: var(--foreground);
            margin-bottom: 1rem;
        }

        .section-subtitle {
            font-size: 1.125rem;
            color: var(--muted-foreground);
            max-width: 600px;
            margin: 0 auto;
        }

        /* About Section */
        .about-section {
            padding: var(--section-padding);
            background: var(--muted);
            position: relative;
        }

        .about-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 992px) {
            .about-content {
                grid-template-columns: 1fr 1fr;
                align-items: start;
            }
        }

        .card {
            background: var(--card);
            border-radius: var(--radius);
            padding: 2rem;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
        }

        .card:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .gradient-card {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(240, 253, 244, 0.9));
            backdrop-filter: blur(10px);
            border: 1px solid rgba(21, 128, 61, 0.1);
        }

        [data-theme="dark"] {
            .gradient-card {
                background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(20, 83, 45, 0.2));
                border-color: rgba(21, 128, 61, 0.2);
            }
        }

        .card-header {
            margin-bottom: 1.5rem;
        }

        .card-title {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1.5rem;
            color: var(--card-foreground);
            margin-bottom: 0.5rem;
        }

        .card-subtitle {
            color: var(--muted-foreground);
            font-size: 0.9rem;
        }

        .card-content p {
            color: var(--muted-foreground);
            margin-bottom: 1.5rem;
            line-height: 1.7;
        }
        .project-overlay {
            opacity: 1;
            position: absolute;
            inset: 0;
            background: linear-gradient(45deg, rgba(21, 128, 61, 0.9), rgba(132, 204, 22, 0.8));
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }
        .view-project-btn {
            background: white;
            color: var(--primary);
            padding: 0.75rem 1.5rem;
            border-radius: 0.5rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            transition: var(--transition);
            text-decoration: none;
        }

        .view-project-btn:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
        }

        .skills-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .skill-tag {
            background: rgba(21, 128, 61, 0.1);
            color: var(--primary);
            padding: 0.5rem 1rem;
            border-radius: 2rem;
            font-size: 0.8rem;
            font-weight: 500;
            transition: var(--transition);
        }

        .skill-tag:hover {
            background: rgba(21, 128, 61, 0.2);
            transform: translateY(-2px) !important;
        }

        .skills-progress {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .skill-item {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .skill-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 500;
        }

        .skill-percentage {
            color: var(--primary);
            font-weight: 600;
        }

        .skill-bar {
            width: 100%;
            height: 8px;
            background: var(--border);
            border-radius: 4px;
            overflow: hidden;
        }

        .skill-fill {
            height: 100%;
            background: linear-gradient(90deg, var(--primary), var(--accent));
            border-radius: 4px;
            transition: width 1s ease-out;
            width: 0;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem;
        }

        .stat-card {
            background: var(--card);
            border-radius: var(--radius);
            padding: 1.5rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .stat-card:hover {
            transform: translateY(-5px) !important;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .stat-icon {
            width: 32px;
            height: 32px;
            margin: 0 auto 1rem;
        }

        .stat-icon.primary {
            color: var(--primary);
        }

        .stat-icon.accent {
            color: var(--accent);
        }

        /* Projects Section */
        .projects-section {
            padding: var(--section-padding);
            background: var(--background);
        }

        .projects-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
        }

        .project-card {
            background: var(--card);
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
        }

        .project-card:hover {
            transform: translateY(-10px) !important;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .project-image {
            position: relative;
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .project-card:hover .project-image img {
            transform: scale(1.05);
        }

        .project-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: var(--transition);
        }

        .project-card:hover .project-overlay {
            opacity: 1;
        }

        .play-btn {
            background: rgba(255, 255, 255, 0.9);
            border: none;
            border-radius: 50%;
            width: 60px;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .play-btn:hover {
            background: white;
            transform: scale(1.1);
        }

        .project-content {
            padding: 1.5rem;
        }

        .project-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1rem;
        }

        .project-title {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--card-foreground);
        }

        .project-link {
            color: var(--muted-foreground);
            transition: var(--transition);
        }

        .project-card:hover .project-link {
            color: var(--primary);
        }

        .project-description {
            color: var(--muted-foreground);
            margin-bottom: 1rem;
            line-height: 1.6;
        }

        .project-tech {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .tech-tag {
            border: 1px solid rgba(21, 128, 61, 0.2);
            color: var(--primary);
            padding: 0.25rem 0.75rem;
            border-radius: 1rem;
            font-size: 0.8rem;
            font-weight: 500;
        }

        /* Services Section */
        .services-section {
            padding: var(--section-padding);
            background: var(--muted);
        }

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

        .service-card {
            background: var(--card);
            border-radius: var(--radius);
            padding: 2rem;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-5px)!important;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        }

        .service-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            background: rgba(21, 128, 61, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .service-card:hover .service-icon {
            background: rgba(21, 128, 61, 0.2);
            transform: scale(1.1);
        }

        .service-icon i {
            width: 28px;
            height: 28px;
            color: var(--primary);
        }

        .service-title {
            font-family: var(--font-heading);
            font-weight: 600;
            font-size: 1.25rem;
            color: var(--card-foreground);
            margin-bottom: 1rem;
        }

        .service-description {
            color: var(--muted-foreground);
            margin-bottom: 1.5rem;
            line-height: 1.6;
            flex-grow: 1;
        }

        .service-features {
            list-style: none;
            text-align: left;
        }

        .service-features li {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            color: var(--muted-foreground);
            font-size: 0.9rem;
            margin-bottom: 0.75rem;
        }

        .service-features i {
            color: var(--accent);
            width: 16px;
            height: 16px;
            flex-shrink: 0;
        }

        /* Contact Section */
        .contact-section {
            padding: var(--section-padding);
            background: var(--background);
        }

        .contact-content {
            display: grid;
            grid-template-columns: 1fr;
            gap: 3rem;
        }

        @media (min-width: 992px) {
            .contact-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 2rem;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: rgba(21, 128, 61, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .contact-icon i {
            color: var(--primary);
            width: 20px;
            height: 20px;
        }

        .contact-label {
            font-weight: 500;
            color: var(--card-foreground);
            margin-bottom: 0.25rem;
        }

        .contact-value {
            color: var(--muted-foreground);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 1.5rem;
        }

        .form-row {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        @media (min-width: 768px) {
            .form-row {
                grid-template-columns: 1fr 1fr;
            }
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 0.5rem;
        }

        .form-group label {
            font-weight: 500;
            color: var(--card-foreground);
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group textarea {
            padding: 0.75rem 1rem;
            border: 1px solid var(--border);
            border-radius: 0.5rem;
            background: var(--input);
            color: var(--foreground);
            font-family: inherit;
            transition: var(--transition);
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(21, 128, 61, 0.1);
        }

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

        /* Footer */
        .footer {
            background: var(--muted);
            border-top: 1px solid var(--border);
            padding: 3rem 0;
        }

        .footer-content {
            text-align: center;
        }

        .footer-brand {
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--primary);
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .footer-text {
            color: var(--muted-foreground);
            margin-bottom: 1.5rem;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
        }

        .footer-links a {
            color: var(--muted-foreground);
            text-decoration: none;
            transition: var(--transition);
        }

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

        /* Theme Toggle */
        .theme-toggle {
            position: fixed;
            bottom: 2rem;
            right: 2rem;
            z-index: 100;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--card);
            border: 1px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: var(--transition);
        }

        .theme-toggle:hover {
            transform: translateY(-3px) !important;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
        }

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

        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateX(-50%) translateY(-100%) !important;
            }
            to {
                opacity: 1;
                transform: translateX(-50%) translateY(0) !important;
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px) rotate(0deg) !important;
            }
            50% {
                transform: translateY(-20px) rotate(5deg) !important;
            }
        }

        @keyframes glow {
            from {
                box-shadow: 0 0 20px rgba(21, 128, 61, 0.3);
            }
            to {
                box-shadow: 0 0 30px rgba(21, 128, 61, 0.6);
            }
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.7;
                transform: scale(1.1);
            }
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0) !important;
            }
            40% {
                transform: translateX(-50%) translateY(-10px) !important;
            }
            60% {
                transform: translateX(-50%) translateY(-5px) !important;
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            :root {
                --container-padding: 1rem;
                --section-padding: 3rem 0;
            }

            .floating-nav {
                top: 0.5rem;
                left: 1rem;
                right: 1rem;
                transform: none;
                border-radius: 1rem;
                padding: 0.75rem 1rem;
            }

            .nav-links,
            .nav-buttons {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }

            .mobile-menu.active {
                display: block;
            }

            .hero-section {
                padding: 6rem 1rem 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: stretch;
            }

            .hero-stats {
                grid-template-columns: repeat(3, 1fr);
                gap: 1rem;
            }

            .about-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 1rem;
            }

            .projects-grid {
                grid-template-columns: 1fr;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .contact-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .footer-links {
                gap: 1rem;
            }
        }

        /* Performance optimizations */
        .lazy-load {
            opacity: 0;
            transition: opacity 0.3s;
        }

        .lazy-load.loaded {
            opacity: 1;
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        .read-more-state {
            display: none;
        }
        
        .read-more-target {
            opacity: 0;
            max-height: 0;
            font-size: 0;
            transition: 0.3s ease;
        }
        
        .read-more-state:checked ~ .content .read-more-target {
            opacity: 1;
            font-size: inherit;
            max-height: 999em;
        }
        
        .read-more-trigger {
            cursor: pointer;
            color: var(--primary);
            font-weight: 600;
            display: inline-block;
            padding: 0 4px;
        }
        
        .read-more-trigger:hover {
            color: var(--font-heading);
            text-decoration: underline;
        }
        
        .read-more-state:checked ~ .content .read-more-trigger {
            display: none;
        }
        
        .read-less {
            display: none;
            cursor: pointer;
            color: var(--primary);
            font-weight: 600;
            padding: 0 4px;
        }
        
        .read-more-state:checked ~ .content .read-less {
            display: inline;
        }
        
        .read-less:hover {
            color: var(--font-heading);
            text-decoration: underline;
        }
        
        .signature {
            margin-top: 25px;
            padding-top: 15px;
            border-top: 1px solid #eee;
            text-align: right;
            color: #7f8c8d;
            font-style: italic;
        }
