:root {
            --primary-bg: #f5e6d3;
            --secondary-bg: #ffffff;
            --accent-yellow: #f4d03f;
            --text-dark: #1a1a1a;
            --text-light: #666666;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: var(--text-dark);
            overflow-x: hidden;
        }
        
        h1, h2, h3, h4 {
            font-family: 'Playfair Display', serif;
            font-weight: 900;
        }
        
        /* Navigation */
        .navbar {
            padding: 1.5rem 0;
            background: var(--secondary-bg);
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .navbar-brand {
            font-weight: 600;
            color: var(--text-dark) !important;
        }
        
        .nav-link {
            color: var(--text-dark) !important;
            font-weight: 500;
            margin-left: 2rem;
            position: relative;
        }
        
        .nav-link:hover {
            color: var(--text-dark) !important;
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent-yellow);
            transition: width 0.3s;
        }
        
        .nav-link:hover::after {
            width: 100%;
        }
        
        /* Hero Section */
        .about-hero {
            background: var(--primary-bg);
            padding: 8rem 0 4rem;
            text-align: center;
        }
        
        .about-hero h1 {
            font-size: 4.5rem;
            margin-bottom: 1.5rem;
        }
        
        .about-hero .highlight {
            background: var(--accent-yellow);
            padding: 0 15px;
        }
        
        .about-hero p {
            font-size: 1.2rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.8;
        }
        
        /* About Section with Image */
        .about-content-section {
            padding: 6rem 0;
            background: var(--secondary-bg);
        }
        
        .profile-image-wrapper {
            position: relative;
            padding: 2rem;
        }
        
        .profile-image {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.15);
        }
        
        .decorative-box {
            position: absolute;
            width: 100%;
            height: 100%;
            border: 3px solid var(--text-dark);
            top: -20px;
            left: -20px;
            border-radius: 10px;
            z-index: -1;
        }
        
        .about-text h2 {
            font-size: 3rem;
            margin-bottom: 2rem;
        }
        
        .about-text p {
            color: var(--text-light);
            line-height: 1.9;
            margin-bottom: 1.5rem;
            font-size: 1.05rem;
        }
        
        .skills-list {
            list-style: none;
            padding: 0;
            margin: 2rem 0;
        }
        
        .skills-list li {
            padding: 0.5rem 0;
            color: var(--text-dark);
            font-weight: 500;
            position: relative;
            padding-left: 30px;
        }
        
        .skills-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            color: var(--accent-yellow);
            font-weight: bold;
            font-size: 1.2rem;
        }
        
        /* Work Inquiry Section */
        .inquiry-section {
            padding: 6rem 0;
            background: var(--primary-bg);
            text-align: center;
        }
        
        .inquiry-section h2 {
            font-size: 3.5rem;
            margin-bottom: 2rem;
        }
        
        .inquiry-section .highlight {
            background: var(--accent-yellow);
            padding: 0 15px;
        }
        
        .inquiry-section p {
            font-size: 1.15rem;
            color: var(--text-light);
            max-width: 800px;
            margin: 0 auto 3rem;
            line-height: 1.8;
        }
        
        .btn-custom {
            background: var(--text-dark);
            color: white;
            padding: 18px 50px;
            border: 3px solid var(--text-dark);
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s;
            font-size: 1.05rem;
        }
        
        .btn-custom:hover {
            background: transparent;
            color: var(--text-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        /* Social Media Section */
        .social-section {
            padding: 5rem 0;
            background: var(--secondary-bg);
            text-align: center;
        }
        
        .social-section h3 {
            font-size: 2.5rem;
            margin-bottom: 3rem;
        }
        
        .social-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .social-link {
            width: 70px;
            height: 70px;
            border: 3px solid var(--text-dark);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-dark);
            font-size: 1.8rem;
            transition: all 0.3s;
            text-decoration: none;
        }
        
        .social-link:hover {
            background: var(--accent-yellow);
            border-color: var(--accent-yellow);
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .social-link i {
            transition: transform 0.3s;
        }
        
        .social-link:hover i {
            transform: scale(1.1);
        }
        
        /* Footer */
        .footer {
            padding: 3rem 0;
            background: var(--primary-bg);
            text-align: center;
            color: var(--text-light);
            font-size: 0.9rem;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 2.8rem;
            }
            
            .about-text h2 {
                font-size: 2.2rem;
            }
            
            .inquiry-section h2 {
                font-size: 2.5rem;
            }
            
            .profile-image {
                height: 400px;
            }
            
            .decorative-box {
                top: -10px;
                left: -10px;
            }
            
            .nav-link {
                margin-left: 0;
                margin-bottom: 1rem;
            }
            
            .social-link {
                width: 60px;
                height: 60px;
                font-size: 1.5rem;
            }
        }
        
        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }
