
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Courier New', monospace;
            background: linear-gradient(135deg, #f5f5dc 0%, #e6d7c3 100%);
            min-height: 100vh;
            padding: 20px;
            line-height: 1.6;
        }

        .resume-container {
            max-width: 800px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .resume-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(139, 69, 19, 0.3);
        }

        .header {
            background: linear-gradient(135deg, #8b4513 0%, #a0522d 100%);
            color: #f5f5dc;
            padding: 40px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }
        .profile-picture {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, #f5f5dc 0%, #e6d7c3 100%);
            border: 4px solid #f5f5dc;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 3em;
            color: #8b4513;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .profile-picture:hover {
            transform: scale(1.1);
            box-shadow: 0 10px 25px rgba(245, 245, 220, 0.3);
        }

        .header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(245, 245, 220, 0.1) 0%, transparent 70%);
            animation: rotate 20s linear infinite;
        }

        @keyframes rotate {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .name {
            font-size: 2.5em;
            font-weight: bold;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
            transition: letter-spacing 0.3s ease;
        }



        .grade-strand {
            font-size: 1.2em;
            margin-bottom: 5px;
            position: relative;
            z-index: 1;
            opacity: 0.9;
        }

        .school {
            font-size: 1.1em;
            position: relative;
            z-index: 1;
            opacity: 0.8;
        }

        .content {
            padding: 40px 30px;
        }

        .section {
            margin-bottom: 35px;
            padding: 25px;
            background: #f9f9f9;
            border-radius: 10px;
            border-left: 5px solid #8b4513;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .section::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(139, 69, 19, 0.05), transparent);
            transition: left 0.5s ease;
        }

        .section:hover::before {
            left: 100%;
        }

        .section:hover {
            background: #f5f5dc;
            transform: translateX(10px);
            box-shadow: 0 5px 15px rgba(139, 69, 19, 0.15);
        }

        .section-title {
            font-size: 1.4em;
            color: #8b4513;
            margin-bottom: 15px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            position: relative;
            transition: color 0.3s ease;
        }

        .section:hover .section-title {
            color: #654321;
        }

        .contact-info {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 15px;
        }

        .contact-item {
            padding: 15px;
            background: #ffffff;
            border-radius: 8px;
            border: 2px solid #e6d7c3;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .contact-item:hover {
            border-color: #8b4513;
            background: #f5f5dc;
            transform: scale(1.05);
        }

        .contact-label {
            font-weight: bold;
            color: #8b4513;
            margin-bottom: 5px;
        }

        .contact-value {
            color: #654321;
        }

        .objectives-text {
            background: #ffffff;
            padding: 20px;
            border-radius: 8px;
            border: 2px solid #e6d7c3;
            color: #654321;
            font-size: 1.1em;
            transition: all 0.3s ease;
            position: relative;
        }

        .objectives-text:hover {
            border-color: #8b4513;
            background: #f5f5dc;
            padding-left: 30px;
        }

        .skill-item::before {
            content: "💡 ";
            font-weight: bold;
        }
        .education-item {
            background: #ffffff;
            padding: 20px;
            border-radius: 8px;
            border: 2px solid #e6d7c3;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .education-item:hover {
            border-color: #8b4513;
            background: #f5f5dc;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
        }

        .education-degree {
            font-weight: bold;
            color: #8b4513;
            font-size: 1.2em;
            margin-bottom: 5px;
        }

        .education-school {
            color: #654321;
            margin-bottom: 5px;
        }

        .education-year {
            color: #8b4513;
            font-style: italic;
        }

        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }

        .skill-category {
            background: #ffffff;
            padding: 20px;
            border-radius: 8px;
            border: 2px solid #e6d7c3;
            transition: all 0.3s ease;
        }

        .skill-category:hover {
            border-color: #8b4513;
            background: #f5f5dc;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
        }

        .skill-category-title {
            font-weight: bold;
            color: #8b4513;
            font-size: 1.1em;
            margin-bottom: 15px;
            text-align: center;
            border-bottom: 2px solid #e6d7c3;
            padding-bottom: 10px;
        }

        .skill-item {
            background: #f9f9f9;
            padding: 8px 12px;
            margin: 8px 0;
            border-radius: 5px;
            color: #654321;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .skill-item:hover {
            background: #8b4513;
            color: #f5f5dc;
            transform: translateX(5px);
        }

        .achievement-item {
            background: #ffffff;
            padding: 20px;
            border-radius: 8px;
            border: 2px solid #e6d7c3;
            margin-bottom: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .achievement-item:hover {
            border-color: #8b4513;
            background: #f5f5dc;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(139, 69, 19, 0.1);
        }

        .achievement-title {
            font-weight: bold;
            color: #8b4513;
            font-size: 1.1em;
            margin-bottom: 8px;
        }

        .achievement-description {
            color: #654321;
            margin-bottom: 8px;
            line-height: 1.5;
        }

        .achievement-year {
            color: #8b4513;
            font-style: italic;
            font-size: 0.9em;
        }

        @media (max-width: 768px) {
            .resume-container {
                margin: 10px;
            }
            
            .header {
                padding: 30px 20px;
            }
            
            .name {
                font-size: 2em;
            }
            
            .content {
                padding: 30px 20px;
            }
            
            .section {
                padding: 20px;
            }
            
            .contact-info {
                grid-template-columns: 1fr;
            }
        }