        body {
            font-family: 'Arial', sans-serif;
            line-height: 1.6;
            margin: 0;
            padding: 0;
            background-color: #f5f5f5;
            color: #333;
        }
        .profile-container {
            max-width: 800px;
            margin: 30px auto;
            padding: 20px;
            background: #fff;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0,0,0,0.1);
        }
        .profile-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 1px solid #eee;
            padding-bottom: 20px;
        }
        .profile-image {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 30px;
            border: 3px solid #2a7f40;
        }
        .profile-info h1 {
            margin: 0;
            color: #2a7f40;
        }
        .profile-info p {
            margin: 5px 0;
            color: #666;
        }
        .social-profiles {
            margin-top: 30px;
        }
        .social-profile {
            display: flex;
            align-items: center;
            margin-bottom: 10px;
            padding: 10px;
            background: #f9f9f9;
            border-radius: 5px;
            transition: background 0.3s;
        }
        .social-profile:hover {
            background: #f0f0f0;
        }
        .social-icon {
            font-size: 24px;
            width: 40px;
            text-align: center;
            margin-right: 15px;
            color: #2a7f40;
        }
        .social-platform {
            font-weight: bold;
            min-width: 120px;
        }
        .social-link {
            color: #0066cc;
            text-decoration: none;
            word-break: break-all;
        }
        .social-link:hover {
            text-decoration: underline;
        }
        .back-link {
            display: inline-block;
            margin-top: 20px;
            color: #2a7f40;
            text-decoration: none;
        }
        .back-link:hover {
            text-decoration: underline;
        }
