html {
            scroll-behavior: smooth;
            margin: 0;
            padding: 0;
        }

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

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #ffffff;
            background: #1a1d29;
            overflow-x: hidden;
            margin: 0;
            padding: 0;
        }

        /* Navigation */
        .navbar {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(26, 29, 41, 0.95);
            backdrop-filter: blur(20px);
            z-index: 1000;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            transition: background 0.3s ease;
            margin: 0;
        }

        .navbar:hover {
            background: rgba(26, 29, 41, 0.98);
        }

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

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .nav-menu {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        .nav-menu a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-menu a:hover {
            color: #4a90e2;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            transition: width 0.3s ease;
        }

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

        /* CSS-only mobile menu */
        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .menu-toggle span {
            width: 25px;
            height: 3px;
            background: #ffffff;
            margin: 3px 0;
            transition: 0.3s;
        }

        /* Hidden checkbox for mobile menu toggle */
        .menu-checkbox {
            display: none;
        }

        /* CSS-only mobile menu functionality */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(15, 15, 35, 0.98);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
            }

            .menu-checkbox:checked + .nav-container .nav-menu {
                left: 0;
            }

            .menu-checkbox:checked + .nav-container .menu-toggle span:nth-child(1) {
                transform: rotate(-45deg) translate(-5px, 6px);
            }

            .menu-checkbox:checked + .nav-container .menu-toggle span:nth-child(2) {
                opacity: 0;
            }

            .menu-checkbox:checked + .nav-container .menu-toggle span:nth-child(3) {
                transform: rotate(45deg) translate(-5px, -6px);
            }
        }

        /* Hero Section */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1a1d29 0%, #232741 50%, #2a2d42 100%);
            position: relative;
            overflow: hidden;
            scroll-margin-top: 0;
            padding-top: 0;
            margin-top: 0;
        }

        /* Remove any potential unwanted content and ensure clean hero section */
        .hero * {
            box-sizing: border-box;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: 
                radial-gradient(circle at 20% 80%, rgba(74, 144, 226, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(53, 122, 189, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 50% 50%, rgba(74, 144, 226, 0.08) 0%, transparent 70%);
            animation: pulseGlow 8s ease-in-out infinite alternate;
            z-index: 1;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: 20%;
            right: 10%;
            width: 200px;
            height: 200px;
            border: 2px solid rgba(74, 144, 226, 0.3);
            border-radius: 50%;
            animation: float 6s ease-in-out infinite;
            z-index: 1;
        }

        @keyframes pulseGlow {
            0% {
                opacity: 0.4;
                transform: scale(1);
            }
            100% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

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

        .hero-content {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 4rem;
            align-items: center;
            z-index: 3;
            max-width: 1200px;
            padding: 0 2rem;
            position: relative;
            margin-top: 0;
        }

        .hero-text {
            text-align: left;
            position: relative;
            z-index: 2;
        }

        .hero-image {
            position: relative;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            right: -20px;
            bottom: -20px;
            background: linear-gradient(135deg, #4a90e2, #357abd);
            border-radius: 50%;
            z-index: -1;
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                opacity: 0.8;
            }
            50% {
                transform: scale(1.05);
                opacity: 0.6;
            }
        }

        .hero h1 {
            font-size: 4rem;
            font-weight: 800;
            margin-bottom: 1rem;
            opacity: 0;
            animation: slideUp 1s ease 0.5s forwards;
            color: #ffffff;
            line-height: 1.1;
            letter-spacing: -0.02em;
        }

        .hero h1 .highlight {
            color: #4a90e2;
            position: relative;
        }

        .hero h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 5px;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #4a90e2, #357abd);
            opacity: 0.3;
        }

        .hero .subtitle {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            opacity: 0;
            animation: slideUp 1s ease 0.7s forwards;
            color: #a0a3bd;
            font-weight: 600;
        }

        .hero .description {
            font-size: 1.1rem;
            margin-bottom: 2rem;
            opacity: 0;
            animation: slideUp 1s ease 0.9s forwards;
            color: #8b8ca8;
            font-weight: 400;
            line-height: 1.6;
            max-width: 500px;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            justify-content: center;
            flex-wrap: wrap;
            opacity: 0;
            animation: slideUp 1s ease 1.1s forwards;
        }

        .btn {
            padding: 14px 32px;
            border: none;
            border-radius: 25px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s ease;
            cursor: pointer;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .btn-primary {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            color: white;
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(74, 144, 226, 0.4);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(74, 144, 226, 0.6);
            background: linear-gradient(135deg, #357abd 0%, #4a90e2 100%);
        }

        .btn-secondary {
            background: transparent;
            color: #4a90e2;
            border: 2px solid #4a90e2;
            position: relative;
            overflow: hidden;
        }

        .btn-secondary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            transition: width 0.4s ease;
            z-index: -1;
        }

        .btn-secondary:hover::before {
            width: 100%;
        }

        .btn-secondary:hover {
            color: white;
            border-color: #4a90e2;
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(74, 144, 226, 0.3);
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Container */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Section Styles */
        .section {
            padding: 8rem 0 5rem 0;
            scroll-margin-top: 150px;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 3rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            border-radius: 2px;
        }

        /* About Section Specific Adjustments */
        #about {
            padding-top: 12rem;
            scroll-margin-top: 0;
        }

        /* About Section */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 4rem;
            align-items: center;
        }

        .profile-image {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            object-fit: cover;
            border: 5px solid #4a90e2;
            box-shadow: 0 20px 40px rgba(74, 144, 226, 0.3);
            margin: 0 auto;
            display: block;
        }

        .about-content h3 {
            font-size: 2rem;
            margin-bottom: 1rem;
            color: #4a90e2;
        }

        .about-content p {
            color: #b0b0b0;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Education & Skills */
        .education-skills-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
        }

        .card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(20px);
            transition: transform 0.3s ease;
        }

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

        .card h4 {
            color: #4a90e2;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .education-item {
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .education-item:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .education-item h5 {
            color: #ffffff;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        .education-item .institution {
            color: #4a90e2;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .education-item .duration {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .education-item .description {
            color: #b0b0b0;
            font-size: 0.95rem;
        }

        .skill-item {
            margin-bottom: 1.5rem;
        }

        .skill-item span {
            display: block;
            margin-bottom: 0.5rem;
            color: #ffffff;
            font-weight: 500;
        }

        .skill-bar {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 10px;
            height: 10px;
            overflow: hidden;
        }

        /* CSS-only smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* CSS-only animations for skill bars */
        .skill-progress {
            height: 100%;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            border-radius: 10px;
            transition: width 2s ease;
            box-shadow: 0 0 20px rgba(74, 144, 226, 0.5);
            animation: fillSkill 3s ease-in-out 2s forwards;
        }

        /* Individual skill bar animations with different widths */
        .skill-progress[data-width="95"] { 
            animation: fillSkill95 3s ease-in-out 2s forwards;
        }
        .skill-progress[data-width="90"] { 
            animation: fillSkill90 3s ease-in-out 2.2s forwards;
        }
        .skill-progress[data-width="85"] { 
            animation: fillSkill85 3s ease-in-out 2.4s forwards;
        }
        .skill-progress[data-width="80"] { 
            animation: fillSkill80 3s ease-in-out 2.6s forwards;
        }
        .skill-progress[data-width="75"] { 
            animation: fillSkill75 3s ease-in-out 2.8s forwards;
        }

        @keyframes fillSkill95 {
            from { width: 0; }
            to { width: 95%; }
        }

        @keyframes fillSkill90 {
            from { width: 0; }
            to { width: 90%; }
        }

        @keyframes fillSkill85 {
            from { width: 0; }
            to { width: 85%; }
        }

        @keyframes fillSkill80 {
            from { width: 0; }
            to { width: 80%; }
        }

        @keyframes fillSkill75 {
            from { width: 0; }
            to { width: 75%; }
        }

        /* CSS-only fade-in animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s ease-in-out 0.5s forwards;
        }

        .fade-in:nth-child(2) { animation-delay: 0.7s; }
        .fade-in:nth-child(3) { animation-delay: 0.9s; }
        .fade-in:nth-child(4) { animation-delay: 1.1s; }
        .fade-in:nth-child(5) { animation-delay: 1.3s; }
        .fade-in:nth-child(6) { animation-delay: 1.5s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Experience Timeline */
        .timeline {
            position: relative;
            padding-left: 2rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 3rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 2rem;
            border-left: 4px solid #4a90e2;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2.5rem;
            top: 2rem;
            width: 12px;
            height: 12px;
            background: #4a90e2;
            border-radius: 50%;
            border: 3px solid #1a1d29;
        }

        .timeline-item h4 {
            color: #4a90e2;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .timeline-item .company {
            color: #4a90e2;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .timeline-item .duration {
            color: #888;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .timeline-item .description {
            color: #b0b0b0;
            line-height: 1.6;
        }

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

        .activity-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            border-left: 4px solid #4a90e2;
        }

        .activity-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
        }

        .activity-card h4 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .activity-card p {
            color: #b0b0b0;
            line-height: 1.6;
        }

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

        .achievement-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
            border-left: 4px solid #4a90e2;
        }

        .achievement-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(74, 144, 226, 0.2);
        }

        .achievement-card h4 {
            color: #ffffff;
            margin-bottom: 1rem;
            font-size: 1.3rem;
        }

        .achievement-card p {
            color: #b0b0b0;
            line-height: 1.6;
        }

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

        .project-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(74, 144, 226, 0.2);
        }

        .project-image {
            height: 200px;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3rem;
            color: white;
        }

        .project-content {
            padding: 2rem;
        }

        .project-title {
            color: #ffffff;
            font-size: 1.3rem;
            margin-bottom: 1rem;
        }

        .project-description {
            color: #b0b0b0;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

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

        .tech-tag {
            background: rgba(74, 144, 226, 0.2);
            color: #4a90e2;
            padding: 0.3rem 0.8rem;
            border-radius: 20px;
            font-size: 0.85rem;
            border: 1px solid rgba(74, 144, 226, 0.3);
        }

        .project-links a {
            color: #4a90e2;
            text-decoration: none;
            margin-right: 1rem;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .project-links a:hover {
            color: #357abd;
        }

        /* CV Download Section */
        .cv-section {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 4rem 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cv-section h2 {
            margin-bottom: 1rem;
        }

        .cv-section p {
            color: #b0b0b0;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .download-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            color: white;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
        }

        .download-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(74, 144, 226, 0.5);
        }

        /* Contact Section */
        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .contact-card {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 20px;
            padding: 2rem;
            text-align: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            transition: all 0.3s ease;
        }

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

        .contact-card i {
            font-size: 2.5rem;
            color: #4a90e2;
            margin-bottom: 1rem;
        }

        .contact-card h4 {
            color: #ffffff;
            margin-bottom: 1rem;
        }

        .contact-card a {
            color: #4a90e2;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-card a:hover {
            color: #357abd;
        }

        .contact-card p {
            color: #b0b0b0;
        }

        /* Footer */
        .footer {
            background: rgba(0, 0, 0, 0.5);
            padding: 3rem 0;
            text-align: center;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .social-links {
            display: flex;
            justify-content: center;
            gap: 1rem;
            margin-bottom: 2rem;
        }

        .social-links a {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #ffffff;
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            transform: translateY(-3px);
        }

        .footer p {
            color: #888;
            margin-bottom: 0.5rem;
        }

        /* CSS-only scroll progress indicator */
        .scroll-progress {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            z-index: 9999;
            animation: scrollProgress 1s ease-in-out;
        }

        /* CSS-only back to top button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            border: none;
            border-radius: 50%;
            background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
            color: white;
            font-size: 18px;
            cursor: pointer;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
            text-decoration: none;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .back-to-top:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(74, 144, 226, 0.5);
        }

        /* Show back to top button when scrolled */
        .back-to-top:target {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .menu-toggle {
                display: flex;
            }

            .nav-menu {
                position: fixed;
                top: 80px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 80px);
                background: rgba(15, 15, 35, 0.98);
                flex-direction: column;
                justify-content: flex-start;
                align-items: center;
                padding-top: 2rem;
                transition: left 0.3s ease;
            }

            .nav-menu.active {
                left: 0;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 3rem;
            }

            .hero-text {
                text-align: center;
            }

            .hero h1 {
                font-size: 3rem;
            }

            .hero .subtitle {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            #about {
                padding-top: 7rem;
            }

            .about-grid {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .education-skills-grid {
                grid-template-columns: 1fr;
            }

            .timeline {
                padding-left: 1rem;
            }

            .timeline-item::before {
                left: -1.5rem;
            }

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

            .hero h1 {
                font-size: 2.5rem;
            }

            .profile-image {
                width: 250px;
                height: 250px;
            }
        }

        /* Utility Classes */
        .text-center {
            text-align: center;
        }

        .mb-2 {
            margin-bottom: 2rem;
        }

        /* Enhanced responsive design for smaller devices */
        @media (max-width: 480px) {
            .nav-container {
                padding: 0 1rem;
            }

            .container {
                padding: 0 1rem;
            }

            .hero h1 {
                font-size: 2rem;
            }

            .profile-image {
                width: 200px;
                height: 200px;
            }

            .card {
                padding: 1.5rem;
            }

            .timeline-item {
                padding: 1.5rem;
            }

            .hero-content {
                padding: 2rem;
            }
        }