        
        /* ===== Variables & Base Styles ===== */
        :root {
            --primary: #d9b4b4;
            --secondary: #0066cc;
            --text: #333;
            --light: #f8f9fa;
            --white: #ffffff;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Open Sans', sans-serif;
            line-height: 1.6;
            color: var(--text);
            padding-top: 80px;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .section {
            padding: 4rem 0;
        }
        
        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 2rem;
        }
        
        .btn {
            display: inline-block;
            background: var(--secondary);
            color: var(--white);
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            transition: background 0.3s;
        }
        
        .btn:hover {
            background: #004d99;
        }
        
        /* ===== Navigation ===== */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: var(--primary);
            box-shadow: var(--shadow);
            z-index: 1000;
            padding: 1rem 0;
        }
        
        .navbar-container {
            display: flex;
            justify-content: space-around;
            align-items: center;
        }
        
        .logo img {
            height: 50px;
            transition: transform 0.3s;
        }
        
        .logo img:hover {
            transform: scale(1.1);
        }
        
        .nav-links {
            display: flex;
            list-style: none;
            gap: 5rem;
        }
        
        .nav-links a {
            text-decoration: none;
            color: var(--text);
            font-weight: 600;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: #4a9bec;
        }
        
        .social-icon {
            font-size: 1.2rem;
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* ===== Skills Page Specific Styles ===== */
        .skills-hero {
            background: var(--light);
            text-align: center;
            padding: 3rem 0;
        }
        
        .skills-hero h1 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .skills-categories {
            display: flex;
            flex-direction: column;
            gap: 3rem;
        }
        
        .skills-category {
            background: var(--white);
            border-radius: 8px;
            padding: 2rem;
            box-shadow: var(--shadow);
        }
        
        .skills-category h2 {
            color: var(--secondary);
            margin-bottom: 1.5rem;
            font-size: 1.8rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .skills-list {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 1.5rem;
        }
        
        .skill-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem;
            border-radius: 4px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .skill-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .skill-icon {
            font-size: 1.8rem;
            width: 50px;
            height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(0, 102, 204, 0.1);
        }
        
        .skill-info h3 {
            margin-bottom: 0.3rem;
        }
        
        .skill-level {
            height: 5px;
            background: #eee;
            border-radius: 5px;
            margin-top: 0.5rem;
        }
        
        .skill-level-bar {
            height: 100%;
            border-radius: 5px;
            background: var(--secondary);
        }
        
        /* ===== Tools Section ===== */
        .tools-section {
            background: var(--light);
        }
        
        .tools-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 1.5rem;
        }
        
        .tool-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            padding: 1rem;
            background: var(--white);
            border-radius: 8px;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }
        
        .tool-item:hover {
            transform: translateY(-5px);
        }
        
        .tool-icon {
            font-size: 2rem;
        }
        
        /* ===== Footer ===== */
        .footer {
            background: var(--primary);
            padding: 2rem 0;
            text-align: center;
        }
        
        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            gap: 1.5rem;
            margin-bottom: 1rem;
        }
        
        .footer-links a {
            text-decoration: none;
            color: var(--text);
        }
        
        /* ===== Responsive Styles ===== */
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }
            
            .mobile-menu-btn {
                display: block;
            }
            
            .skills-list {
                grid-template-columns: 1fr;
            }
            
            .tools-grid {
                grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            }
        }