        :root {
            --primary-color: #e91e63;
            --primary-light: #f8bbd9;
            --primary-dark: #ad1457;
            --secondary-color: #6c5ce7;
            --text-dark: #2d3436;
            --text-light: #636e72;
            --bg-light: #f8f9fa;
            --shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
        }

        /* Navbar */
        .navbar {
            background: var(--primary-color);
        }

        .navbar-brand {
            font-weight: 700;
        }

        .nav-link {
            font-weight: 500;
            position: relative;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background-color: white;
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

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

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
            color: white;
            padding: 4rem 2rem;
            text-align: center;
            position: relative;
            margin-top: 40px;
            border-radius: 10px;
        }

        .hero-title {
            font-size: 3rem;
            font-weight: 700;
            opacity: 0.8;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            font-weight: 300;
            margin-bottom: 2rem;
        }

        .profile-link {
            background: rgba(255, 255, 255, 0.2);
            padding: 0.8rem 1.5rem;
            border-radius: 50px;
            text-decoration: none;
            color: white;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .profile-link:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: translateY(-2px);
            color: white;
        }

        /* Sections */
        .section {
            padding: 3rem 2rem;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 2rem;
            text-align: center;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 50px;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            margin: 1rem auto;
            border-radius: 2px;
        }

        /* About Section */
        .about-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .about-text {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.7;
            background: var(--bg-light);
            padding: 2rem;
            border-radius: 15px;
            border-left: 4px solid var(--primary-color);
        }

        /* Skills Section */
        .skills-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
            gap: 1.5rem;
            max-width: 600px;
            margin: 0 auto;
        }

        .skill-item {
            background: white;
            padding: 1.5rem 1rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .skill-item:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-hover);
        }

        .skill-icon {
            font-size: 3rem;
            margin-bottom: 0.5rem;
            transition: all 0.3s ease;
        }

        .skill-item:hover .skill-icon {
            color: var(--primary-color);
            transform: scale(1.1);
        }

        .skill-name {
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* Awards Section */
        .awards-list {
            max-width: 700px;
            margin: 0 auto;
        }

        .award-item {
            background: white;
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 1rem;
            box-shadow: var(--shadow);
            border-left: 4px solid var(--primary-color);
            transition: all 0.3s ease;
        }

        .award-item:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-hover);
        }

        .award-icon {
            color: var(--primary-color);
            margin-right: 1rem;
            font-size: 1.2rem;
        }

        .award-text {
            font-weight: 500;
            color: var(--text-dark);
        }

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

        /* Responsive */
        @media (max-width: 768px) {
            .main-container {
                margin: 70px 1rem 1rem;
                border-radius: 0;
            }

            .hero-title {
                font-size: 2.2rem;
            }

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

            .section {
                padding: 2rem 1rem;
            }

            .skills-grid {
                grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
                gap: 1rem;
            }
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            color: white;
            padding: 2rem;
            text-align: center;
            margin-top: 2rem;
        }

        .footer-text {
            opacity: 0.8;
            font-size: 0.9rem;
        }