<style>
        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            color: #fff;
            background-color: #0f172a;
            scroll-behavior: smooth; /* Smooth scrolling for the entire page */
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Hero Section */
        #hero {
            background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 1));
            color: #fff;
            text-align: center;
            padding: 120px 0 80px;
        }
        #hero .profile-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            border: 5px solid #f87171;
            margin-bottom: 1rem;
            object-fit: cover;
            animation: fadeIn 1s ease-in;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        #hero .profile-img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px rgba(248, 113, 113, 0.5);
        }
        #hero h2 {
            font-size: 3rem;
            margin-bottom: 1rem;
            color: #f87171;
            animation: slideInDown 1s ease-out;
        }
        #hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto;
            animation: slideInUp 1s ease-out 0.5s both;
        }

        /* Sections */
        section {
            padding: 80px 0;
            background-color: #0f172a;
            transition: background-color 0.3s ease;
        }
        section:nth-child(even) {
            background: linear-gradient(to bottom, #0f172a, #1e293b);
        }
        h3 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 2rem;
            color: #f87171;
        }
        .content-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }
        .card {
            background: #1e293b;
            padding: 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.3);
            transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
            animation: fadeInUp 1s ease-out;
            border-left: 4px solid #f87171;
        }
        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(248, 113, 113, 0.2);
            background: #334155;
        }
        .card h4 {
            color: #f87171;
            margin-bottom: 1rem;
        }
        section ul {
            list-style: none;
            padding-left: 0;
        }
        section ul li {
            padding: 0.5rem 0;
            border-bottom: 1px solid #334155;
            position: relative;
            padding-left: 1.5rem;
            transition: color 0.3s ease;
        }
        section ul li:hover {
            color: #f87171;
        }
        section ul li:before {
            content: "•";
            color: #f87171;
            font-weight: bold;
            position: absolute;
            left: 0;
        }
        .image-placeholder {
            width: 100%;
            height: 200px;
            background: linear-gradient(135deg, #334155, #475569);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #f87171;
            margin: 1rem 0;
            font-weight: bold;
            transition: background 0.3s ease;
        }
        .image-placeholder:hover {
            background: linear-gradient(135deg, #f87171, #ef4444);
            color: #fff;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
        @keyframes slideInDown {
            from { transform: translateY(-50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        @keyframes slideInUp {
            from { transform: translateY(50px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }
        @keyframes fadeInUp {
            from { transform: translateY(30px); opacity: 0; }
            to { transform: translateY(0); opacity: 1; }
        }

        /* Responsive */
        @media (max-width: 768px) {
            #hero h2 {
                font-size: 2rem;
            }
            .content-grid {
                grid-template-columns: 1fr;
            }
            section {
                padding: 60px 0;
            }
        }

        /* JS Animations Trigger */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(50px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        .animate-on-scroll.visible {
            opacity: 1;
            transform: translateY(0);
        }
    </style>